mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 00:52:01 +00:00
btrfs: move ffe_ctl one level up
We are passing too many variables as it is from btrfs_reserve_extent() to find_free_extent(). The next commit will add min_alloc_size to ffe_ctl, and that means another pass-through argument. Take this opportunity to move ffe_ctl one level up and drop the redundant arguments. Signed-off-by: Naohiro Aota <naohiro.aota@wdc.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
eb66a010d5
commit
a12b0dc0aa
@ -3476,6 +3476,7 @@ enum btrfs_extent_allocation_policy {
|
||||
*/
|
||||
struct find_free_extent_ctl {
|
||||
/* Basic allocation info */
|
||||
u64 ram_bytes;
|
||||
u64 num_bytes;
|
||||
u64 empty_size;
|
||||
u64 flags;
|
||||
@ -4130,65 +4131,62 @@ static int prepare_allocation(struct btrfs_fs_info *fs_info,
|
||||
* |- If not found, re-iterate all block groups
|
||||
*/
|
||||
static noinline int find_free_extent(struct btrfs_root *root,
|
||||
u64 ram_bytes, u64 num_bytes, u64 empty_size,
|
||||
u64 hint_byte_orig, struct btrfs_key *ins,
|
||||
u64 flags, int delalloc)
|
||||
struct btrfs_key *ins,
|
||||
struct find_free_extent_ctl *ffe_ctl)
|
||||
{
|
||||
struct btrfs_fs_info *fs_info = root->fs_info;
|
||||
int ret = 0;
|
||||
int cache_block_group_error = 0;
|
||||
struct btrfs_block_group *block_group = NULL;
|
||||
struct find_free_extent_ctl ffe_ctl = {0};
|
||||
struct btrfs_space_info *space_info;
|
||||
bool full_search = false;
|
||||
bool for_treelog = (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID);
|
||||
|
||||
WARN_ON(num_bytes < fs_info->sectorsize);
|
||||
|
||||
ffe_ctl.num_bytes = num_bytes;
|
||||
ffe_ctl.empty_size = empty_size;
|
||||
ffe_ctl.flags = flags;
|
||||
ffe_ctl.search_start = 0;
|
||||
ffe_ctl.delalloc = delalloc;
|
||||
ffe_ctl.index = btrfs_bg_flags_to_raid_index(flags);
|
||||
ffe_ctl.have_caching_bg = false;
|
||||
ffe_ctl.orig_have_caching_bg = false;
|
||||
ffe_ctl.found_offset = 0;
|
||||
ffe_ctl.hint_byte = hint_byte_orig;
|
||||
ffe_ctl.for_treelog = for_treelog;
|
||||
ffe_ctl.policy = BTRFS_EXTENT_ALLOC_CLUSTERED;
|
||||
WARN_ON(ffe_ctl->num_bytes < fs_info->sectorsize);
|
||||
|
||||
ffe_ctl->search_start = 0;
|
||||
/* For clustered allocation */
|
||||
ffe_ctl.retry_clustered = false;
|
||||
ffe_ctl.retry_unclustered = false;
|
||||
ffe_ctl.last_ptr = NULL;
|
||||
ffe_ctl.use_cluster = true;
|
||||
ffe_ctl->empty_cluster = 0;
|
||||
ffe_ctl->last_ptr = NULL;
|
||||
ffe_ctl->use_cluster = true;
|
||||
ffe_ctl->have_caching_bg = false;
|
||||
ffe_ctl->orig_have_caching_bg = false;
|
||||
ffe_ctl->index = btrfs_bg_flags_to_raid_index(ffe_ctl->flags);
|
||||
ffe_ctl->loop = 0;
|
||||
/* For clustered allocation */
|
||||
ffe_ctl->retry_clustered = false;
|
||||
ffe_ctl->retry_unclustered = false;
|
||||
ffe_ctl->cached = 0;
|
||||
ffe_ctl->max_extent_size = 0;
|
||||
ffe_ctl->total_free_space = 0;
|
||||
ffe_ctl->found_offset = 0;
|
||||
ffe_ctl->policy = BTRFS_EXTENT_ALLOC_CLUSTERED;
|
||||
|
||||
if (btrfs_is_zoned(fs_info))
|
||||
ffe_ctl.policy = BTRFS_EXTENT_ALLOC_ZONED;
|
||||
ffe_ctl->policy = BTRFS_EXTENT_ALLOC_ZONED;
|
||||
|
||||
ins->type = BTRFS_EXTENT_ITEM_KEY;
|
||||
ins->objectid = 0;
|
||||
ins->offset = 0;
|
||||
|
||||
trace_find_free_extent(root, num_bytes, empty_size, flags);
|
||||
trace_find_free_extent(root, ffe_ctl->num_bytes, ffe_ctl->empty_size,
|
||||
ffe_ctl->flags);
|
||||
|
||||
space_info = btrfs_find_space_info(fs_info, flags);
|
||||
space_info = btrfs_find_space_info(fs_info, ffe_ctl->flags);
|
||||
if (!space_info) {
|
||||
btrfs_err(fs_info, "No space info for %llu", flags);
|
||||
btrfs_err(fs_info, "No space info for %llu", ffe_ctl->flags);
|
||||
return -ENOSPC;
|
||||
}
|
||||
|
||||
ret = prepare_allocation(fs_info, &ffe_ctl, space_info, ins);
|
||||
ret = prepare_allocation(fs_info, ffe_ctl, space_info, ins);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
ffe_ctl.search_start = max(ffe_ctl.search_start,
|
||||
first_logical_byte(fs_info, 0));
|
||||
ffe_ctl.search_start = max(ffe_ctl.search_start, ffe_ctl.hint_byte);
|
||||
if (ffe_ctl.search_start == ffe_ctl.hint_byte) {
|
||||
ffe_ctl->search_start = max(ffe_ctl->search_start,
|
||||
first_logical_byte(fs_info, 0));
|
||||
ffe_ctl->search_start = max(ffe_ctl->search_start, ffe_ctl->hint_byte);
|
||||
if (ffe_ctl->search_start == ffe_ctl->hint_byte) {
|
||||
block_group = btrfs_lookup_block_group(fs_info,
|
||||
ffe_ctl.search_start);
|
||||
ffe_ctl->search_start);
|
||||
/*
|
||||
* we don't want to use the block group if it doesn't match our
|
||||
* allocation bits, or if its not cached.
|
||||
@ -4196,7 +4194,7 @@ static noinline int find_free_extent(struct btrfs_root *root,
|
||||
* However if we are re-searching with an ideal block group
|
||||
* picked out then we don't care that the block group is cached.
|
||||
*/
|
||||
if (block_group && block_group_bits(block_group, flags) &&
|
||||
if (block_group && block_group_bits(block_group, ffe_ctl->flags) &&
|
||||
block_group->cached != BTRFS_CACHE_NO) {
|
||||
down_read(&space_info->groups_sem);
|
||||
if (list_empty(&block_group->list) ||
|
||||
@ -4210,9 +4208,10 @@ static noinline int find_free_extent(struct btrfs_root *root,
|
||||
btrfs_put_block_group(block_group);
|
||||
up_read(&space_info->groups_sem);
|
||||
} else {
|
||||
ffe_ctl.index = btrfs_bg_flags_to_raid_index(
|
||||
block_group->flags);
|
||||
btrfs_lock_block_group(block_group, delalloc);
|
||||
ffe_ctl->index = btrfs_bg_flags_to_raid_index(
|
||||
block_group->flags);
|
||||
btrfs_lock_block_group(block_group,
|
||||
ffe_ctl->delalloc);
|
||||
goto have_block_group;
|
||||
}
|
||||
} else if (block_group) {
|
||||
@ -4220,31 +4219,31 @@ static noinline int find_free_extent(struct btrfs_root *root,
|
||||
}
|
||||
}
|
||||
search:
|
||||
ffe_ctl.have_caching_bg = false;
|
||||
if (ffe_ctl.index == btrfs_bg_flags_to_raid_index(flags) ||
|
||||
ffe_ctl.index == 0)
|
||||
ffe_ctl->have_caching_bg = false;
|
||||
if (ffe_ctl->index == btrfs_bg_flags_to_raid_index(ffe_ctl->flags) ||
|
||||
ffe_ctl->index == 0)
|
||||
full_search = true;
|
||||
down_read(&space_info->groups_sem);
|
||||
list_for_each_entry(block_group,
|
||||
&space_info->block_groups[ffe_ctl.index], list) {
|
||||
&space_info->block_groups[ffe_ctl->index], list) {
|
||||
struct btrfs_block_group *bg_ret;
|
||||
|
||||
/* If the block group is read-only, we can skip it entirely. */
|
||||
if (unlikely(block_group->ro)) {
|
||||
if (for_treelog)
|
||||
if (ffe_ctl->for_treelog)
|
||||
btrfs_clear_treelog_bg(block_group);
|
||||
continue;
|
||||
}
|
||||
|
||||
btrfs_grab_block_group(block_group, delalloc);
|
||||
ffe_ctl.search_start = block_group->start;
|
||||
btrfs_grab_block_group(block_group, ffe_ctl->delalloc);
|
||||
ffe_ctl->search_start = block_group->start;
|
||||
|
||||
/*
|
||||
* this can happen if we end up cycling through all the
|
||||
* raid types, but we want to make sure we only allocate
|
||||
* for the proper type.
|
||||
*/
|
||||
if (!block_group_bits(block_group, flags)) {
|
||||
if (!block_group_bits(block_group, ffe_ctl->flags)) {
|
||||
u64 extra = BTRFS_BLOCK_GROUP_DUP |
|
||||
BTRFS_BLOCK_GROUP_RAID1_MASK |
|
||||
BTRFS_BLOCK_GROUP_RAID56_MASK |
|
||||
@ -4255,7 +4254,7 @@ search:
|
||||
* doesn't provide them, bail. This does allow us to
|
||||
* fill raid0 from raid1.
|
||||
*/
|
||||
if ((flags & extra) && !(block_group->flags & extra))
|
||||
if ((ffe_ctl->flags & extra) && !(block_group->flags & extra))
|
||||
goto loop;
|
||||
|
||||
/*
|
||||
@ -4263,14 +4262,14 @@ search:
|
||||
* It's possible that we have MIXED_GROUP flag but no
|
||||
* block group is mixed. Just skip such block group.
|
||||
*/
|
||||
btrfs_release_block_group(block_group, delalloc);
|
||||
btrfs_release_block_group(block_group, ffe_ctl->delalloc);
|
||||
continue;
|
||||
}
|
||||
|
||||
have_block_group:
|
||||
ffe_ctl.cached = btrfs_block_group_done(block_group);
|
||||
if (unlikely(!ffe_ctl.cached)) {
|
||||
ffe_ctl.have_caching_bg = true;
|
||||
ffe_ctl->cached = btrfs_block_group_done(block_group);
|
||||
if (unlikely(!ffe_ctl->cached)) {
|
||||
ffe_ctl->have_caching_bg = true;
|
||||
ret = btrfs_cache_block_group(block_group, 0);
|
||||
|
||||
/*
|
||||
@ -4293,10 +4292,11 @@ have_block_group:
|
||||
goto loop;
|
||||
|
||||
bg_ret = NULL;
|
||||
ret = do_allocation(block_group, &ffe_ctl, &bg_ret);
|
||||
ret = do_allocation(block_group, ffe_ctl, &bg_ret);
|
||||
if (ret == 0) {
|
||||
if (bg_ret && bg_ret != block_group) {
|
||||
btrfs_release_block_group(block_group, delalloc);
|
||||
btrfs_release_block_group(block_group,
|
||||
ffe_ctl->delalloc);
|
||||
block_group = bg_ret;
|
||||
}
|
||||
} else if (ret == -EAGAIN) {
|
||||
@ -4306,46 +4306,49 @@ have_block_group:
|
||||
}
|
||||
|
||||
/* Checks */
|
||||
ffe_ctl.search_start = round_up(ffe_ctl.found_offset,
|
||||
fs_info->stripesize);
|
||||
ffe_ctl->search_start = round_up(ffe_ctl->found_offset,
|
||||
fs_info->stripesize);
|
||||
|
||||
/* move on to the next group */
|
||||
if (ffe_ctl.search_start + num_bytes >
|
||||
if (ffe_ctl->search_start + ffe_ctl->num_bytes >
|
||||
block_group->start + block_group->length) {
|
||||
btrfs_add_free_space_unused(block_group,
|
||||
ffe_ctl.found_offset, num_bytes);
|
||||
ffe_ctl->found_offset,
|
||||
ffe_ctl->num_bytes);
|
||||
goto loop;
|
||||
}
|
||||
|
||||
if (ffe_ctl.found_offset < ffe_ctl.search_start)
|
||||
if (ffe_ctl->found_offset < ffe_ctl->search_start)
|
||||
btrfs_add_free_space_unused(block_group,
|
||||
ffe_ctl.found_offset,
|
||||
ffe_ctl.search_start - ffe_ctl.found_offset);
|
||||
ffe_ctl->found_offset,
|
||||
ffe_ctl->search_start - ffe_ctl->found_offset);
|
||||
|
||||
ret = btrfs_add_reserved_bytes(block_group, ram_bytes,
|
||||
num_bytes, delalloc);
|
||||
ret = btrfs_add_reserved_bytes(block_group, ffe_ctl->ram_bytes,
|
||||
ffe_ctl->num_bytes,
|
||||
ffe_ctl->delalloc);
|
||||
if (ret == -EAGAIN) {
|
||||
btrfs_add_free_space_unused(block_group,
|
||||
ffe_ctl.found_offset, num_bytes);
|
||||
ffe_ctl->found_offset,
|
||||
ffe_ctl->num_bytes);
|
||||
goto loop;
|
||||
}
|
||||
btrfs_inc_block_group_reservations(block_group);
|
||||
|
||||
/* we are all good, lets return */
|
||||
ins->objectid = ffe_ctl.search_start;
|
||||
ins->offset = num_bytes;
|
||||
ins->objectid = ffe_ctl->search_start;
|
||||
ins->offset = ffe_ctl->num_bytes;
|
||||
|
||||
trace_btrfs_reserve_extent(block_group, ffe_ctl.search_start,
|
||||
num_bytes);
|
||||
btrfs_release_block_group(block_group, delalloc);
|
||||
trace_btrfs_reserve_extent(block_group, ffe_ctl->search_start,
|
||||
ffe_ctl->num_bytes);
|
||||
btrfs_release_block_group(block_group, ffe_ctl->delalloc);
|
||||
break;
|
||||
loop:
|
||||
release_block_group(block_group, &ffe_ctl, delalloc);
|
||||
release_block_group(block_group, ffe_ctl, ffe_ctl->delalloc);
|
||||
cond_resched();
|
||||
}
|
||||
up_read(&space_info->groups_sem);
|
||||
|
||||
ret = find_free_extent_update_loop(fs_info, ins, &ffe_ctl, full_search);
|
||||
ret = find_free_extent_update_loop(fs_info, ins, ffe_ctl, full_search);
|
||||
if (ret > 0)
|
||||
goto search;
|
||||
|
||||
@ -4354,12 +4357,12 @@ loop:
|
||||
* Use ffe_ctl->total_free_space as fallback if we can't find
|
||||
* any contiguous hole.
|
||||
*/
|
||||
if (!ffe_ctl.max_extent_size)
|
||||
ffe_ctl.max_extent_size = ffe_ctl.total_free_space;
|
||||
if (!ffe_ctl->max_extent_size)
|
||||
ffe_ctl->max_extent_size = ffe_ctl->total_free_space;
|
||||
spin_lock(&space_info->lock);
|
||||
space_info->max_extent_size = ffe_ctl.max_extent_size;
|
||||
space_info->max_extent_size = ffe_ctl->max_extent_size;
|
||||
spin_unlock(&space_info->lock);
|
||||
ins->offset = ffe_ctl.max_extent_size;
|
||||
ins->offset = ffe_ctl->max_extent_size;
|
||||
} else if (ret == -ENOSPC) {
|
||||
ret = cache_block_group_error;
|
||||
}
|
||||
@ -4417,6 +4420,7 @@ int btrfs_reserve_extent(struct btrfs_root *root, u64 ram_bytes,
|
||||
struct btrfs_key *ins, int is_data, int delalloc)
|
||||
{
|
||||
struct btrfs_fs_info *fs_info = root->fs_info;
|
||||
struct find_free_extent_ctl ffe_ctl = {};
|
||||
bool final_tried = num_bytes == min_alloc_size;
|
||||
u64 flags;
|
||||
int ret;
|
||||
@ -4425,8 +4429,16 @@ int btrfs_reserve_extent(struct btrfs_root *root, u64 ram_bytes,
|
||||
flags = get_alloc_profile_by_root(root, is_data);
|
||||
again:
|
||||
WARN_ON(num_bytes < fs_info->sectorsize);
|
||||
ret = find_free_extent(root, ram_bytes, num_bytes, empty_size,
|
||||
hint_byte, ins, flags, delalloc);
|
||||
|
||||
ffe_ctl.ram_bytes = ram_bytes;
|
||||
ffe_ctl.num_bytes = num_bytes;
|
||||
ffe_ctl.empty_size = empty_size;
|
||||
ffe_ctl.flags = flags;
|
||||
ffe_ctl.delalloc = delalloc;
|
||||
ffe_ctl.hint_byte = hint_byte;
|
||||
ffe_ctl.for_treelog = for_treelog;
|
||||
|
||||
ret = find_free_extent(root, ins, &ffe_ctl);
|
||||
if (!ret && !is_data) {
|
||||
btrfs_dec_block_group_reservations(fs_info, ins->objectid);
|
||||
} else if (ret == -ENOSPC) {
|
||||
|
Loading…
Reference in New Issue
Block a user