diff options
author | Christoph Hellwig <hch@lst.de> | 2023-12-07 10:27:10 +0300 |
---|---|---|
committer | Christian Brauner <brauner@kernel.org> | 2024-02-01 16:20:13 +0300 |
commit | 19871b5c7a003946d3cd4209a348ab7c0df5dbad (patch) | |
tree | 2413d150b64c6bc23c7ffcc44949573733036fda /block | |
parent | 30deff8531f469453ccc0981f14eceb0a2ea68d6 (diff) | |
download | linux-19871b5c7a003946d3cd4209a348ab7c0df5dbad.tar.xz |
iomap: pass the length of the dirty region to ->map_blocks
Let the file system know how much dirty data exists at the passed
in offset. This allows file systems to allocate the right amount
of space that actually is written back if they can't eagerly
convert (e.g. because they don't support unwritten extents).
Signed-off-by: Christoph Hellwig <hch@lst.de>
Link: https://lore.kernel.org/r/20231207072710.176093-15-hch@lst.de
Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'block')
-rw-r--r-- | block/fops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/fops.c b/block/fops.c index 0cf8cf72cdfa..93bae17ce660 100644 --- a/block/fops.c +++ b/block/fops.c @@ -482,7 +482,7 @@ static void blkdev_readahead(struct readahead_control *rac) } static int blkdev_map_blocks(struct iomap_writepage_ctx *wpc, - struct inode *inode, loff_t offset) + struct inode *inode, loff_t offset, unsigned int len) { loff_t isize = i_size_read(inode); |