Linux SCSI subsystem development
 help / color / mirror / Atom feed
* Should queue_max_hw_sectors() always be <= max_dev_sectors?
@ 2016-08-30 16:54 Andy Grover
  2016-08-31  2:11 ` Jens Axboe
  2016-08-31  2:15 ` Martin K. Petersen
  0 siblings, 2 replies; 5+ messages in thread
From: Andy Grover @ 2016-08-30 16:54 UTC (permalink / raw)
  To: Martin K. Petersen; +Cc: linux-block, linux-scsi, target-devel

Hi Martin, (you're the last person to touch this? :)

If I create a local SCSI device using LIO's loopback fabric, and backed 
by a file, /sys/block/sda/queue/max_hw_sectors_kb reports 32767. This 
reflects the loopback scsi_host_template reporting 65536 max_sectors, 
but that's the "controller" -- the actual device reports via the Block 
Limits VPD of supporting a max size of 16384 512-byte blocks.

Therefore, using max_hw_sectors_kb will give a wrong impression for what 
the max data size that can be issued to the device is -- 32767KiB 
instead of 8192KiB. Should max_hw_sectors_kb be reported as the lesser 
of max_hw_sectors and max_dev_sectors? Something like:

--- a/include/linux/blkdev.h
+++ b/include/linux/blkdev.h
@@ -1196,7 +1196,7 @@ static inline unsigned int 
queue_max_sectors(struct request_queue *q)

  static inline unsigned int queue_max_hw_sectors(struct request_queue *q)
  {
-       return q->limits.max_hw_sectors;
+       return min_not_zero(q->limits.max_hw_sectors, 
q->limits.max_dev_sectors);
  }

...because limits.max_hw_sectors internally seems to be just the 
controller limit, but what users of queue_max_hw_sectors (including 
sysfs) really want is the lesser of limits.max_hw_sectors and 
limits.max_dev_sectors.

BTW the docs say:

max_hw_sectors_kb (RO)
----------------------
This is the maximum number of kilobytes supported in a single data transfer.

Thanks -- Regards -- Andy

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-08-31  4:11 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-30 16:54 Should queue_max_hw_sectors() always be <= max_dev_sectors? Andy Grover
2016-08-31  2:11 ` Jens Axboe
2016-08-31  2:15 ` Martin K. Petersen
2016-08-31  2:36   ` Jens Axboe
2016-08-31  4:11     ` Martin K. Petersen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox