From: David Sterba Date: Mon, 8 Jun 2015 16:36:58 +0000 (+0200) Subject: btrfs-progs: remove stray deprecation notice X-Git-Tag: upstream/4.16.1~2191 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e99303c381b4041f8b5fce6f757242c5f1162c76;p=platform%2Fupstream%2Fbtrfs-progs.git btrfs-progs: remove stray deprecation notice The 1st level balance subcommand is the right one but it accidentally inherited the notice about 'filesystem balance' deprecation. Signed-off-by: David Sterba --- diff --git a/cmds-balance.c b/cmds-balance.c index 92a1533..85168e2 100644 --- a/cmds-balance.c +++ b/cmds-balance.c @@ -36,10 +36,6 @@ static const char * const balance_cmd_group_usage[] = { NULL }; -static const char balance_cmd_group_info[] = - "'btrfs filesystem balance' command is deprecated, please use\n" - "'btrfs balance start' command instead."; - static int parse_one_profile(const char *profile, u64 *flags) { if (!strcmp(profile, "raid0")) { @@ -728,7 +724,7 @@ static int cmd_balance_status(int argc, char **argv) } const struct cmd_group balance_cmd_group = { - balance_cmd_group_usage, balance_cmd_group_info, { + balance_cmd_group_usage, NULL, { { "start", cmd_balance_start, cmd_balance_start_usage, NULL, 0 }, { "pause", cmd_balance_pause, cmd_balance_pause_usage, NULL, 0 }, { "cancel", cmd_balance_cancel, cmd_balance_cancel_usage, NULL, 0 },