diff options
| author | Pranith K <pranithk@gluster.com> | 2011-03-10 02:19:39 +0000 | 
|---|---|---|
| committer | Vijay Bellur <vijay@dev.gluster.com> | 2011-03-10 08:09:47 -0800 | 
| commit | 34bf8de743aaff3e7c242833a10791aedc404ea3 (patch) | |
| tree | 0d00570fead89437cb4612a510c3978dd5907530 /rpc | |
| parent | 970b22e377e20408df8646cdc61a968b55c145b1 (diff) | |
mgmt/glusterd: gluster profile implementation
Signed-off-by: Pranith Kumar K <pranithk@gluster.com>
Signed-off-by: Vijay Bellur <vijay@dev.gluster.com>
BUG: 1965 (need a cmd to get io-stat details)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=1965
Diffstat (limited to 'rpc')
| -rw-r--r-- | rpc/rpc-lib/src/protocol-common.h | 16 | 
1 files changed, 16 insertions, 0 deletions
diff --git a/rpc/rpc-lib/src/protocol-common.h b/rpc/rpc-lib/src/protocol-common.h index 05781efa329..1c3d73d195d 100644 --- a/rpc/rpc-lib/src/protocol-common.h +++ b/rpc/rpc-lib/src/protocol-common.h @@ -106,6 +106,8 @@ enum gf_mgmt_procnum_ {          GD_MGMT_CLI_RESET_VOLUME,          GD_MGMT_CLI_FSM_LOG,          GD_MGMT_CLI_GSYNC_SET, +        GD_MGMT_CLI_PROFILE_VOLUME, +        GD_MGMT_BRICK_OP,          GD_MGMT_MAXVALUE,  }; @@ -193,9 +195,17 @@ enum gluster_cli_procnum {          GLUSTER_CLI_RESET_VOLUME,          GLUSTER_CLI_FSM_LOG,          GLUSTER_CLI_GSYNC_SET, +        GLUSTER_CLI_PROFILE_VOLUME,          GLUSTER_CLI_MAXVALUE,  }; +enum gf_brick_procnum { +        GF_BRICK_NULL = 0, +        GF_BRICK_TERMINATE = 1, +        GF_BRICK_XLATOR_INFO = 2, +        GF_BRICK_MAX_VALUE +}; +  #define GLUSTER3_1_FOP_PROGRAM   1298437 /* Completely random */  #define GLUSTER3_1_FOP_VERSION   310 /* 3.1.0 */ @@ -222,4 +232,10 @@ enum gluster_cli_procnum {  #define GLUSTER_CBK_PROGRAM      52743234 /* Completely random */  #define GLUSTER_CBK_VERSION      1   /* 0.0.1 */ +#define GLUSTER_HNDSK_PROGRAM    14398633 /* Completely random */ +#define GLUSTER_HNDSK_VERSION    1   /* 0.0.1 */ + +#define GLUSTERFS_PROGRAM       4867634 /*Completely random*/ +#define GLUSTERFS_VERSION       1 +#define GLUSTERFS_PROCCNT       GF_BRICK_MAX_VALUE  #endif /* !_PROTOCOL_COMMON_H */  | 
