233933
From 39932e6bbc8de25813387bb1394cc7942b79ef46 Mon Sep 17 00:00:00 2001
233933
From: anand <anekkunt@redhat.com>
233933
Date: Wed, 18 Nov 2015 16:13:46 +0530
233933
Subject: [PATCH 13/52] glusterd: fix info file checksum mismatch during
233933
 upgrade
233933
233933
peers are  moving rejected state when upgrading from RHS2.1 to RHGS3.1.2
233933
due to checksum mismatch.
233933
233933
Label: DOWNSTREAM ONLY
233933
233933
Change-Id: Ifea6b7dfe8477c7f17eefc5ca87ced58aaa21c84
233933
Signed-off-by: anand <anekkunt@redhat.com>
233933
Reviewed-on: https://code.engineering.redhat.com/gerrit/61774
233933
Reviewed-by: Atin Mukherjee <amukherj@redhat.com>
233933
Tested-by: Atin Mukherjee <amukherj@redhat.com>
233933
---
233933
 xlators/mgmt/glusterd/src/glusterd-store.c | 16 ++++++++++++----
233933
 1 file changed, 12 insertions(+), 4 deletions(-)
233933
233933
diff --git a/xlators/mgmt/glusterd/src/glusterd-store.c b/xlators/mgmt/glusterd/src/glusterd-store.c
233933
index 51ca3d1..fb52957 100644
233933
--- a/xlators/mgmt/glusterd/src/glusterd-store.c
233933
+++ b/xlators/mgmt/glusterd/src/glusterd-store.c
233933
@@ -1009,10 +1009,18 @@ glusterd_volume_exclude_options_write(int fd, glusterd_volinfo_t *volinfo)
233933
             goto out;
233933
     }
233933
 
233933
-    snprintf(buf, sizeof(buf), "%d", volinfo->op_version);
233933
-    ret = gf_store_save_value(fd, GLUSTERD_STORE_KEY_VOL_OP_VERSION, buf);
233933
-    if (ret)
233933
-        goto out;
233933
+    if (conf->op_version >= GD_OP_VERSION_RHS_3_0) {
233933
+        snprintf (buf, sizeof (buf), "%d", volinfo->op_version);
233933
+        ret = gf_store_save_value (fd, GLUSTERD_STORE_KEY_VOL_OP_VERSION, buf);
233933
+        if (ret)
233933
+            goto out;
233933
+
233933
+        snprintf (buf, sizeof (buf), "%d", volinfo->client_op_version);
233933
+        ret = gf_store_save_value (fd, GLUSTERD_STORE_KEY_VOL_CLIENT_OP_VERSION,
233933
+                                   buf);
233933
+        if (ret)
233933
+            goto out;
233933
+    }
233933
 
233933
     snprintf(buf, sizeof(buf), "%d", volinfo->client_op_version);
233933
     ret = gf_store_save_value(fd, GLUSTERD_STORE_KEY_VOL_CLIENT_OP_VERSION,
233933
-- 
233933
1.8.3.1
233933