diff options
| author | Krishnan Parthasarathi <kp@gluster.com> | 2011-06-07 05:50:56 +0000 | 
|---|---|---|
| committer | Anand Avati <avati@gluster.com> | 2011-06-08 11:18:11 -0700 | 
| commit | a48fa5a64bdc1eb25977629d733314e133c7459d (patch) | |
| tree | 0df1f228eaf2e7b0814030f7e1de98123b37bca1 | |
| parent | 5db81abe33cc76387b5f1034ede1f13e66b84e06 (diff) | |
glusterd: replace brick status grows with dir tree.
replace-brick status message's size can grow long with
deep directory trees.
Signed-off-by: Krishnan Parthasarathi <kp@gluster.com>
Signed-off-by: Anand Avati <avati@gluster.com>
BUG: 2489 (GlusterFS crashing with replace-brick)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2489
| -rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-op-sm.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-op-sm.c b/xlators/mgmt/glusterd/src/glusterd-op-sm.c index b88370b2979..db4d649c7b8 100644 --- a/xlators/mgmt/glusterd/src/glusterd-op-sm.c +++ b/xlators/mgmt/glusterd/src/glusterd-op-sm.c @@ -3464,7 +3464,7 @@ rb_do_operation_status (glusterd_volinfo_t *volinfo,                          glusterd_brickinfo_t *src_brickinfo,                          glusterd_brickinfo_t *dst_brickinfo)  { -        char            status[2048] = {0,}; +        char            status[8192] = {0,};          char            *status_reply = NULL;          dict_t          *ctx          = NULL;          int             ret = 0;  | 
