diff options
author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2024-07-10 23:09:04 -0400 |
---|---|---|
committer | Christian Brauner <brauner@kernel.org> | 2024-08-07 11:33:36 +0200 |
commit | 9f04609f74ec7a439e1ac42da5db9e6ddf4f7b13 (patch) | |
tree | 3d957d78bfce2c9041c04fab37b0579dcce5e61b /fs/sysv | |
parent | 7f90d7f1bc9418aba1ef040565308e83dbe0f485 (diff) | |
download | linux-stable-9f04609f74ec7a439e1ac42da5db9e6ddf4f7b13.tar.gz linux-stable-9f04609f74ec7a439e1ac42da5db9e6ddf4f7b13.tar.bz2 linux-stable-9f04609f74ec7a439e1ac42da5db9e6ddf4f7b13.zip |
buffer: Convert __block_write_begin() to take a folio
Almost all callers have a folio now, so change __block_write_begin()
to take a folio and remove a call to compound_head().
Reviewed-by: Josef Bacik <josef@toxicpanda.com>
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'fs/sysv')
-rw-r--r-- | fs/sysv/itree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/sysv/itree.c b/fs/sysv/itree.c index 8864438817a6..451e95f474fa 100644 --- a/fs/sysv/itree.c +++ b/fs/sysv/itree.c @@ -468,7 +468,7 @@ static int sysv_read_folio(struct file *file, struct folio *folio) int sysv_prepare_chunk(struct folio *folio, loff_t pos, unsigned len) { - return __block_write_begin(&folio->page, pos, len, get_block); + return __block_write_begin(folio, pos, len, get_block); } static void sysv_write_failed(struct address_space *mapping, loff_t to) |