Skip to content

Commit 165634c

Browse files
damien-lemoalgregkh
authored andcommitted
null_blk: Do not allow runt zone with zone capacity smaller then zone size
[ Upstream commit b164316 ] A zoned device with a smaller last zone together with a zone capacity smaller than the zone size does make any sense as that does not correspond to any possible setup for a real device: 1) For ZNS and zoned UFS devices, all zones are always the same size. 2) For SMR HDDs, all zones always have the same capacity. In other words, if we have a smaller last runt zone, then this zone capacity should always be equal to the zone size. Add a check in null_init_zoned_dev() to prevent a configuration to have both a smaller zone size and a zone capacity smaller than the zone size. Signed-off-by: Damien Le Moal <dlemoal@kernel.org> Reviewed-by: Niklas Cassel <cassel@kernel.org> Reviewed-by: Bart Van Assche <bvanassche@acm.org> Link: https://lore.kernel.org/r/20240530054035.491497-2-dlemoal@kernel.org Signed-off-by: Jens Axboe <axboe@kernel.dk> Signed-off-by: Sasha Levin <sashal@kernel.org>
1 parent c4fa046 commit 165634c

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

drivers/block/null_blk/zoned.c

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,17 @@ int null_init_zoned_dev(struct nullb_device *dev,
8484
return -EINVAL;
8585
}
8686

87+
/*
88+
* If a smaller zone capacity was requested, do not allow a smaller last
89+
* zone at the same time as such zone configuration does not correspond
90+
* to any real zoned device.
91+
*/
92+
if (dev->zone_capacity != dev->zone_size &&
93+
dev->size & (dev->zone_size - 1)) {
94+
pr_err("A smaller last zone is not allowed with zone capacity smaller than zone size.\n");
95+
return -EINVAL;
96+
}
97+
8798
zone_capacity_sects = mb_to_sects(dev->zone_capacity);
8899
dev_capacity_sects = mb_to_sects(dev->size);
89100
dev->zone_size_sects = mb_to_sects(dev->zone_size);

0 commit comments

Comments
 (0)