14f8ab
From 90e52f3b44da0ed05e35ebd474e284d45794b0d6 Mon Sep 17 00:00:00 2001
14f8ab
From: Sanju Rakonde <srakonde@redhat.com>
14f8ab
Date: Thu, 10 Oct 2019 20:40:49 +0530
14f8ab
Subject: [PATCH 305/307] glusterd: rebalance start should fail when quorum is
14f8ab
 not met
14f8ab
14f8ab
rebalance start should not succeed if quorum is not met.
14f8ab
this patch adds a condition to check whether quorum is met
14f8ab
in pre-validation stage.
14f8ab
14f8ab
> fixes: bz#1760467
14f8ab
> Change-Id: Ic7d0d08f69e4bc6d5e7abae713ec1881531c8ad4
14f8ab
> Signed-off-by: Sanju Rakonde <srakonde@redhat.com>
14f8ab
14f8ab
upstream patch: https://review.gluster.org/#/c/glusterfs/+/23536/
14f8ab
BUG: 1760261
14f8ab
Change-Id: Ic7d0d08f69e4bc6d5e7abae713ec1881531c8ad4
14f8ab
Signed-off-by: Sanju Rakonde <srakonde@redhat.com>
14f8ab
Reviewed-on: https://code.engineering.redhat.com/gerrit/183146
14f8ab
Tested-by: RHGS Build Bot <nigelb@redhat.com>
14f8ab
Reviewed-by: Sunil Kumar Heggodu Gopala Acharya <sheggodu@redhat.com>
14f8ab
---
14f8ab
 tests/bugs/glusterd/quorum-validation.t   | 2 ++
14f8ab
 xlators/mgmt/glusterd/src/glusterd-mgmt.c | 3 ++-
14f8ab
 2 files changed, 4 insertions(+), 1 deletion(-)
14f8ab
14f8ab
diff --git a/tests/bugs/glusterd/quorum-validation.t b/tests/bugs/glusterd/quorum-validation.t
14f8ab
index ff46729..3cc3351 100644
14f8ab
--- a/tests/bugs/glusterd/quorum-validation.t
14f8ab
+++ b/tests/bugs/glusterd/quorum-validation.t
14f8ab
@@ -34,6 +34,8 @@ TEST ! $CLI_1 volume add-brick $V0 $H1:$B1/${V0}2
14f8ab
 TEST ! $CLI_1 volume remove-brick $V0 $H1:$B1/${V0}0 start
14f8ab
 TEST ! $CLI_1 volume set $V0 barrier enable
14f8ab
 
14f8ab
+#quorum is not met, rebalance/profile start should fail
14f8ab
+TEST ! $CLI_1 volume rebalance $V0 start
14f8ab
 TEST ! $CLI_1 volume profile $V0 start
14f8ab
 
14f8ab
 #bug-1690753 - Volume stop when quorum not met is successful
14f8ab
diff --git a/xlators/mgmt/glusterd/src/glusterd-mgmt.c b/xlators/mgmt/glusterd/src/glusterd-mgmt.c
14f8ab
index ec78913..a4915f3 100644
14f8ab
--- a/xlators/mgmt/glusterd/src/glusterd-mgmt.c
14f8ab
+++ b/xlators/mgmt/glusterd/src/glusterd-mgmt.c
14f8ab
@@ -1059,7 +1059,8 @@ glusterd_mgmt_v3_pre_validate(glusterd_op_t op, dict_t *req_dict,
14f8ab
         goto out;
14f8ab
     }
14f8ab
 
14f8ab
-    if (op == GD_OP_PROFILE_VOLUME || op == GD_OP_STOP_VOLUME) {
14f8ab
+    if (op == GD_OP_PROFILE_VOLUME || op == GD_OP_STOP_VOLUME ||
14f8ab
+        op == GD_OP_REBALANCE) {
14f8ab
         ret = glusterd_validate_quorum(this, op, req_dict, op_errstr);
14f8ab
         if (ret) {
14f8ab
             gf_msg(this->name, GF_LOG_ERROR, 0, GD_MSG_SERVER_QUORUM_NOT_MET,
14f8ab
-- 
14f8ab
1.8.3.1
14f8ab