Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1512823

[PATCH 4/4] loop: Pass logical blocksize in 'lo_init[0]' ioctl field

From Hannes Reinecke <hare@suse.de>
Newsgroups linux.kernel
Subject [PATCH 4/4] loop: Pass logical blocksize in 'lo_init[0]' ioctl field
Date 2016-10-31 20:40 +0100
Message-ID <syqB4-6Fs-23@gated-at.bofh.it> (permalink)
References <syqB3-6Fs-5@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


The current LOOP_SET_STATUS64 ioctl has two unused fields
'init[2]', which can be used in conjunction with the
LO_FLAGS_BLOCKSIZE flag to pass in the new logical blocksize.

Signed-off-by: Hannes Reinecke <hare@suse.de>
---
 drivers/block/loop.c | 24 +++++++++++++++++++-----
 1 file changed, 19 insertions(+), 5 deletions(-)

diff --git a/drivers/block/loop.c b/drivers/block/loop.c
index a863667..9ad56bf 100644
--- a/drivers/block/loop.c
+++ b/drivers/block/loop.c
@@ -221,7 +221,8 @@ static void __loop_update_dio(struct loop_device *lo, bool dio)
 }
 
 static int
-figure_loop_size(struct loop_device *lo, loff_t offset, loff_t sizelimit)
+figure_loop_size(struct loop_device *lo, loff_t offset, loff_t sizelimit,
+		 loff_t logical_blocksize)
 {
 	loff_t size = get_size(offset, sizelimit, lo->lo_backing_file);
 	sector_t x = (sector_t)size;
@@ -234,6 +235,7 @@ figure_loop_size(struct loop_device *lo, loff_t offset, loff_t sizelimit)
 	if (lo->lo_sizelimit != sizelimit)
 		lo->lo_sizelimit = sizelimit;
 	if (lo->lo_flags & LO_FLAGS_BLOCKSIZE) {
+		lo->lo_logical_blocksize = logical_blocksize;
 		blk_queue_physical_block_size(lo->lo_queue, lo->lo_blocksize);
 		blk_queue_logical_block_size(lo->lo_queue,
 					     lo->lo_logical_blocksize);
@@ -1124,13 +1126,24 @@ loop_set_status(struct loop_device *lo, const struct loop_info64 *info)
 	if (err)
 		return err;
 
-	if (info->lo_flags & LO_FLAGS_BLOCKSIZE)
+	if (info->lo_flags & LO_FLAGS_BLOCKSIZE) {
 		lo->lo_flags |= LO_FLAGS_BLOCKSIZE;
+		if ((info->lo_init[0] != 512) &&
+		    (info->lo_init[0] != 1024) &&
+		    (info->lo_init[0] != 2048) &&
+		    (info->lo_init[0] != 4096))
+			return -EINVAL;
+		if (info->lo_init[0] > lo->lo_blocksize)
+			return -EINVAL;
+	}
 
 	if (lo->lo_offset != info->lo_offset ||
 	    lo->lo_sizelimit != info->lo_sizelimit ||
-	    lo->lo_flags != lo_flags)
-		if (figure_loop_size(lo, info->lo_offset, info->lo_sizelimit))
+	    lo->lo_flags != lo_flags ||
+	    ((lo->lo_flags & LO_FLAGS_BLOCKSIZE) &&
+	     (lo->lo_logical_blocksize != info->lo_init[0])))
+		if (figure_loop_size(lo, info->lo_offset, info->lo_sizelimit,
+				     info->lo_init[0]))
 			return -EFBIG;
 
 	loop_config_discard(lo);
@@ -1315,7 +1328,8 @@ static int loop_set_capacity(struct loop_device *lo)
 	if (unlikely(lo->lo_state != Lo_bound))
 		return -ENXIO;
 
-	return figure_loop_size(lo, lo->lo_offset, lo->lo_sizelimit);
+	return figure_loop_size(lo, lo->lo_offset, lo->lo_sizelimit,
+				lo->lo_logical_blocksize);
 }
 
 static int loop_set_dio(struct loop_device *lo, unsigned long arg)
-- 
2.6.6

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCHv3 0/4] loop: enable different physical blocksizes Hannes Reinecke <hare@suse.de> - 2016-10-31 20:40 +0100
  [PATCH 3/4] loop: Add 'lo_logical_blocksize' Hannes Reinecke <hare@suse.de> - 2016-10-31 20:40 +0100
    Re: [PATCH 3/4] loop: Add 'lo_logical_blocksize' Christoph Hellwig <hch@lst.de> - 2016-11-01 15:10 +0100
      Re: [PATCH 3/4] loop: Add 'lo_logical_blocksize' Hannes Reinecke <hare@suse.de> - 2016-11-01 18:00 +0100
  [PATCH 2/4] loop: Enable correct physical blocksize Hannes Reinecke <hare@suse.de> - 2016-10-31 20:40 +0100
    Re: [PATCH 2/4] loop: Enable correct physical blocksize Christoph Hellwig <hch@lst.de> - 2016-11-01 15:10 +0100
  [PATCH 4/4] loop: Pass logical blocksize in 'lo_init[0]' ioctl field Hannes Reinecke <hare@suse.de> - 2016-10-31 20:40 +0100
    Re: [PATCH 4/4] loop: Pass logical blocksize in 'lo_init[0]' ioctl         field Christoph Hellwig <hch@lst.de> - 2016-11-01 15:10 +0100
      Re: [PATCH 4/4] loop: Pass logical blocksize in 'lo_init[0]' ioctl  field Hannes Reinecke <hare@suse.de> - 2016-11-01 18:00 +0100
      Re: [PATCH 4/4] loop: Pass logical blocksize in 'lo_init[0]' ioctl  field Hannes Reinecke <hare@suse.de> - 2016-11-03 14:30 +0100

csiph-web