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/ceph | |
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/ceph')
-rw-r--r-- | fs/ceph/addr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ceph/addr.c b/fs/ceph/addr.c index 42bba2b5d98b..be3e47784f08 100644 --- a/fs/ceph/addr.c +++ b/fs/ceph/addr.c @@ -1372,7 +1372,7 @@ out: } const struct address_space_operations ceph_aops = { - .readpage = netfs_readpage, + .read_folio = netfs_read_folio, .readahead = netfs_readahead, .writepage = ceph_writepage, .writepages = ceph_writepages_start, |