17b94a
From 2a4f19df70276ba41db19938507297f7580286fa Mon Sep 17 00:00:00 2001
17b94a
From: Atin Mukherjee <amukherj@redhat.com>
17b94a
Date: Fri, 25 Oct 2019 18:07:27 +0530
17b94a
Subject: [PATCH 314/314] glusterd/tier: is_tier_enabled inserted causing
17b94a
 checksum mismatch
17b94a
17b94a
the volfile entry is_tier_enabled is checked for version 3.7.6 while it was
17b94a
supposed to check for 3.10. this is to fix it downstream only but changing the
17b94a
version of check to 3.13.1
17b94a
17b94a
Label: DOWNSTREAM ONLY
17b94a
BUG: 1765555
17b94a
Change-Id: Id631f3ba520b3e7b126c7607dca1bb7874532e81
17b94a
Signed-off-by: Atin Mukherjee <amukherj@redhat.com>
17b94a
Reviewed-on: https://code.engineering.redhat.com/gerrit/183932
17b94a
Reviewed-by: Sanju Rakonde <srakonde@redhat.com>
17b94a
Tested-by: Sanju Rakonde <srakonde@redhat.com>
17b94a
Tested-by: RHGS Build Bot <nigelb@redhat.com>
17b94a
---
17b94a
 xlators/mgmt/glusterd/src/glusterd-store.c | 2 +-
17b94a
 1 file changed, 1 insertion(+), 1 deletion(-)
17b94a
17b94a
diff --git a/xlators/mgmt/glusterd/src/glusterd-store.c b/xlators/mgmt/glusterd/src/glusterd-store.c
17b94a
index 4889217..8a10eb8 100644
17b94a
--- a/xlators/mgmt/glusterd/src/glusterd-store.c
17b94a
+++ b/xlators/mgmt/glusterd/src/glusterd-store.c
17b94a
@@ -1036,7 +1036,7 @@ glusterd_volume_exclude_options_write(int fd, glusterd_volinfo_t *volinfo)
17b94a
         if (ret)
17b94a
             goto out;
17b94a
     }
17b94a
-    if (conf->op_version >= GD_OP_VERSION_3_10_0) {
17b94a
+    if (conf->op_version >= GD_OP_VERSION_3_13_1) {
17b94a
         snprintf(buf, sizeof(buf), "%d", volinfo->is_tier_enabled);
17b94a
         ret = gf_store_save_value(fd, GF_TIER_ENABLED, buf);
17b94a
         if (ret)
17b94a
-- 
17b94a
1.8.3.1
17b94a