diff options
author | Kaushik BV <kaushikbv@gluster.com> | 2010-10-03 02:41:29 +0000 |
---|---|---|
committer | Vijay Bellur <vijay@dev.gluster.com> | 2010-10-03 03:05:03 -0700 |
commit | 609a89ceace25a0a81d0a9cafde3a4d1afd1b916 (patch) | |
tree | 0205b67be6e1e2f33e9a0c9c1ca4ea0737ebff05 /rpc/xdr/src/cli1.x | |
parent | 53b8c7470f9e40c60c5eebd1fbad5c6d274f7ee5 (diff) |
mgmt/Glusterd: new command volume reset <volname>, volume set enhancementsv3.1.0qa39
- Write the reconfigured options in 'info' file to make it persistant
- Implementation of volume set <volname> history
- Implementation of volume reset <volname>
Signed-off-by: Kaushik BV <kaushikbv@gluster.com>
Signed-off-by: Vijay Bellur <vijay@dev.gluster.com>
BUG: 1159 ()
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=1159
Diffstat (limited to 'rpc/xdr/src/cli1.x')
-rw-r--r-- | rpc/xdr/src/cli1.x | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/rpc/xdr/src/cli1.x b/rpc/xdr/src/cli1.x index 31a996861c8..b43bc46d201 100644 --- a/rpc/xdr/src/cli1.x +++ b/rpc/xdr/src/cli1.x @@ -194,6 +194,20 @@ struct gf1_cli_get_vol_rsp { string status<>; } ; +struct gf1_cli_reset_vol_req { + string volname<>; + opaque dict<>; +} ; + + + struct gf1_cli_reset_vol_rsp { + int op_ret; + int op_errno; + string volname<>; + string op_errstr<>; +} ; + + struct gf1_cli_set_vol_req { string volname<>; @@ -205,6 +219,7 @@ struct gf1_cli_set_vol_req { int op_ret; int op_errno; string volname<>; + opaque dict<>; } ; struct gf1_cli_log_filename_req { |