mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 10:00:17 +00:00
dm zoned: check zone capacity
commit bab6849942 upstream.
The dm-zoned target cannot support zoned block devices with zones that
have a capacity smaller than the zone size (e.g. NVMe zoned namespaces)
due to the current chunk zone mapping implementation as it is assumed
that zones and chunks have the same size with all blocks usable.
If a zoned drive is found to have zones with a capacity different from
the zone size, fail the target initialization.
Signed-off-by: Damien Le Moal <damien.lemoal@wdc.com>
Cc: stable@vger.kernel.org # v5.9+
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
35c1c4bd2d
commit
cbc03ffec2
@@ -1390,6 +1390,13 @@ static int dmz_init_zone(struct blk_zone *blkz, unsigned int num, void *data)
|
|||||||
return -ENXIO;
|
return -ENXIO;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Devices that have zones with a capacity smaller than the zone size
|
||||||
|
* (e.g. NVMe zoned namespaces) are not supported.
|
||||||
|
*/
|
||||||
|
if (blkz->capacity != blkz->len)
|
||||||
|
return -ENXIO;
|
||||||
|
|
||||||
switch (blkz->type) {
|
switch (blkz->type) {
|
||||||
case BLK_ZONE_TYPE_CONVENTIONAL:
|
case BLK_ZONE_TYPE_CONVENTIONAL:
|
||||||
set_bit(DMZ_RND, &zone->flags);
|
set_bit(DMZ_RND, &zone->flags);
|
||||||
|
|||||||
Reference in New Issue
Block a user