]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
ocfs2: recheck lockres master before sending an unlock request.
authorKurt Hackel <kurt.hackel@oracle.com>
Fri, 28 Apr 2006 00:59:46 +0000 (17:59 -0700)
committerMark Fasheh <mark.fasheh@oracle.com>
Mon, 26 Jun 2006 21:42:45 +0000 (14:42 -0700)
Recovery may have happened and it may now be mastered locally.

Signed-off-by: Kurt Hackel <kurt.hackel@oracle.com>
Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
fs/ocfs2/dlm/dlmunlock.c

index ac89c509daf9b638a958bac45040336b32881f2b..9b40d60e3b493f4864631bcb57967d5dbb212703 100644 (file)
@@ -317,6 +317,16 @@ static enum dlm_status dlm_send_remote_unlock_request(struct dlm_ctxt *dlm,
        size_t veclen = 1;
 
        mlog_entry("%.*s\n", res->lockname.len, res->lockname.name);
+                       
+       if (owner == dlm->node_num) {
+               /* ended up trying to contact ourself.  this means
+                * that the lockres had been remote but became local
+                * via a migration.  just retry it, now as local */
+               mlog(0, "%s:%.*s: this node became the master due to a "
+                    "migration, re-evaluate now\n", dlm->name,
+                    res->lockname.len, res->lockname.name);
+               return DLM_FORWARD;
+       }
 
        memset(&unlock, 0, sizeof(unlock));
        unlock.node_idx = dlm->node_num;