diff options
author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2022-04-29 15:49:28 +0300 |
---|---|---|
committer | Matthew Wilcox (Oracle) <willy@infradead.org> | 2022-05-09 23:21:44 +0300 |
commit | 6c62371b7fd77628feb5b806bc29433caecedff8 (patch) | |
tree | 2ca690c32dd6c2aaf10ad4f925170ea28106f1e6 /fs/afs | |
parent | 08830c8bc6cc7047d2cc8a136849a15fcb977044 (diff) | |
download | linux-6c62371b7fd77628feb5b806bc29433caecedff8.tar.xz |
fs: Convert netfs_readpage to netfs_read_folio
This is straightforward because netfs already worked in terms of folios.
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Diffstat (limited to 'fs/afs')
-rw-r--r-- | fs/afs/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/afs/file.c b/fs/afs/file.c index 26292a110a8f..e277fbe55262 100644 --- a/fs/afs/file.c +++ b/fs/afs/file.c @@ -50,7 +50,7 @@ const struct inode_operations afs_file_inode_operations = { }; const struct address_space_operations afs_file_aops = { - .readpage = netfs_readpage, + .read_folio = netfs_read_folio, .readahead = netfs_readahead, .dirty_folio = afs_dirty_folio, .launder_folio = afs_launder_folio, |