diff options
author | Mohammed Junaid Ahmed <junaid@gluster.com> | 2011-03-15 05:36:33 +0000 |
---|---|---|
committer | Vijay Bellur <vijay@dev.gluster.com> | 2011-03-16 00:04:44 -0700 |
commit | 8221c3cae1ce5c2f7d897e5637591c5437aeea69 (patch) | |
tree | ace43c4a317db448560410e4c252d78c72ea61db /rpc/xdr/src/cli1-xdr.x | |
parent | 7d61416a443b1786158c6236f182b6c11b3619f7 (diff) |
rpc: QUOTA rpc related changes.
Signed-off-by: Junaid <junaid@gluster.com>
Signed-off-by: Vijay Bellur <vijay@dev.gluster.com>
BUG: 2473 (Support for volume and directory level quota)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2473
Diffstat (limited to 'rpc/xdr/src/cli1-xdr.x')
-rw-r--r-- | rpc/xdr/src/cli1-xdr.x | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/rpc/xdr/src/cli1-xdr.x b/rpc/xdr/src/cli1-xdr.x index f47d18d887c..f352b6f3698 100644 --- a/rpc/xdr/src/cli1-xdr.x +++ b/rpc/xdr/src/cli1-xdr.x @@ -14,6 +14,16 @@ GF_REPLACE_OP_COMMIT_FORCE } ; +enum gf_quota_type { + GF_QUOTA_OPTION_TYPE_NONE = 0, + GF_QUOTA_OPTION_TYPE_ENABLE, + GF_QUOTA_OPTION_TYPE_DISABLE, + GF_QUOTA_OPTION_TYPE_LIMIT_USAGE, + GF_QUOTA_OPTION_TYPE_REMOVE, + GF_QUOTA_OPTION_TYPE_LIST, + GF_QUOTA_OPTION_TYPE_VERSION +}; + enum gf1_cli_friends_list { GF_CLI_LIST_ALL = 1 } ; @@ -338,3 +348,17 @@ struct gf1_cli_stats_volume_rsp { string op_errstr<>; opaque stats_info<>; }; + +struct gf1_cli_quota_req { + string volname<>; + opaque dict<>; +} ; + +struct gf1_cli_quota_rsp { + int op_ret; + int op_errno; + string volname<>; + string op_errstr<>; + string limit_list<>; + gf_quota_type type; +}; |