btrfs: remove redundant parameter from btree_readahead_hook

We can read fs_info from eb.

Reviewed-by: Liu Bo <bo.li.liu@oracle.com>
Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
David Sterba
2017-03-02 19:43:30 +01:00
parent 7ef70b4d99
commit d48d71aa99
3 changed files with 5 additions and 6 deletions

View File

@@ -209,9 +209,9 @@ cleanup:
return;
}
int btree_readahead_hook(struct btrfs_fs_info *fs_info,
struct extent_buffer *eb, int err)
int btree_readahead_hook(struct extent_buffer *eb, int err)
{
struct btrfs_fs_info *fs_info = eb->fs_info;
int ret = 0;
struct reada_extent *re;