summaryrefslogtreecommitdiff
path: root/fs/f2fs/data.c
diff options
context:
space:
mode:
authorMatthew Wilcox (Oracle) <willy@infradead.org>2025-03-31 23:12:24 +0300
committerJaegeuk Kim <jaegeuk@kernel.org>2025-04-28 18:26:43 +0300
commit848839ce05055c7eb6edb7fc29177b2911a3f96e (patch)
tree0a474e9378d6ed6eb43517e345922e98d2f821d3 /fs/f2fs/data.c
parentf1d54e07a97f484862f418827fc5b88b026185e5 (diff)
downloadlinux-848839ce05055c7eb6edb7fc29177b2911a3f96e.tar.xz
f2fs: Pass a folio to f2fs_do_read_inline_data()
All callers now have a folio, so pass it in. Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org> Reviewed-by: Chao Yu <chao@kernel.org> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/data.c')
-rw-r--r--fs/f2fs/data.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c
index bead3fcbfdbb..757dbf778314 100644
--- a/fs/f2fs/data.c
+++ b/fs/f2fs/data.c
@@ -3388,7 +3388,7 @@ restart:
if (f2fs_has_inline_data(inode)) {
if (pos + len <= MAX_INLINE_DATA(inode)) {
- f2fs_do_read_inline_data(folio, &ifolio->page);
+ f2fs_do_read_inline_data(folio, ifolio);
set_inode_flag(inode, FI_DATA_EXIST);
if (inode->i_nlink)
set_page_private_inline(&ifolio->page);