summaryrefslogtreecommitdiff
path: root/cmds-balance.c
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.cz>2015-02-02 18:17:05 +0100
committerDavid Sterba <dsterba@suse.cz>2015-02-02 18:18:16 +0100
commit3e7524911214c4399f25ed2dabc0ad2956f7e90e (patch)
treec8ab9c3031c511c9f7e4c4a02aca9ac97a496768 /cmds-balance.c
parentace45622ce9f984de049adf105a72695ebbbdb55 (diff)
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 <dsterba@suse.cz>
Diffstat (limited to 'cmds-balance.c')
-rw-r--r--cmds-balance.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/cmds-balance.c b/cmds-balance.c
index 6d8861e1..367ab554 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 <command> [options] <path>",
- "btrfs [filesystem] balance <path>",
+ "btrfs balance <command> [options] <path>",
+ "btrfs balance <path>",
NULL
};
@@ -359,7 +359,7 @@ out:
}
static const char * const cmd_balance_start_usage[] = {
- "btrfs [filesystem] balance start [options] <path>",
+ "btrfs balance start [options] <path>",
"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 <path>",
+ "btrfs balance pause <path>",
"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 <path>",
+ "btrfs balance cancel <path>",
"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 <path>",
+ "btrfs balance resume <path>",
"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] <path>",
+ "btrfs balance status [-v] <path>",
"Show status of running or paused balance",
"",
"-v be verbose",