diff options
author | Ilya Dryomov <idryomov@gmail.com> | 2013-02-12 11:28:59 -0500 |
---|---|---|
committer | Josef Bacik <jbacik@fusionio.com> | 2013-02-20 12:59:54 -0500 |
commit | 3e39cea61c4ecb5774c08f3e30507fdd58c1cca9 (patch) | |
tree | 6f3f4600f5bb0fa8aebf6847bebcd96b0aa7631c /fs/btrfs/volumes.c | |
parent | bf023ecfcaf114c410759f375073e78b0871c120 (diff) |
Btrfs: allow for selecting only completely empty chunks
Enhance balance usage filter by making it possible to balance out only
completely empty chunks. Today, usage filter properly acts on values
from 1 to 99 inclusive, usage=100 selects all chunks, and usage=0
selects no chunks. This commit changes the usage=0 case: the new
meaning is to restripe only completely empty chunks and nothing else.
Suggested-by: David Sterba <dsterba@suse.cz>
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Signed-off-by: Josef Bacik <jbacik@fusionio.com>
Diffstat (limited to 'fs/btrfs/volumes.c')
-rw-r--r-- | fs/btrfs/volumes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c index d778e9666597..567076542d1d 100644 --- a/fs/btrfs/volumes.c +++ b/fs/btrfs/volumes.c | |||
@@ -2679,7 +2679,7 @@ static int chunk_usage_filter(struct btrfs_fs_info *fs_info, u64 chunk_offset, | |||
2679 | chunk_used = btrfs_block_group_used(&cache->item); | 2679 | chunk_used = btrfs_block_group_used(&cache->item); |
2680 | 2680 | ||
2681 | if (bargs->usage == 0) | 2681 | if (bargs->usage == 0) |
2682 | user_thresh = 0; | 2682 | user_thresh = 1; |
2683 | else if (bargs->usage > 100) | 2683 | else if (bargs->usage > 100) |
2684 | user_thresh = cache->key.offset; | 2684 | user_thresh = cache->key.offset; |
2685 | else | 2685 | else |