Commit c5921fd0 authored by David Teigland's avatar David Teigland Committed by Steven Whitehouse
Browse files

[GFS2] fix typo in locking/dlm



Typo causes the error value from the wrong lock to be checked.

Signed-off-by: default avatarDavid Teigland <teigland@redhat.com>
Signed-off-by: default avatarSteven Whitehouse <swhiteho@redhat.com>
parent 36098198
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -430,7 +430,7 @@ static int hold_null_lock(struct gdlm_lock *lp)
	init_completion(&lpn->ast_wait);
	gdlm_do_lock(lpn);
	wait_for_completion(&lpn->ast_wait);
	error = lp->lksb.sb_status;
	error = lpn->lksb.sb_status;
	if (error) {
		printk(KERN_INFO "lock_dlm: hold_null_lock dlm error %d\n",
		       error);