]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
block: Clear zone limits for a non-zoned stacked queue
authorDamien Le Moal <dlemoal@kernel.org>
Thu, 22 Feb 2024 13:17:23 +0000 (22:17 +0900)
committerJens Axboe <axboe@kernel.dk>
Thu, 22 Feb 2024 17:35:18 +0000 (10:35 -0700)
Device mapper may create a non-zoned mapped device out of a zoned device
(e.g., the dm-zoned target). In such case, some queue limit such as the
max_zone_append_sectors and zone_write_granularity endup being non zero
values for a block device that is not zoned. Avoid this by clearing
these limits in blk_stack_limits() when the stacked zoned limit is
false.

Fixes: 3093a479727b ("block: inherit the zoned characteristics in blk_stack_limits")
Cc: stable@vger.kernel.org
Signed-off-by: Damien Le Moal <dlemoal@kernel.org>
Link: https://lore.kernel.org/r/20240222131724.1803520-1-dlemoal@kernel.org
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/blk-settings.c

index 2120b6f9fef8eac32c4bd301f1bc1a1ca5ba6f1e..b6bbe683d218faa8d80875afe2466074911c1ff0 100644 (file)
@@ -865,6 +865,10 @@ int blk_stack_limits(struct queue_limits *t, struct queue_limits *b,
        t->zone_write_granularity = max(t->zone_write_granularity,
                                        b->zone_write_granularity);
        t->zoned = max(t->zoned, b->zoned);
+       if (!t->zoned) {
+               t->zone_write_granularity = 0;
+               t->max_zone_append_sectors = 0;
+       }
        return ret;
 }
 EXPORT_SYMBOL(blk_stack_limits);