[Ocfs2-devel] [PATCH] ocfs2: avoid a pointless delay in o2cb_cluster_check()

Daeseok Youn daeseok.youn at gmail.com
Sun Feb 22 15:40:25 PST 2015


Signed-off-by: Daeseok Youn <daeseok.youn at gmail.com>
---
 fs/ocfs2/stack_o2cb.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/fs/ocfs2/stack_o2cb.c b/fs/ocfs2/stack_o2cb.c
index 1724d43..220cae7 100644
--- a/fs/ocfs2/stack_o2cb.c
+++ b/fs/ocfs2/stack_o2cb.c
@@ -295,7 +295,7 @@ static int o2cb_cluster_check(void)
 		set_bit(node_num, netmap);
 		if (!memcmp(hbmap, netmap, sizeof(hbmap)))
 			return 0;
-		if (i < O2CB_MAP_STABILIZE_COUNT)
+		if (i < O2CB_MAP_STABILIZE_COUNT - 1)
 			msleep(1000);
 	}
 
-- 
1.7.1




More information about the Ocfs2-devel mailing list