Commit 7938d38b authored by Filipe Manana's avatar Filipe Manana Committed by David Sterba

btrfs: remove pointless readahead callback wrapper

There's no point in having a static readahead callback in inode.c that
does nothing besides calling extent_readahead() from extent_io.c.
So just remove the callback at inode.c and rename extent_readahead()
to btrfs_readahead().
Reviewed-by: default avatarJohannes Thumshirn <johannes.thumshirn@wdc.com>
Reviewed-by: default avatarAnand Jain <anand.jain@oracle.com>
Reviewed-by: default avatarQu Wenruo <wqu@suse.com>
Signed-off-by: default avatarFilipe Manana <fdmanana@suse.com>
Reviewed-by: default avatarDavid Sterba <dsterba@suse.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent 2066bbfc
...@@ -2267,7 +2267,7 @@ int extent_writepages(struct address_space *mapping, ...@@ -2267,7 +2267,7 @@ int extent_writepages(struct address_space *mapping,
return ret; return ret;
} }
void extent_readahead(struct readahead_control *rac) void btrfs_readahead(struct readahead_control *rac)
{ {
struct btrfs_bio_ctrl bio_ctrl = { .opf = REQ_OP_READ | REQ_RAHEAD }; struct btrfs_bio_ctrl bio_ctrl = { .opf = REQ_OP_READ | REQ_RAHEAD };
struct page *pagepool[16]; struct page *pagepool[16];
......
...@@ -241,7 +241,7 @@ int extent_writepages(struct address_space *mapping, ...@@ -241,7 +241,7 @@ int extent_writepages(struct address_space *mapping,
struct writeback_control *wbc); struct writeback_control *wbc);
int btree_write_cache_pages(struct address_space *mapping, int btree_write_cache_pages(struct address_space *mapping,
struct writeback_control *wbc); struct writeback_control *wbc);
void extent_readahead(struct readahead_control *rac); void btrfs_readahead(struct readahead_control *rac);
int extent_fiemap(struct btrfs_inode *inode, struct fiemap_extent_info *fieinfo, int extent_fiemap(struct btrfs_inode *inode, struct fiemap_extent_info *fieinfo,
u64 start, u64 len); u64 start, u64 len);
int set_folio_extent_mapped(struct folio *folio); int set_folio_extent_mapped(struct folio *folio);
......
...@@ -7929,11 +7929,6 @@ static int btrfs_writepages(struct address_space *mapping, ...@@ -7929,11 +7929,6 @@ static int btrfs_writepages(struct address_space *mapping,
return extent_writepages(mapping, wbc); return extent_writepages(mapping, wbc);
} }
static void btrfs_readahead(struct readahead_control *rac)
{
extent_readahead(rac);
}
/* /*
* For release_folio() and invalidate_folio() we have a race window where * For release_folio() and invalidate_folio() we have a race window where
* folio_end_writeback() is called but the subpage spinlock is not yet released. * folio_end_writeback() is called but the subpage spinlock is not yet released.
......
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