This is a note to let you know that I've just added the patch titled

    block: open code __generic_file_write_iter for blkdev writes

to the 6.1-stable tree which can be found at:
    
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     block-open-code-__generic_file_write_iter-for-blkdev-writes.patch
and it can be found in the queue-6.1 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.


>From [email protected] Tue Oct 21 16:18:34 
>2025
From: Mahmoud Adam <[email protected]>
Date: Tue, 21 Oct 2025 09:03:41 +0200
Subject: block: open code __generic_file_write_iter for blkdev writes
To: <[email protected]>
Cc: <[email protected]>, <[email protected]>, Christoph Hellwig 
<[email protected]>, Johannes Thumshirn <[email protected]>, "Christian 
Brauner" <[email protected]>, Hannes Reinecke <[email protected]>, "Luis 
Chamberlain" <[email protected]>, Jens Axboe <[email protected]>, Xiubo Li 
<[email protected]>, Ilya Dryomov <[email protected]>, Jeff Layton 
<[email protected]>, Alexander Viro <[email protected]>, Theodore Ts'o 
<[email protected]>, Andreas Dilger <[email protected]>, Jaegeuk Kim 
<[email protected]>, Chao Yu <[email protected]>, Christoph Hellwig 
<[email protected]>, "Darrick J. Wong" <[email protected]>, Trond Myklebust 
<[email protected]>, Anna Schumaker <[email protected]>, "Ryusuke 
Konishi" <[email protected]>, "Matthew Wilcox (Oracle)" 
<[email protected]>, Andrew Morton <[email protected]>, "Damien Le 
Moal" <[email protected]>, <[email protected]>, 
<[email protected]>, <[email protected]>, <linu
 [email protected]>, <[email protected]>, 
<[email protected]>, <[email protected]>, 
<[email protected]>, <[email protected]>, <[email protected]>
Message-ID: <[email protected]>

From: Christoph Hellwig <[email protected]>

commit 727cfe976758b79f8d2f8051c75a5ccb14539a56 upstream.

Open code __generic_file_write_iter to remove the indirect call into
->direct_IO and to prepare using the iomap based write code.

Signed-off-by: Christoph Hellwig <[email protected]>
Reviewed-by: Johannes Thumshirn <[email protected]>
Reviewed-by: Christian Brauner <[email protected]>
Reviewed-by: Hannes Reinecke <[email protected]>
Reviewed-by: Luis Chamberlain <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Jens Axboe <[email protected]>
[fix contextual changes]
Signed-off-by: Mahmoud Adam <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
---
 block/fops.c |   45 +++++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 43 insertions(+), 2 deletions(-)

--- a/block/fops.c
+++ b/block/fops.c
@@ -515,6 +515,30 @@ static int blkdev_close(struct inode *in
        return 0;
 }
 
+static ssize_t
+blkdev_direct_write(struct kiocb *iocb, struct iov_iter *from)
+{
+       size_t count = iov_iter_count(from);
+       ssize_t written;
+
+       written = kiocb_invalidate_pages(iocb, count);
+       if (written) {
+               if (written == -EBUSY)
+                       return 0;
+               return written;
+       }
+
+       written = blkdev_direct_IO(iocb, from);
+       if (written > 0) {
+               kiocb_invalidate_post_direct_write(iocb, count);
+               iocb->ki_pos += written;
+               count -= written;
+       }
+       if (written != -EIOCBQUEUED)
+               iov_iter_revert(from, count - iov_iter_count(from));
+       return written;
+}
+
 /*
  * Write data to the block device.  Only intended for the block device itself
  * and the raw driver which basically is a fake block device.
@@ -524,7 +548,8 @@ static int blkdev_close(struct inode *in
  */
 static ssize_t blkdev_write_iter(struct kiocb *iocb, struct iov_iter *from)
 {
-       struct block_device *bdev = iocb->ki_filp->private_data;
+       struct file *file = iocb->ki_filp;
+       struct block_device *bdev = file->private_data;
        struct inode *bd_inode = bdev->bd_inode;
        loff_t size = bdev_nr_bytes(bdev);
        struct blk_plug plug;
@@ -553,7 +578,23 @@ static ssize_t blkdev_write_iter(struct
        }
 
        blk_start_plug(&plug);
-       ret = __generic_file_write_iter(iocb, from);
+       ret = file_remove_privs(file);
+       if (ret)
+               return ret;
+
+       ret = file_update_time(file);
+       if (ret)
+               return ret;
+
+       if (iocb->ki_flags & IOCB_DIRECT) {
+               ret = blkdev_direct_write(iocb, from);
+               if (ret >= 0 && iov_iter_count(from))
+                       ret = direct_write_fallback(iocb, from, ret,
+                                       generic_perform_write(iocb, from));
+       } else {
+               ret = generic_perform_write(iocb, from);
+       }
+
        if (ret > 0)
                ret = generic_write_sync(iocb, ret);
        iov_iter_reexpand(from, iov_iter_count(from) + shorted);


Patches currently in stable-queue which might be from [email protected] are

queue-6.1/block-fix-race-between-set_blocksize-and-read-paths.patch
queue-6.1/filemap-add-a-kiocb_invalidate_pages-helper.patch
queue-6.1/fs-factor-out-a-direct_write_fallback-helper.patch
queue-6.1/direct_write_fallback-on-error-revert-the-ki_pos-update-from-buffered-write.patch
queue-6.1/filemap-update-ki_pos-in-generic_perform_write.patch
queue-6.1/filemap-add-a-kiocb_invalidate_post_direct_write-helper.patch
queue-6.1/nilfs2-fix-deadlock-warnings-caused-by-lock-dependency-in-init_nilfs.patch
queue-6.1/block-open-code-__generic_file_write_iter-for-blkdev-writes.patch


_______________________________________________
Linux-f2fs-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel

Reply via email to