17b94a
From 80f1b3aedcde02ae25b341519857ba9a5b2fa722 Mon Sep 17 00:00:00 2001
17b94a
From: Sheetal Pamecha <spamecha@redhat.com>
17b94a
Date: Thu, 24 Sep 2020 19:43:29 +0530
17b94a
Subject: [PATCH 473/473] glusterd: Fix Add-brick with increasing replica count
17b94a
 failure
17b94a
17b94a
Problem: add-brick operation fails with multiple bricks on same
17b94a
server error when replica count is increased.
17b94a
17b94a
This was happening because of extra runs in a loop to compare
17b94a
hostnames and if bricks supplied were less than "replica" count,
17b94a
the bricks will get compared to itself resulting in above error.
17b94a
17b94a
>Upstream-patch: https://review.gluster.org/#/c/glusterfs/+/25029
17b94a
>Fixes: #1508
17b94a
17b94a
BUG: 1881823
17b94a
Change-Id: I8668e964340b7bf59728bb838525d2db062197ed
17b94a
Signed-off-by: Sheetal Pamecha <spamecha@redhat.com>
17b94a
Reviewed-on: https://code.engineering.redhat.com/gerrit/213064
17b94a
Tested-by: RHGS Build Bot <nigelb@redhat.com>
17b94a
Reviewed-by: Sunil Kumar Heggodu Gopala Acharya <sheggodu@redhat.com>
17b94a
---
17b94a
 tests/bugs/glusterd/brick-order-check-add-brick.t | 21 +++++++++++++++++++++
17b94a
 xlators/mgmt/glusterd/src/glusterd-utils.c        |  4 ++++
17b94a
 2 files changed, 25 insertions(+)
17b94a
17b94a
diff --git a/tests/bugs/glusterd/brick-order-check-add-brick.t b/tests/bugs/glusterd/brick-order-check-add-brick.t
17b94a
index 29f0ed1..0be31da 100644
17b94a
--- a/tests/bugs/glusterd/brick-order-check-add-brick.t
17b94a
+++ b/tests/bugs/glusterd/brick-order-check-add-brick.t
17b94a
@@ -37,4 +37,25 @@ EXPECT '3 x 3 = 9' volinfo_field $V0 'Number of Bricks'
17b94a
 TEST $CLI_1 volume add-brick $V0 $H1:$L1/${V0}_3 $H1:$L1/${V0}_4 $H1:$L1/${V0}_5 force
17b94a
 EXPECT '4 x 3 = 12' volinfo_field $V0 'Number of Bricks'
17b94a
 
17b94a
+TEST $CLI_1 volume stop $V0
17b94a
+TEST $CLI_1 volume delete $V0
17b94a
+
17b94a
+TEST $CLI_1 volume create $V0 replica 2 $H1:$L1/${V0}1 $H2:$L2/${V0}1
17b94a
+EXPECT '1 x 2 = 2' volinfo_field $V0 'Number of Bricks'
17b94a
+EXPECT 'Created' volinfo_field $V0 'Status'
17b94a
+
17b94a
+TEST $CLI_1 volume start $V0
17b94a
+EXPECT 'Started' volinfo_field $V0 'Status'
17b94a
+
17b94a
+#Add-brick with Increasing replica count
17b94a
+TEST $CLI_1 volume add-brick $V0 replica 3 $H3:$L3/${V0}1
17b94a
+EXPECT '1 x 3 = 3' volinfo_field $V0 'Number of Bricks'
17b94a
+
17b94a
+#Add-brick with Increasing replica count from same host should fail
17b94a
+TEST ! $CLI_1 volume add-brick $V0 replica 5 $H1:$L1/${V0}2 $H1:$L1/${V0}3
17b94a
+
17b94a
+#adding multiple bricks from same host should fail the brick order check
17b94a
+TEST ! $CLI_1 volume add-brick $V0 replica 3 $H1:$L1/${V0}{4..6} $H2:$L2/${V0}{7..9}
17b94a
+EXPECT '1 x 3 = 3' volinfo_field $V0 'Number of Bricks'
17b94a
+
17b94a
 cleanup
17b94a
diff --git a/xlators/mgmt/glusterd/src/glusterd-utils.c b/xlators/mgmt/glusterd/src/glusterd-utils.c
17b94a
index 545e688..d25fc8a 100644
17b94a
--- a/xlators/mgmt/glusterd/src/glusterd-utils.c
17b94a
+++ b/xlators/mgmt/glusterd/src/glusterd-utils.c
17b94a
@@ -14908,6 +14908,10 @@ glusterd_check_brick_order(dict_t *dict, char *err_str, int32_t type,
17b94a
     i = 0;
17b94a
     ai_list_tmp1 = cds_list_entry(ai_list->list.next, addrinfo_list_t, list);
17b94a
 
17b94a
+    if (brick_count < sub_count) {
17b94a
+        sub_count = brick_count;
17b94a
+    }
17b94a
+
17b94a
     /* Check for bad brick order */
17b94a
     while (i < brick_count) {
17b94a
         ++i;
17b94a
-- 
17b94a
1.8.3.1
17b94a