diff options
author | Manikandan Selvaganesh <mselvaga@redhat.com> | 2015-09-09 13:03:37 +0530 |
---|---|---|
committer | Kaushal M <kaushal@redhat.com> | 2015-10-05 00:15:50 -0700 |
commit | df06d94fae1e4a5e93f00c26d4b377bd8d1bd352 (patch) | |
tree | a44a6497da7d4d55550b851d6e6ebc5e67415224 /cli/src/cli-rpc-ops.c | |
parent | e4c5188cdfe407d9ccdecd56c65d4771f098ffa8 (diff) |
quota : xml output modified to give exact available space in bytes
Currrently, 'gluster v quota <VOLNAME> list' command rounds off the
available space and shows it to the user. Now, 'gluster v quota
<VOLNAME> list --xml' command is modified to show the exact available
space in bytes.
Backport of http://review.gluster.org/#/c/12137/
> Change-Id: I3772e036a2537c1df12f22cf32dfe4ac7940988f
> BUG: 1261404
> Signed-off-by: Manikandan Selvaganesh <mselvaga@redhat.com>
Change-Id: I3772e036a2537c1df12f22cf32dfe4ac7940988f
BUG: 1267817
Signed-off-by: Manikandan Selvaganesh <mselvaga@redhat.com>
Reviewed-on: http://review.gluster.org/12267
Tested-by: NetBSD Build System <jenkins@build.gluster.org>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Kaushal M <kaushal@redhat.com>
Diffstat (limited to 'cli/src/cli-rpc-ops.c')
-rw-r--r-- | cli/src/cli-rpc-ops.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cli/src/cli-rpc-ops.c b/cli/src/cli-rpc-ops.c index 4991d3a92ba..b9fdb5933a4 100644 --- a/cli/src/cli-rpc-ops.c +++ b/cli/src/cli-rpc-ops.c @@ -2940,9 +2940,9 @@ print_quota_list_usage_output (cli_local_t *local, char *path, int64_t avail, sl_val = gf_uint64_2human_readable (sl_num); if (global_state->mode & GLUSTER_MODE_XML) { - ret = cli_quota_xml_output (local, path, hl_str, - sl_str, used_str, - avail_str, sl ? "Yes" : "No", + ret = cli_quota_xml_output (local, path, limits->hl, + sl_str, sl_num, used_space->size, + avail, sl ? "Yes" : "No", hl ? "Yes" : "No"); if (ret) { gf_log ("cli", GF_LOG_ERROR, "Failed to " @@ -2981,8 +2981,8 @@ print_quota_list_object_output (cli_local_t *local, char *path, int64_t avail, int64_t sl_val = sl_num; if (global_state->mode & GLUSTER_MODE_XML) { - ret = cli_quota_object_xml_output (local, path, sl_str, limits, - used_space, avail, + ret = cli_quota_object_xml_output (local, path, sl_str, sl_val, + limits, used_space, avail, sl ? "Yes" : "No", hl ? "Yes" : "No"); if (ret) { |