btrfs: drop unnecessary arguments from find_free_extent_update_loop()

Now that, we don't use last_ptr and use_cluster in the function. Drop
these arguments from it.

Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
Reviewed-by: Josef Bacik <josef@toxicpanda.com>
Signed-off-by: Naohiro Aota <naohiro.aota@wdc.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
Naohiro Aota 2020-02-25 12:56:23 +09:00 committed by David Sterba
parent 0ab9724bf5
commit 15b7ee6584

View file

@ -3741,10 +3741,9 @@ static void found_extent(struct find_free_extent_ctl *ffe_ctl,
* Return <0 means we failed to locate any free extent.
*/
static int find_free_extent_update_loop(struct btrfs_fs_info *fs_info,
struct btrfs_free_cluster *last_ptr,
struct btrfs_key *ins,
struct find_free_extent_ctl *ffe_ctl,
bool full_search, bool use_cluster)
bool full_search)
{
struct btrfs_root *root = fs_info->extent_root;
int ret;
@ -4112,9 +4111,7 @@ static noinline int find_free_extent(struct btrfs_fs_info *fs_info,
}
up_read(&space_info->groups_sem);
ret = find_free_extent_update_loop(fs_info, ffe_ctl.last_ptr, ins,
&ffe_ctl, full_search,
ffe_ctl.use_cluster);
ret = find_free_extent_update_loop(fs_info, ins, &ffe_ctl, full_search);
if (ret > 0)
goto search;