]> www.infradead.org Git - users/hch/block.git/commitdiff
loop: regularize upgrading the block size for direct I/O
authorChristoph Hellwig <hch@lst.de>
Mon, 17 Jun 2024 06:04:33 +0000 (08:04 +0200)
committerJens Axboe <axboe@kernel.dk>
Wed, 19 Jun 2024 13:58:28 +0000 (07:58 -0600)
The LOOP_CONFIGURE path automatically upgrades the block size to that
of the underlying file for O_DIRECT file descriptors, but the
LOOP_SET_BLOCK_SIZE path does not.  Fix this by lifting the code to
pick the block size into common code.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Hannes Reinecke <hare@suse.de>
Reviewed-by: Bart Van Assche <bvanassche@acm.org>
Reviewed-by: Damien Le Moal <dlemoal@kernel.org>
Link: https://lore.kernel.org/r/20240617060532.127975-7-hch@lst.de
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/block/loop.c

index ce197cbea5f434e5222a7c83462d2e34a5c82429..eea3e4919e356e6efb0a74341592c0a1aa3996a6 100644 (file)
@@ -975,10 +975,24 @@ loop_set_status_from_info(struct loop_device *lo,
        return 0;
 }
 
+static unsigned short loop_default_blocksize(struct loop_device *lo,
+               struct block_device *backing_bdev)
+{
+       /* In case of direct I/O, match underlying block size */
+       if ((lo->lo_backing_file->f_flags & O_DIRECT) && backing_bdev)
+               return bdev_logical_block_size(backing_bdev);
+       return SECTOR_SIZE;
+}
+
 static int loop_reconfigure_limits(struct loop_device *lo, unsigned short bsize)
 {
+       struct file *file = lo->lo_backing_file;
+       struct inode *inode = file->f_mapping->host;
        struct queue_limits lim;
 
+       if (!bsize)
+               bsize = loop_default_blocksize(lo, inode->i_sb->s_bdev);
+
        lim = queue_limits_start_update(lo->lo_queue);
        lim.logical_block_size = bsize;
        lim.physical_block_size = bsize;
@@ -997,7 +1011,6 @@ static int loop_configure(struct loop_device *lo, blk_mode_t mode,
        int error;
        loff_t size;
        bool partscan;
-       unsigned short bsize;
        bool is_loop;
 
        if (!file)
@@ -1076,15 +1089,7 @@ static int loop_configure(struct loop_device *lo, blk_mode_t mode,
        if (!(lo->lo_flags & LO_FLAGS_READ_ONLY) && file->f_op->fsync)
                blk_queue_write_cache(lo->lo_queue, true, false);
 
-       if (config->block_size)
-               bsize = config->block_size;
-       else if ((lo->lo_backing_file->f_flags & O_DIRECT) && inode->i_sb->s_bdev)
-               /* In case of direct I/O, match underlying block size */
-               bsize = bdev_logical_block_size(inode->i_sb->s_bdev);
-       else
-               bsize = 512;
-
-       error = loop_reconfigure_limits(lo, bsize);
+       error = loop_reconfigure_limits(lo, config->block_size);
        if (WARN_ON_ONCE(error))
                goto out_unlock;