summaryrefslogtreecommitdiffstats
path: root/cli/src/cli.c
diff options
context:
space:
mode:
authorManikandan Selvaganesh <mselvaga@redhat.com>2015-07-30 18:29:41 +0530
committerRaghavendra G <rgowdapp@redhat.com>2015-08-26 05:09:47 -0700
commit7f346e567edb94b008a5f0fa9f614fa8a296636b (patch)
tree4fe84ae46f35b06ccd14fb7885bfb987a0939eda /cli/src/cli.c
parent9d71c362b11544494b3fe68477cc47abe3bb2cde (diff)
quota :display the size of soft limit percentage
Display the size equivalent to the soft limit percentage in gluster v quota <volname> list <path> and gluster v quota <volname> list-objects <path> command Backport of http://review.gluster.org/#/c/11808/ Cherry picked from commit b9e87f39386fc9c591c7698357c2899afc255b95 > Change-Id: I31ee82e9e836068348cf9458dcaf13f043d9fd87 > BUG: 1248521 > Signed-off-by: Manikandan Selvaganesh <mselvaga@redhat.com> > Reviewed-on: http://review.gluster.org/11808 > Tested-by: NetBSD Build System <jenkins@build.gluster.org> > Reviewed-by: Vijaikumar Mallikarjuna <vmallika@redhat.com> > Reviewed-by: Raghavendra G <rgowdapp@redhat.com> Change-Id: I31ee82e9e836068348cf9458dcaf13f043d9fd87 BUG: 1255644 Signed-off-by: Manikandan Selvaganesh <mselvaga@redhat.com> Reviewed-on: http://review.gluster.org/11977 Tested-by: NetBSD Build System <jenkins@build.gluster.org> Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Raghavendra G <rgowdapp@redhat.com>
Diffstat (limited to 'cli/src/cli.c')
-rw-r--r--cli/src/cli.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/cli/src/cli.c b/cli/src/cli.c
index 5256e43e9d3..e3cef2e4236 100644
--- a/cli/src/cli.c
+++ b/cli/src/cli.c
@@ -763,18 +763,18 @@ print_quota_list_header (int type)
{
if (type == GF_QUOTA_OPTION_TYPE_LIST) {
cli_out (" Path Hard-limit "
- "Soft-limit Used Available Soft-limit exceeded?"
- " Hard-limit exceeded?");
+ " Soft-limit Used Available Soft-limit "
+ "exceeded? Hard-limit exceeded?");
cli_out ("-----------------------------------------------------"
"-----------------------------------------------------"
- "-----------------");
+ "---------------------");
} else {
cli_out (" Path Hard-limit "
- "Soft-limit Files Dirs Available "
+ " Soft-limit Files Dirs Available "
"Soft-limit exceeded? Hard-limit exceeded?");
cli_out ("-----------------------------------------------------"
"-----------------------------------------------------"
- "-----------------------------------");
+ "-------------------------------------");
}
}