Commit 6dead96c authored by Qu Wenruo's avatar Qu Wenruo Committed by David Sterba
Browse files

btrfs: use btrfs_chunk_max_errors() to replace tolerance calculation



In __btrfs_map_block() we have an assignment to @max_errors using
nr_parity_stripes().

Although it works for RAID56 it's confusing.  Replace it with
btrfs_chunk_max_errors().

Reviewed-by: default avatarJohannes Thumshirn <johannes.thumshirn@wdc.com>
Signed-off-by: default avatarQu Wenruo <wqu@suse.com>
Reviewed-by: default avatarDavid Sterba <dsterba@suse.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent bc88b486
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -6466,7 +6466,7 @@ static int __btrfs_map_block(struct btrfs_fs_info *fs_info,

			/* RAID[56] write or recovery. Return all stripes */
			num_stripes = map->num_stripes;
			max_errors = nr_parity_stripes(map);
			max_errors = btrfs_chunk_max_errors(map);

			*length = map->stripe_len;
			stripe_index = 0;