diff options
author | Josef Bacik <josef@toxicpanda.com> | 2024-08-27 06:51:36 -0400 |
---|---|---|
committer | Christian Brauner <brauner@kernel.org> | 2024-09-03 15:01:23 +0200 |
commit | 31754ea6cbbc08d5bbe1fa290320c3048d8d98a3 (patch) | |
tree | f166080b1654f36d8fca30d7da566008ef102e54 /block | |
parent | d1dd75dcda646bed5b2add8790ae69c202f9f0b1 (diff) | |
download | linux-stable-31754ea6cbbc08d5bbe1fa290320c3048d8d98a3.tar.gz linux-stable-31754ea6cbbc08d5bbe1fa290320c3048d8d98a3.tar.bz2 linux-stable-31754ea6cbbc08d5bbe1fa290320c3048d8d98a3.zip |
iomap: add a private argument for iomap_file_buffered_write
In order to switch fuse over to using iomap for buffered writes we need
to be able to have the struct file for the original write, in case we
have to read in the page to make it uptodate. Handle this by using the
existing private field in the iomap_iter, and add the argument to
iomap_file_buffered_write. This will allow us to pass the file in
through the iomap buffered write path, and is flexible for any other
file systems needs.
Signed-off-by: Josef Bacik <josef@toxicpanda.com>
Link: https://lore.kernel.org/r/7f55c7c32275004ba00cddf862d970e6e633f750.1724755651.git.josef@toxicpanda.com
Reviewed-by: Christoph Hellwig <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 9825c1713a49..d16a6dddb12a 100644 --- a/block/fops.c +++ b/block/fops.c @@ -665,7 +665,7 @@ blkdev_direct_write(struct kiocb *iocb, struct iov_iter *from) static ssize_t blkdev_buffered_write(struct kiocb *iocb, struct iov_iter *from) { - return iomap_file_buffered_write(iocb, from, &blkdev_iomap_ops); + return iomap_file_buffered_write(iocb, from, &blkdev_iomap_ops, NULL); } /* |