ocfs2: do not send master requests to localhost

Signed-off-by: Kurt Hackel <kurt.hackel@oracle.com>
Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
This commit is contained in:
Kurt Hackel 2006-05-01 11:22:06 -07:00 committed by Mark Fasheh
parent 8b2198097a
commit 588e00902b

View File

@ -994,12 +994,14 @@ recheck:
spin_unlock(&res->spinlock); spin_unlock(&res->spinlock);
/* this will cause the master to re-assert across /* this will cause the master to re-assert across
* the whole cluster, freeing up mles */ * the whole cluster, freeing up mles */
ret = dlm_do_master_request(mle, res->owner); if (res->owner != dlm->node_num) {
if (ret < 0) { ret = dlm_do_master_request(mle, res->owner);
/* give recovery a chance to run */ if (ret < 0) {
mlog(ML_ERROR, "link to %u went down?: %d\n", res->owner, ret); /* give recovery a chance to run */
msleep(500); mlog(ML_ERROR, "link to %u went down?: %d\n", res->owner, ret);
goto recheck; msleep(500);
goto recheck;
}
} }
ret = 0; ret = 0;
goto leave; goto leave;