OSDN Git Service

dm zoned: ignore last smaller runt zone
authorDamien Le Moal <damien.lemoal@wdc.com>
Sat, 28 Oct 2017 07:39:34 +0000 (16:39 +0900)
committerMike Snitzer <snitzer@redhat.com>
Fri, 10 Nov 2017 20:44:53 +0000 (15:44 -0500)
commit114e025968b5990ad0b57bf60697ea64ee206aac
tree443eee16ccd2842c0abccd3da5cd0717dd2c5421
parentfbc61291d7da41ec19f339311297f59213165227
dm zoned: ignore last smaller runt zone

The SCSI layer allows ZBC drives to have a smaller last runt zone. For
such a device, specifying the entire capacity for a dm-zoned target
table entry fails because the specified capacity is not aligned on a
device zone size indicated in the request queue structure of the
device.

Fix this problem by ignoring the last runt zone in the entry length
when seting up the dm-zoned target (ctr method) and when iterating table
entries of the target (iterate_devices method). This allows dm-zoned
users to still easily setup a target using the entire device capacity
(as mandated by dm-zoned) or the aligned capacity excluding the last
runt zone.

While at it, replace direct references to the device queue chunk_sectors
limit with calls to the accessor blk_queue_zone_sectors().

Reported-by: Peter Desnoyers <pjd@ccs.neu.edu>
Cc: stable@vger.kernel.org
Signed-off-by: Damien Le Moal <damien.lemoal@wdc.com>
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
drivers/md/dm-zoned-target.c