From: David Sterba Date: Mon, 2 Feb 2015 17:17:05 +0000 (+0100) Subject: btrfs-progs: drop old fi balance syntax from help X-Git-Tag: upstream/4.16.1~2394 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3e7524911214c4399f25ed2dabc0ad2956f7e90e;p=platform%2Fupstream%2Fbtrfs-progs.git btrfs-progs: drop old fi balance syntax from help The command 'btrfs fi balance' still works to keep any scripts working, we may remove it someday. Signed-off-by: David Sterba --- diff --git a/cmds-balance.c b/cmds-balance.c index 6d8861e..367ab55 100644 --- a/cmds-balance.c +++ b/cmds-balance.c @@ -31,8 +31,8 @@ #include "utils.h" static const char * const balance_cmd_group_usage[] = { - "btrfs [filesystem] balance [options] ", - "btrfs [filesystem] balance ", + "btrfs balance [options] ", + "btrfs balance ", NULL }; @@ -359,7 +359,7 @@ out: } static const char * const cmd_balance_start_usage[] = { - "btrfs [filesystem] balance start [options] ", + "btrfs balance start [options] ", "Balance chunks across the devices", "Balance and/or convert (change allocation profile of) chunks that", "passed all filters in a comma-separated list of filters for a", @@ -491,7 +491,7 @@ static int cmd_balance_start(int argc, char **argv) } static const char * const cmd_balance_pause_usage[] = { - "btrfs [filesystem] balance pause ", + "btrfs balance pause ", "Pause running balance", NULL }; @@ -532,7 +532,7 @@ static int cmd_balance_pause(int argc, char **argv) } static const char * const cmd_balance_cancel_usage[] = { - "btrfs [filesystem] balance cancel ", + "btrfs balance cancel ", "Cancel running or paused balance", NULL }; @@ -573,7 +573,7 @@ static int cmd_balance_cancel(int argc, char **argv) } static const char * const cmd_balance_resume_usage[] = { - "btrfs [filesystem] balance resume ", + "btrfs balance resume ", "Resume interrupted balance", NULL }; @@ -636,7 +636,7 @@ static int cmd_balance_resume(int argc, char **argv) } static const char * const cmd_balance_status_usage[] = { - "btrfs [filesystem] balance status [-v] ", + "btrfs balance status [-v] ", "Show status of running or paused balance", "", "-v be verbose",