Commit 0ceaf282 authored by David Sterba's avatar David Sterba

btrfs: remove redundant parameter from reada_find_zone

We can read fs_info from dev.
Reviewed-by: default avatarLiu Bo <bo.li.liu@oracle.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent d48d71aa
...@@ -235,10 +235,10 @@ int btree_readahead_hook(struct extent_buffer *eb, int err) ...@@ -235,10 +235,10 @@ int btree_readahead_hook(struct extent_buffer *eb, int err)
return ret; return ret;
} }
static struct reada_zone *reada_find_zone(struct btrfs_fs_info *fs_info, static struct reada_zone *reada_find_zone(struct btrfs_device *dev, u64 logical,
struct btrfs_device *dev, u64 logical,
struct btrfs_bio *bbio) struct btrfs_bio *bbio)
{ {
struct btrfs_fs_info *fs_info = dev->fs_info;
int ret; int ret;
struct reada_zone *zone; struct reada_zone *zone;
struct btrfs_block_group_cache *cache = NULL; struct btrfs_block_group_cache *cache = NULL;
...@@ -374,7 +374,7 @@ static struct reada_extent *reada_find_extent(struct btrfs_fs_info *fs_info, ...@@ -374,7 +374,7 @@ static struct reada_extent *reada_find_extent(struct btrfs_fs_info *fs_info,
if (!dev->bdev) if (!dev->bdev)
continue; continue;
zone = reada_find_zone(fs_info, dev, logical, bbio); zone = reada_find_zone(dev, logical, bbio);
if (!zone) if (!zone)
continue; continue;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment