diff options
author | Chao Yu <chao@kernel.org> | 2024-08-13 22:13:26 +0800 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2024-09-06 23:04:47 +0000 |
commit | b084662139ae964073bfdbcf633f3ca9fa1a6d27 (patch) | |
tree | 68d9e7b919d74ae6fca8024e3f9b85432812e777 /fs/f2fs/data.c | |
parent | fd3a11aff4bef4df7dff25c71e4c51fe8d93e2e7 (diff) |
f2fs: convert f2fs_write_inline_data() to use folio
Convert to use folio, so that we can get rid of 'page->index' to
prepare for removal of 'index' field in structure page [1].
[1] https://lore.kernel.org/all/Zp8fgUSIBGQ1TN0D@casper.infradead.org/
Cc: Matthew Wilcox <willy@infradead.org>
Signed-off-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c index 0df5a0c66ede..6d2a37db0c9e 100644 --- a/fs/f2fs/data.c +++ b/fs/f2fs/data.c @@ -2866,7 +2866,7 @@ write: err = -EAGAIN; if (f2fs_has_inline_data(inode)) { - err = f2fs_write_inline_data(inode, page); + err = f2fs_write_inline_data(inode, folio); if (!err) goto out; } |