mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 20:51:44 +00:00
btrfs: use mask for all RAID1* profiles in btrfs_calc_avail_data_space
There's a sequence of hard coded values for RAID1 profiles that are already stored in the raid_attr table that should be used instead. Reviewed-by: Nikolay Borisov <nborisov@suse.com> Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
e26b04c4c9
commit
d09cb9e188
@ -2243,12 +2243,8 @@ static inline int btrfs_calc_avail_data_space(struct btrfs_fs_info *fs_info,
|
||||
|
||||
if (type & BTRFS_BLOCK_GROUP_RAID0)
|
||||
num_stripes = nr_devices;
|
||||
else if (type & BTRFS_BLOCK_GROUP_RAID1)
|
||||
num_stripes = 2;
|
||||
else if (type & BTRFS_BLOCK_GROUP_RAID1C3)
|
||||
num_stripes = 3;
|
||||
else if (type & BTRFS_BLOCK_GROUP_RAID1C4)
|
||||
num_stripes = 4;
|
||||
else if (type & BTRFS_BLOCK_GROUP_RAID1_MASK)
|
||||
num_stripes = rattr->ncopies;
|
||||
else if (type & BTRFS_BLOCK_GROUP_RAID10)
|
||||
num_stripes = 4;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user