diff options
author | Pranith Kumar K <pranithk@gluster.com> | 2011-05-26 04:17:15 +0000 |
---|---|---|
committer | Anand Avati <avati@gluster.com> | 2011-05-27 00:19:11 -0700 |
commit | 7dc5a648caee92ce6d62bbe7b4dc1406662c3858 (patch) | |
tree | 237c88981f381719a3ab96ad3a5678526764c9ac /xlators/mgmt | |
parent | 235938a9137cf261de20df365f4feae7a33ce5d9 (diff) |
mgmt/glusterd: Start nfs after all bricks are started on glusterd re-start
Signed-off-by: Pranith Kumar K <pranithk@gluster.com>
Signed-off-by: Anand Avati <avati@gluster.com>
BUG: 2941 (glusterd breaks when starting ~100 volumes)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2941
Diffstat (limited to 'xlators/mgmt')
-rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-utils.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-utils.c b/xlators/mgmt/glusterd/src/glusterd-utils.c index 2c1d73681..8ab4665ee 100644 --- a/xlators/mgmt/glusterd/src/glusterd-utils.c +++ b/xlators/mgmt/glusterd/src/glusterd-utils.c @@ -2381,6 +2381,7 @@ glusterd_restart_bricks (glusterd_conf_t *conf) glusterd_volinfo_t *volinfo = NULL; glusterd_brickinfo_t *brickinfo = NULL; int ret = 0; + gf_boolean_t start_nfs = _gf_false; GF_ASSERT (conf); @@ -2391,9 +2392,11 @@ glusterd_restart_bricks (glusterd_conf_t *conf) brick_list) { glusterd_brick_start (volinfo, brickinfo); } - glusterd_check_generate_start_nfs (); + start_nfs = _gf_true; } } + if (start_nfs) + glusterd_check_generate_start_nfs (); return ret; } |