diff options
author | Pavan Sondur <pavan@gluster.com> | 2010-07-26 07:07:24 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2010-07-27 01:20:08 -0700 |
commit | f803fae036177c3b9d9513f5b6300d426366eb62 (patch) | |
tree | 7d68e521e64fccddfd1188a6ef33de31125dd5c0 /rpc/xdr/src/cli1.x | |
parent | 667b2496c3f29e24ed359a05b0f44df0d1894969 (diff) |
cli: Fixes related to get brick-replace to work.
Signed-off-by: Pavan Vilas Sondur <pavan@gluster.com>
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 1187 ()
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=1187
Diffstat (limited to 'rpc/xdr/src/cli1.x')
-rw-r--r-- | rpc/xdr/src/cli1.x | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/rpc/xdr/src/cli1.x b/rpc/xdr/src/cli1.x index 41f43a485..8f0dfc3c0 100644 --- a/rpc/xdr/src/cli1.x +++ b/rpc/xdr/src/cli1.x @@ -23,16 +23,19 @@ enum gf1_cli_get_volume { struct gf1_cli_probe_req { string hostname<>; + int port; } ; struct gf1_cli_probe_rsp { int op_ret; int op_errno; + int port; string hostname<>; } ; struct gf1_cli_deprobe_req { string hostname<>; + int port; } ; struct gf1_cli_deprobe_rsp { @@ -160,8 +163,7 @@ struct gf1_cli_get_vol_rsp { struct gf1_cli_replace_brick_req { string volname<>; gf1_cli_replace_op op; - opaque src_brick<>; - opaque dst_brick<>; + opaque bricks<>; } ; struct gf1_cli_replace_brick_rsp { |