Browse Source

ocfs2: increase backoff before waiting for recovery

When mastering non-recovery lock resources, additional time was frequently
needed to allow the disk heartbeat to catch up with the network timeout. the
recovery lock resource is time critical and avoids this path.

Signed-off-by: Kurt Hackel <kurt.hackel@oracle.com>
Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
Kurt Hackel 19 years ago
parent
commit
aa087b8497
1 changed files with 1 additions and 1 deletions
  1. 1 1
      fs/ocfs2/dlm/dlmmaster.c

+ 1 - 1
fs/ocfs2/dlm/dlmmaster.c

@@ -886,7 +886,7 @@ redo_request:
 		} 
 
 		dlm_kick_recovery_thread(dlm);
-		msleep(100);
+		msleep(1000);
 		dlm_wait_for_recovery(dlm);
 
 		spin_lock(&dlm->spinlock);