diff options
| -rw-r--r-- | tests/bugs/bug-867252.t | 41 | ||||
| -rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-brick-ops.c | 13 | ||||
| -rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-utils.c | 19 | 
3 files changed, 57 insertions, 16 deletions
diff --git a/tests/bugs/bug-867252.t b/tests/bugs/bug-867252.t new file mode 100644 index 00000000000..8309ed9b9a0 --- /dev/null +++ b/tests/bugs/bug-867252.t @@ -0,0 +1,41 @@ +#!/bin/bash + +. $(dirname $0)/../include.rc + +cleanup; + +TEST glusterd +TEST pidof glusterd +TEST $CLI volume info; + +TEST $CLI volume create $V0 $H0:$B0/${V0}1; + + +function volinfo_field() +{ +    local vol=$1; +    local field=$2; + +    $CLI volume info $vol | grep "^$field: " | sed 's/.*: //'; +} + + +function brick_count() +{ +    local vol=$1; + +    $CLI volume info $vol | egrep "^Brick[0-9]+: " | wc -l; +} + + +EXPECT "$V0" volinfo_field $V0 'Volume Name'; +EXPECT 'Created' volinfo_field $V0 'Status'; +EXPECT '1' brick_count $V0 + +TEST $CLI volume add-brick $V0 $H0:$B0/${V0}2; +EXPECT '2' brick_count $V0 + +TEST $CLI volume remove-brick $V0 $H0:$B0/${V0}2; +EXPECT '1' brick_count $V0 + +cleanup; diff --git a/xlators/mgmt/glusterd/src/glusterd-brick-ops.c b/xlators/mgmt/glusterd/src/glusterd-brick-ops.c index 5e93c061da3..ade30fe951a 100644 --- a/xlators/mgmt/glusterd/src/glusterd-brick-ops.c +++ b/xlators/mgmt/glusterd/src/glusterd-brick-ops.c @@ -981,14 +981,11 @@ glusterd_op_perform_remove_brick (glusterd_volinfo_t  *volinfo, char *brick,          }          if (force) { -                if (GLUSTERD_STATUS_STARTED == volinfo->status) { -                        ret = glusterd_brick_stop (volinfo, brickinfo, -                                                   _gf_true); -                        if (ret) { -                                gf_log (THIS->name, GF_LOG_ERROR, "Unable to stop " -                                        "glusterfs, ret: %d", ret); -                                goto out; -                        } +                ret = glusterd_brick_stop (volinfo, brickinfo, +                                           _gf_true); +                if (ret) { +                        gf_log (THIS->name, GF_LOG_ERROR, "Unable to stop " +                                "glusterfs, ret: %d", ret);                  }                  goto out;          } diff --git a/xlators/mgmt/glusterd/src/glusterd-utils.c b/xlators/mgmt/glusterd/src/glusterd-utils.c index d9f589b20e9..e55fc3ad79d 100644 --- a/xlators/mgmt/glusterd/src/glusterd-utils.c +++ b/xlators/mgmt/glusterd/src/glusterd-utils.c @@ -1400,20 +1400,23 @@ glusterd_volume_stop_glusterfs (glusterd_volinfo_t  *volinfo,          if (del_brick)                  list_del_init (&brickinfo->brick_list); -        (void) glusterd_brick_disconnect (brickinfo); +        if (GLUSTERD_STATUS_STARTED == volinfo->status) { +                (void) glusterd_brick_disconnect (brickinfo); -        GLUSTERD_GET_VOLUME_DIR (path, volinfo, priv); -        GLUSTERD_GET_BRICK_PIDFILE (pidfile, path, brickinfo->hostname, -                                    brickinfo->path); +                GLUSTERD_GET_VOLUME_DIR (path, volinfo, priv); +                GLUSTERD_GET_BRICK_PIDFILE (pidfile, path, brickinfo->hostname, +                                            brickinfo->path); -        ret = glusterd_service_stop ("brick", pidfile, SIGTERM, _gf_false); -        if (ret == 0) { -                glusterd_set_brick_status (brickinfo, GF_BRICK_STOPPED); -                (void) glusterd_brick_unlink_socket_file (volinfo, brickinfo); +                ret = glusterd_service_stop ("brick", pidfile, SIGTERM, _gf_false); +                if (ret == 0) { +                        glusterd_set_brick_status (brickinfo, GF_BRICK_STOPPED); +                        (void) glusterd_brick_unlink_socket_file (volinfo, brickinfo); +                }          }          if (del_brick)                  glusterd_delete_brick (volinfo, brickinfo); +          return ret;  }  | 
