diff options
author | Matthew Wilcox (Oracle) | 2022-04-29 08:49:28 -0400 |
---|---|---|
committer | Matthew Wilcox (Oracle) | 2022-05-09 16:21:44 -0400 |
commit | 6c62371b7fd77628feb5b806bc29433caecedff8 (patch) | |
tree | 2ca690c32dd6c2aaf10ad4f925170ea28106f1e6 /fs/9p | |
parent | 08830c8bc6cc7047d2cc8a136849a15fcb977044 (diff) |
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/9p')
-rw-r--r-- | fs/9p/vfs_addr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/9p/vfs_addr.c b/fs/9p/vfs_addr.c index a2d57112f53e..3a84167f4893 100644 --- a/fs/9p/vfs_addr.c +++ b/fs/9p/vfs_addr.c @@ -336,7 +336,7 @@ static bool v9fs_dirty_folio(struct address_space *mapping, struct folio *folio) #endif const struct address_space_operations v9fs_addr_operations = { - .readpage = netfs_readpage, + .read_folio = netfs_read_folio, .readahead = netfs_readahead, .dirty_folio = v9fs_dirty_folio, .writepage = v9fs_vfs_writepage, |