This is a progs counterpart to a "Btrfs: allow for selecting only
completely empty chunks".  usage=0 now means "select only only
completely empty chunks and nothing else".

Signed-off-by: Ilya Dryomov <idryo...@gmail.com>
---
 cmds-balance.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/cmds-balance.c b/cmds-balance.c
index 38a7426..1f888db 100644
--- a/cmds-balance.c
+++ b/cmds-balance.c
@@ -159,7 +159,7 @@ static int parse_filters(char *filters, struct 
btrfs_balance_args *args)
                                return 1;
                        }
                        if (parse_u64(value, &args->usage) ||
-                           args->usage < 1 || args->usage > 100) {
+                           args->usage > 100) {
                                fprintf(stderr, "Invalid usage argument: %s\n",
                                       value);
                                return 1;
-- 
1.7.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to