diff options
author | Matthew Wilcox (Oracle) | 2022-04-29 11:12:16 -0400 |
---|---|---|
committer | Matthew Wilcox (Oracle) | 2022-05-09 16:21:45 -0400 |
commit | 65c0d259cb1721c49387f1db97245d5228616a16 (patch) | |
tree | ee3d8a8c81f33eb3f52dd0ca8c7ccb1042d72795 /fs/coda | |
parent | ce3bb0d2cb60fbfcd5e27d489e13e6ed7a4a7dfe (diff) |
coda: Convert coda to read_folio
This is a "weak" conversion which converts straight back to using pages.
A full conversion should be performed at some point, hopefully by
someone familiar with the filesystem.
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Diffstat (limited to 'fs/coda')
-rw-r--r-- | fs/coda/symlink.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/fs/coda/symlink.c b/fs/coda/symlink.c index 8907d0508198..8adf81042498 100644 --- a/fs/coda/symlink.c +++ b/fs/coda/symlink.c @@ -20,9 +20,10 @@ #include "coda_psdev.h" #include "coda_linux.h" -static int coda_symlink_filler(struct file *file, struct page *page) +static int coda_symlink_filler(struct file *file, struct folio *folio) { - struct inode *inode = page->mapping->host; + struct page *page = &folio->page; + struct inode *inode = folio->mapping->host; int error; struct coda_inode_info *cii; unsigned int len = PAGE_SIZE; @@ -44,5 +45,5 @@ fail: } const struct address_space_operations coda_symlink_aops = { - .readpage = coda_symlink_filler, + .read_folio = coda_symlink_filler, }; |