block: Fix validation of zoned device with a runt zone
authorDamien Le Moal <dlemoal@kernel.org>
Thu, 30 May 2024 05:40:33 +0000 (14:40 +0900)
committerJens Axboe <axboe@kernel.dk>
Thu, 30 May 2024 21:03:52 +0000 (15:03 -0600)
commitcd6399936869b4a042dd1270078cbf2bb871a407
tree5636b77e8bfd0b8f2a8bdc8dd5bc395f3204f1a0
parentb164316808ec5de391c3e7b0148ec937d32d280d
block: Fix validation of zoned device with a runt zone

Commit ecfe43b11b02 ("block: Remember zone capacity when revalidating
zones") introduced checks to ensure that the capacity of the zones of
a zoned device is constant for all zones. However, this check ignores
the possibility that a zoned device has a smaller last zone with a size
not equal to the capacity of other zones. Such device correspond in
practice to an SMR drive with a smaller last zone and all zones with a
capacity equal to the zone size, leading to the last zone capacity being
different than the capacity of other zones.

Correctly handle such device by fixing the check for the constant zone
capacity in blk_revalidate_seq_zone() using the new helper function
disk_zone_is_last(). This helper function is also used in
blk_revalidate_zone_cb() when checking the zone size.

Fixes: ecfe43b11b02 ("block: Remember zone capacity when revalidating zones")
Signed-off-by: Damien Le Moal <dlemoal@kernel.org>
Reviewed-by: Bart Van Assche <bvanassche@acm.org>
Reviewed-by: Niklas Cassel <cassel@kernel.org>
Link: https://lore.kernel.org/r/20240530054035.491497-3-dlemoal@kernel.org
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/blk-zoned.c