50dc83
From a3538a7d1fb7674acdf0934847f4004d8fbc4709 Mon Sep 17 00:00:00 2001
50dc83
From: Milind Changire <mchangir@redhat.com>
50dc83
Date: Tue, 11 Dec 2018 17:57:50 +0530
50dc83
Subject: [PATCH 26/52] glusterd: Introduce daemon-log-level cluster wide
50dc83
 option
50dc83
50dc83
This option, applicable to the node level daemons can be very helpful in
50dc83
controlling the log level of these services. Please note any daemon
50dc83
which is started prior to setting the specific value of this option (if
50dc83
not INFO) will need to go through a restart to have this change into
50dc83
effect.
50dc83
50dc83
> upstream patch : https://review.gluster.org/#/c/20442/
50dc83
50dc83
Please note there's a difference in deownstream delta. The op-version
50dc83
against this option is already tageed as 3_11_2 in RHGS 3.3.1 and hence
50dc83
the same is retained. Marking this DOWNSTREAM_ONLY label because of
50dc83
50dc83
Label: DOWNSTREAM ONLY
50dc83
50dc83
IMPORTANT:
50dc83
This patch only sets .op_version in glusterd-volume-set.c to
50dc83
GD_OP_VERSION_3_11_2 as per Atin's recommendation on
50dc83
Tue, Dec 11, 2018 5:46pm IST
50dc83
50dc83
>Change-Id: I7f6d2620bab2b094c737f5cc816bc093e9c9c4c9
50dc83
>fixes: bz#1597473
50dc83
>Signed-off-by: Atin Mukherjee <amukherj@redhat.com>
50dc83
50dc83
Change-Id: I7f6d2620bab2b094c737f5cc816bc093e9c9c4c9
50dc83
Signed-off-by: Atin Mukherjee <amukherj@redhat.com>
50dc83
Reviewed-on: https://code.engineering.redhat.com/gerrit/143137
50dc83
Tested-by: RHGS Build Bot <nigelb@redhat.com>
50dc83
Reviewed-by: Sanju Rakonde <srakonde@redhat.com>
50dc83
---
50dc83
 libglusterfs/src/glusterfs/globals.h            | 2 ++
50dc83
 xlators/mgmt/glusterd/src/glusterd-volume-set.c | 2 +-
50dc83
 2 files changed, 3 insertions(+), 1 deletion(-)
50dc83
50dc83
diff --git a/libglusterfs/src/glusterfs/globals.h b/libglusterfs/src/glusterfs/globals.h
50dc83
index b9da872..a278f18 100644
50dc83
--- a/libglusterfs/src/glusterfs/globals.h
50dc83
+++ b/libglusterfs/src/glusterfs/globals.h
50dc83
@@ -104,6 +104,8 @@
50dc83
 
50dc83
 #define GD_OP_VERSION_3_11_1 31101 /* Op-version for GlusterFS 3.11.1 */
50dc83
 
50dc83
+#define GD_OP_VERSION_3_11_2 31102 /* Op-version for GlusterFS 3.11.2 */
50dc83
+
50dc83
 #define GD_OP_VERSION_3_12_0 31200 /* Op-version for GlusterFS 3.12.0 */
50dc83
 
50dc83
 #define GD_OP_VERSION_3_12_2 31202 /* Op-version for GlusterFS 3.12.2 */
50dc83
diff --git a/xlators/mgmt/glusterd/src/glusterd-volume-set.c b/xlators/mgmt/glusterd/src/glusterd-volume-set.c
50dc83
index fed2864..84f2705 100644
50dc83
--- a/xlators/mgmt/glusterd/src/glusterd-volume-set.c
50dc83
+++ b/xlators/mgmt/glusterd/src/glusterd-volume-set.c
50dc83
@@ -2859,7 +2859,7 @@ struct volopt_map_entry glusterd_volopt_map[] = {
50dc83
      .voltype = "mgmt/glusterd",
50dc83
      .type = GLOBAL_NO_DOC,
50dc83
      .value = "INFO",
50dc83
-     .op_version = GD_OP_VERSION_5_0},
50dc83
+     .op_version = GD_OP_VERSION_3_11_2},
50dc83
     {.key = "debug.delay-gen",
50dc83
      .voltype = "debug/delay-gen",
50dc83
      .option = "!debug",
50dc83
-- 
50dc83
1.8.3.1
50dc83