mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-04 04:04:19 +00:00
btrfs: drop unused parameter fs_info from do_reclaim_sweep()
The parameter is unused and we can get it from space info if needed. Reviewed-by: Anand Jain <anand.jain@oracle.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
a6563fa06a
commit
343a63594b
@ -1983,8 +1983,7 @@ static bool is_reclaim_urgent(struct btrfs_space_info *space_info)
|
|||||||
return unalloc < data_chunk_size;
|
return unalloc < data_chunk_size;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void do_reclaim_sweep(const struct btrfs_fs_info *fs_info,
|
static void do_reclaim_sweep(struct btrfs_space_info *space_info, int raid)
|
||||||
struct btrfs_space_info *space_info, int raid)
|
|
||||||
{
|
{
|
||||||
struct btrfs_block_group *bg;
|
struct btrfs_block_group *bg;
|
||||||
int thresh_pct;
|
int thresh_pct;
|
||||||
@ -2080,6 +2079,6 @@ void btrfs_reclaim_sweep(const struct btrfs_fs_info *fs_info)
|
|||||||
if (!btrfs_should_periodic_reclaim(space_info))
|
if (!btrfs_should_periodic_reclaim(space_info))
|
||||||
continue;
|
continue;
|
||||||
for (raid = 0; raid < BTRFS_NR_RAID_TYPES; raid++)
|
for (raid = 0; raid < BTRFS_NR_RAID_TYPES; raid++)
|
||||||
do_reclaim_sweep(fs_info, space_info, raid);
|
do_reclaim_sweep(space_info, raid);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user