summaryrefslogtreecommitdiffstats
path: root/fs/f2fs/acl.c
diff options
context:
space:
mode:
authorMatthew Wilcox (Oracle) <willy@infradead.org>2025-03-31 21:12:09 +0100
committerJaegeuk Kim <jaegeuk@kernel.org>2025-04-28 15:26:41 +0000
commit953ab314c75ec0ffead1d65ddb9f8f17422c3fae (patch)
tree51913136f73a63513744424ca472f52b79fbeadf /fs/f2fs/acl.c
parentf2fs: Pass folios to f2fs_init_acl() (diff)
downloadlinux-953ab314c75ec0ffead1d65ddb9f8f17422c3fae.tar.gz
linux-953ab314c75ec0ffead1d65ddb9f8f17422c3fae.zip
f2fs: Pass a folio to f2fs_setxattr()
Also convert f2fs_initxattrs() to take a folio. 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/acl.c')
-rw-r--r--fs/f2fs/acl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/acl.c b/fs/f2fs/acl.c
index 1ec6125cadc5..0a4d160235e0 100644
--- a/fs/f2fs/acl.c
+++ b/fs/f2fs/acl.c
@@ -264,7 +264,7 @@ static int __f2fs_set_acl(struct mnt_idmap *idmap,
}
}
- error = f2fs_setxattr(inode, name_index, "", value, size, &ifolio->page, 0);
+ error = f2fs_setxattr(inode, name_index, "", value, size, ifolio, 0);
kfree(value);
if (!error)