diff options
author | David Sterba <dsterba@suse.com> | 2015-10-20 19:22:13 +0300 |
---|---|---|
committer | Chris Mason <clm@fb.com> | 2015-10-27 05:38:30 +0300 |
commit | bc3094673f22d00794a8606200788e411b4ec80d (patch) | |
tree | a90e4834e26e4e69339a100d1489bcc3159e06d8 /fs/btrfs/volumes.h | |
parent | dee32d0ac3719ef8d640efaf0884111df444730f (diff) | |
download | linux-bc3094673f22d00794a8606200788e411b4ec80d.tar.xz |
btrfs: extend balance filter usage to take minimum and maximum
Similar to the 'limit' filter, we can enhance the 'usage' filter to
accept a range. The change is backward compatible, the range is applied
only in connection with the BTRFS_BALANCE_ARGS_USAGE_RANGE flag.
We don't have a usecase yet, the current syntax has been sufficient. The
enhancement should provide parity with other range-like filters.
Signed-off-by: David Sterba <dsterba@suse.com>
Signed-off-by: Chris Mason <clm@fb.com>
Diffstat (limited to 'fs/btrfs/volumes.h')
-rw-r--r-- | fs/btrfs/volumes.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/btrfs/volumes.h b/fs/btrfs/volumes.h index a5bf224d3c65..2a396cbb14a5 100644 --- a/fs/btrfs/volumes.h +++ b/fs/btrfs/volumes.h @@ -382,6 +382,7 @@ struct map_lookup { #define BTRFS_BALANCE_ARGS_LIMIT (1ULL << 5) #define BTRFS_BALANCE_ARGS_LIMIT_RANGE (1ULL << 6) #define BTRFS_BALANCE_ARGS_STRIPES_RANGE (1ULL << 7) +#define BTRFS_BALANCE_ARGS_USAGE_RANGE (1ULL << 8) #define BTRFS_BALANCE_ARGS_MASK \ (BTRFS_BALANCE_ARGS_PROFILES | \ |