summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.cz>2015-01-27 17:07:40 +0100
committerDavid Sterba <dsterba@suse.cz>2015-01-27 17:34:58 +0100
commit2e4a35681ce73f40c27574791694f02ec488f022 (patch)
tree7fced04c0b5d1aa5283718b2fddfd4264973536d
parentd7c131759da885763b38e032f35f7b1779b00108 (diff)
btrfs-progs: update wording for qgroup limits
Based on a user report, 'max' in help does not clearly point to the limits that are commonly used as a quota-related term. Signed-off-by: David Sterba <dsterba@suse.cz>
-rw-r--r--Documentation/btrfs-qgroup.txt4
-rw-r--r--cmds-qgroup.c12
2 files changed, 8 insertions, 8 deletions
diff --git a/Documentation/btrfs-qgroup.txt b/Documentation/btrfs-qgroup.txt
index 3ea55dfd..eadfe1c9 100644
--- a/Documentation/btrfs-qgroup.txt
+++ b/Documentation/btrfs-qgroup.txt
@@ -82,9 +82,9 @@ print parent qgroup id.
-c::::
print child qgroup id.
-r::::
-print max referenced size of qgroup.
+print limit of referenced size of qgroup.
-e::::
-print max exclusive size of qgroup.
+print limit of exclusive size of qgroup.
-F::::
list all qgroups which impact the given path(include ancestral qgroups)
-f::::
diff --git a/cmds-qgroup.c b/cmds-qgroup.c
index 5cc8619f..21729440 100644
--- a/cmds-qgroup.c
+++ b/cmds-qgroup.c
@@ -210,12 +210,12 @@ static const char * const cmd_qgroup_show_usage[] = {
"Show subvolume quota groups.",
"-p print parent qgroup id",
"-c print child qgroup id",
- "-r print max referenced size of qgroup",
- "-e print max exclusive size of qgroup",
- "-F list all qgroups which impact the given path"
- "(include ancestral qgroups)",
- "-f list all qgroups which impact the given path"
- "(exclude ancestral qgroups)",
+ "-r print limit of referenced size of qgroup",
+ "-e print limit of exclusive size of qgroup",
+ "-F list all qgroups which impact the given path",
+ " (including ancestral qgroups)",
+ "-f list all qgroups which impact the given path",
+ " (excluding ancestral qgroups)",
"--raw raw numbers in bytes",
"--human-readable",
" human firendly numbers in given base, 1024 by default",