summaryrefslogtreecommitdiffstats
path: root/xlators/protocol/server/src/server-messages.h
diff options
context:
space:
mode:
authorSamikshan Bairagya <samikshan@gmail.com>2016-12-28 20:33:54 +0530
committerAtin Mukherjee <amukherj@redhat.com>2017-01-12 10:20:59 -0800
commit2e5383266869c13ee27ceaee5b24b686e2415df4 (patch)
tree3603d5288b805ef252edf4d311bb78b9f137e494 /xlators/protocol/server/src/server-messages.h
parent84271e12efb783bfc83133329b0fd18aba729c84 (diff)
glusterd: Add info on op-version for clients in vol status output
Currently the `gluster volume status <VOLNAME|all> clients` command gives us the following information on clients: 1. Brick name 2. Client count for each brick 3. hostname:port for each client 4. Bytes read and written for each client There is no information regarding op-version for each client. This patch adds that to the output. Change-Id: Ib2ece93ab00c234162bb92b7c67a7d86f3350a8d BUG: 1409078 Signed-off-by: Samikshan Bairagya <samikshan@gmail.com> Reviewed-on: http://review.gluster.org/16303 Smoke: Gluster Build System <jenkins@build.gluster.org> NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org> CentOS-regression: Gluster Build System <jenkins@build.gluster.org> Reviewed-by: Atin Mukherjee <amukherj@redhat.com>
Diffstat (limited to 'xlators/protocol/server/src/server-messages.h')
-rw-r--r--xlators/protocol/server/src/server-messages.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/xlators/protocol/server/src/server-messages.h b/xlators/protocol/server/src/server-messages.h
index 5593e68d3d4..b8245af18df 100644
--- a/xlators/protocol/server/src/server-messages.h
+++ b/xlators/protocol/server/src/server-messages.h
@@ -40,7 +40,7 @@
*/
#define GLFS_PS_BASE GLFS_MSGID_COMP_PS
-#define GLFS_NUM_MESSAGES 90
+#define GLFS_NUM_MESSAGES 91
#define GLFS_MSGID_END (GLFS_PS_BASE + GLFS_NUM_MESSAGES + 1)
/* Messages with message IDs */
#define glfs_msg_start_x GLFS_PS_BASE, "Invalid: Start of messages"
@@ -848,6 +848,15 @@
*/
#define PS_MSG_COMPOUND_INFO (GLFS_PS_BASE + 90)
+
+/*!
+ * @messageid
+ * @diagnosis
+ * @recommendedaction
+ *
+ */
+
+#define PS_MSG_CLIENT_OPVERSION_GET_FAILED (GLFS_PS_BASE + 91)
/*------------*/
#define glfs_msg_end_x GLFS_MSGID_END, "Invalid: End of messages"