btrfs: zoned: let the for_treelog test in the allocator stand out
The statement which decides if an extent allocation on a zoned device is for the dedicated tree-log block group or not and if we can use the block group we picked for this allocation is not easy to read but an important part of the allocator. Rewrite into an if condition instead of a plain boolean test to make it stand out more, like the version which tests for the dedicated data-relocation block group. Signed-off-by: Johannes Thumshirn <johannes.thumshirn@wdc.com> Reviewed-by: David Sterba <dsterba@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
4b01c44f15
commit
2d81eb1c3f
|
@ -3763,7 +3763,7 @@ static int do_allocation_zoned(struct btrfs_block_group *block_group,
|
||||||
u64 log_bytenr;
|
u64 log_bytenr;
|
||||||
u64 data_reloc_bytenr;
|
u64 data_reloc_bytenr;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
bool skip;
|
bool skip = false;
|
||||||
|
|
||||||
ASSERT(btrfs_is_zoned(block_group->fs_info));
|
ASSERT(btrfs_is_zoned(block_group->fs_info));
|
||||||
|
|
||||||
|
@ -3773,8 +3773,9 @@ static int do_allocation_zoned(struct btrfs_block_group *block_group,
|
||||||
*/
|
*/
|
||||||
spin_lock(&fs_info->treelog_bg_lock);
|
spin_lock(&fs_info->treelog_bg_lock);
|
||||||
log_bytenr = fs_info->treelog_bg;
|
log_bytenr = fs_info->treelog_bg;
|
||||||
skip = log_bytenr && ((ffe_ctl->for_treelog && bytenr != log_bytenr) ||
|
if (log_bytenr && ((ffe_ctl->for_treelog && bytenr != log_bytenr) ||
|
||||||
(!ffe_ctl->for_treelog && bytenr == log_bytenr));
|
(!ffe_ctl->for_treelog && bytenr == log_bytenr)))
|
||||||
|
skip = true;
|
||||||
spin_unlock(&fs_info->treelog_bg_lock);
|
spin_unlock(&fs_info->treelog_bg_lock);
|
||||||
if (skip)
|
if (skip)
|
||||||
return 1;
|
return 1;
|
||||||
|
|
Loading…
Reference in New Issue