From 761bc05f58fcadd7c6e861eab4619b61fcac0eed Mon Sep 17 00:00:00 2001 From: Pranith Kumar K Date: Tue, 31 May 2011 03:09:27 +0000 Subject: mgmt/glusterd: Start nfs after all bricks are started on glusterd re-start Signed-off-by: Pranith Kumar K Signed-off-by: Anand Avati BUG: 2941 (glusterd breaks when starting ~100 volumes) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2941 --- xlators/mgmt/glusterd/src/glusterd-utils.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'xlators') diff --git a/xlators/mgmt/glusterd/src/glusterd-utils.c b/xlators/mgmt/glusterd/src/glusterd-utils.c index cb38ddf88..db82e5ed8 100644 --- a/xlators/mgmt/glusterd/src/glusterd-utils.c +++ b/xlators/mgmt/glusterd/src/glusterd-utils.c @@ -1932,6 +1932,7 @@ glusterd_restart_bricks (glusterd_conf_t *conf) glusterd_volinfo_t *volinfo = NULL; glusterd_brickinfo_t *brickinfo = NULL; int ret = -1; + gf_boolean_t start_nfs = _gf_false; GF_ASSERT (conf); @@ -1942,9 +1943,11 @@ glusterd_restart_bricks (glusterd_conf_t *conf) brick_list) { glusterd_brick_start (volinfo, brickinfo); } - glusterd_check_generate_start_nfs (volinfo); + start_nfs = _gf_true; } } + if (start_nfs) + glusterd_check_generate_start_nfs (volinfo); return ret; } -- cgit