From: Kurt Hackel Date: Sat, 15 Jul 2006 17:22:39 +0000 (-0700) Subject: ocfs2: fix check for locally granted state during dlmunlock() X-Git-Tag: v3.12-rc1~34273^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=34e3d180370c44ad3ecd3a1f9099e150d3bb103f;p=kernel%2Fkernel-generic.git ocfs2: fix check for locally granted state during dlmunlock() If a process requests a lock cancel but the lock has been remotely granted already then there is no need to send the cancel message. Signed-off-by: Kurt Hackel Signed-off-by: Mark Fasheh --- diff --git a/fs/ocfs2/dlm/dlmunlock.c b/fs/ocfs2/dlm/dlmunlock.c index 59866e4..37be4b2 100644 --- a/fs/ocfs2/dlm/dlmunlock.c +++ b/fs/ocfs2/dlm/dlmunlock.c @@ -155,7 +155,7 @@ static enum dlm_status dlmunlock_common(struct dlm_ctxt *dlm, else status = dlm_get_unlock_actions(dlm, res, lock, lksb, &actions); - if (status != DLM_NORMAL && status != DLM_CANCELGRANT) + if (status != DLM_NORMAL && (status != DLM_CANCELGRANT || !master_node)) goto leave; /* By now this has been masked out of cancel requests. */