summaryrefslogtreecommitdiffstats
path: root/fs/hpfs
diff options
context:
space:
mode:
authorMatthew Wilcox (Oracle) <willy@infradead.org>2022-04-29 11:12:16 -0400
committerMatthew Wilcox (Oracle) <willy@infradead.org>2022-05-09 16:21:45 -0400
commitcc14d240267042fe3fb09ffc8412f8ef8f2f1cd0 (patch)
treed6e633e7905239f80f3eef2b75373f39ca3bc4f6 /fs/hpfs
parent8f4fe249a671f1e3abbab76b14096d0ebda1aa75 (diff)
downloadlinux-cc14d240267042fe3fb09ffc8412f8ef8f2f1cd0.tar.gz
linux-cc14d240267042fe3fb09ffc8412f8ef8f2f1cd0.tar.bz2
linux-cc14d240267042fe3fb09ffc8412f8ef8f2f1cd0.zip
hpfs: Convert symlinks 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/hpfs')
-rw-r--r--fs/hpfs/namei.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/hpfs/namei.c b/fs/hpfs/namei.c
index d73f8a67168e..15fc63276caa 100644
--- a/fs/hpfs/namei.c
+++ b/fs/hpfs/namei.c
@@ -479,8 +479,9 @@ out:
return err;
}
-static int hpfs_symlink_readpage(struct file *file, struct page *page)
+static int hpfs_symlink_read_folio(struct file *file, struct folio *folio)
{
+ struct page *page = &folio->page;
char *link = page_address(page);
struct inode *i = page->mapping->host;
struct fnode *fnode;
@@ -508,7 +509,7 @@ fail:
}
const struct address_space_operations hpfs_symlink_aops = {
- .readpage = hpfs_symlink_readpage
+ .read_folio = hpfs_symlink_read_folio
};
static int hpfs_rename(struct user_namespace *mnt_userns, struct inode *old_dir,