]> www.infradead.org Git - users/hch/block.git/commitdiff
loop: also use the default block size from an underlying block device
authorChristoph Hellwig <hch@lst.de>
Sun, 2 Jun 2024 06:50:57 +0000 (08:50 +0200)
committerChristoph Hellwig <hch@lst.de>
Sun, 16 Jun 2024 09:47:55 +0000 (11:47 +0200)
Fix the code in loop_reconfigure_limits to pick a default block size for
O_DIRECT file descriptors to also work when the loop device sits on top
of a block device and not just on a regular file on a block device based
file system.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Hannes Reinecke <hare@suse.de>
Reviewed-by: Bart Van Assche <bvanassche@acm.org>
drivers/block/loop.c

index eea3e4919e356e6efb0a74341592c0a1aa3996a6..6a4826708a3acfdf75c3e673eef7497087129e8c 100644 (file)
@@ -988,10 +988,16 @@ 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 block_device *backing_bdev = NULL;
        struct queue_limits lim;
 
+       if (S_ISBLK(inode->i_mode))
+               backing_bdev = I_BDEV(inode);
+       else if (inode->i_sb->s_bdev)
+               backing_bdev = inode->i_sb->s_bdev;
+
        if (!bsize)
-               bsize = loop_default_blocksize(lo, inode->i_sb->s_bdev);
+               bsize = loop_default_blocksize(lo, backing_bdev);
 
        lim = queue_limits_start_update(lo->lo_queue);
        lim.logical_block_size = bsize;