summaryrefslogtreecommitdiffstats
path: root/fs/f2fs/node.h
diff options
context:
space:
mode:
authorMatthew Wilcox (Oracle) <willy@infradead.org>2025-07-08 18:03:11 +0100
committerJaegeuk Kim <jaegeuk@kernel.org>2025-07-22 15:55:58 +0000
commitb07bfa70e4b11078b48e0cec3c2c2dd36c34e534 (patch)
tree572e9265ec77504b9812330c1d4076595d580f3c /fs/f2fs/node.h
parentf2fs: Pass a folio to set_dentry_mark() (diff)
downloadlinux-b07bfa70e4b11078b48e0cec3c2c2dd36c34e534.tar.gz
linux-b07bfa70e4b11078b48e0cec3c2c2dd36c34e534.zip
f2fs: Pass a folio to set_fsync_mark()
All callers 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/node.h')
-rw-r--r--fs/f2fs/node.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/node.h b/fs/f2fs/node.h
index 8f33134538cf..825fa3ad6357 100644
--- a/fs/f2fs/node.h
+++ b/fs/f2fs/node.h
@@ -433,4 +433,4 @@ static inline void set_mark(struct page *page, int mark, int type)
#endif
}
#define set_dentry_mark(folio, mark) set_mark(&folio->page, mark, DENT_BIT_SHIFT)
-#define set_fsync_mark(page, mark) set_mark(page, mark, FSYNC_BIT_SHIFT)
+#define set_fsync_mark(folio, mark) set_mark(&folio->page, mark, FSYNC_BIT_SHIFT)