diff options
author | Ritesh Harjani <ritesh.list@gmail.com> | 2023-05-15 16:10:44 +0530 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2023-06-15 00:02:10 -0400 |
commit | d19500da4b8cfe1791e1583ab237c3213e1bd39c (patch) | |
tree | 6cf378b1e2fab252b146e7ab408a4b50922afce6 /fs/ext4/ext4.h | |
parent | 80be8c5cc9251484ba856e2cf7d15a189326fe9c (diff) | |
download | lwn-d19500da4b8cfe1791e1583ab237c3213e1bd39c.tar.gz lwn-d19500da4b8cfe1791e1583ab237c3213e1bd39c.zip |
ext4: Make ext4_write_inline_data_end() use folio
ext4_write_inline_data_end() is completely converted to work with folio.
Also all callers of ext4_write_inline_data_end() already works on folio
except ext4_da_write_end(). Mostly for consistency and saving few
instructions maybe, this patch just converts ext4_da_write_end() to work
with folio which makes the last caller of ext4_write_inline_data_end()
also converted to work with folio.
We then make ext4_write_inline_data_end() take folio instead of page.
Reviewed-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Signed-off-by: Ritesh Harjani (IBM) <ritesh.list@gmail.com>
Link: https://lore.kernel.org/r/1bcea771720ff451a5a59b3f1bcd5fae51cb7ce7.1684122756.git.ritesh.list@gmail.com
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/ext4.h')
-rw-r--r-- | fs/ext4/ext4.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/fs/ext4/ext4.h b/fs/ext4/ext4.h index 15abcbe988ec..ec9cd6252185 100644 --- a/fs/ext4/ext4.h +++ b/fs/ext4/ext4.h @@ -3480,10 +3480,8 @@ extern int ext4_try_to_write_inline_data(struct address_space *mapping, struct inode *inode, loff_t pos, unsigned len, struct page **pagep); -extern int ext4_write_inline_data_end(struct inode *inode, - loff_t pos, unsigned len, - unsigned copied, - struct page *page); +int ext4_write_inline_data_end(struct inode *inode, loff_t pos, unsigned len, + unsigned copied, struct folio *folio); extern int ext4_da_write_inline_data_begin(struct address_space *mapping, struct inode *inode, loff_t pos, unsigned len, |