]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
block: make REQ_OP_ZONE_OPEN a write operation
authorDamien Le Moal <dlemoal@kernel.org>
Mon, 27 Oct 2025 00:27:33 +0000 (09:27 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 13 Nov 2025 20:33:59 +0000 (15:33 -0500)
commit 19de03b312d69a7e9bacb51c806c6e3f4207376c upstream.

A REQ_OP_OPEN_ZONE request changes the condition of a sequential zone of
a zoned block device to the explicitly open condition
(BLK_ZONE_COND_EXP_OPEN). As such, it should be considered a write
operation.

Change this operation code to be an odd number to reflect this. The
following operation numbers are changed to keep the numbering compact.

No problems were reported without this change as this operation has no
data. However, this unifies the zone operation to reflect that they
modify the device state and also allows strengthening checks in the
block layer, e.g. checking if this operation is not issued against a
read-only device.

Fixes: 6c1b1da58f8c ("block: add zone open, close and finish operations")
Cc: stable@vger.kernel.org
Signed-off-by: Damien Le Moal <dlemoal@kernel.org>
Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
include/linux/blk_types.h

index 4d91f5aa26b2a7eb483df28753b24e5e551ec41e..ce395ea451a257de0fe883135bb0932ba4d8802c 100644 (file)
@@ -338,15 +338,15 @@ enum req_op {
        /* write the zero filled sector many times */
        REQ_OP_WRITE_ZEROES     = (__force blk_opf_t)9,
        /* Open a zone */
-       REQ_OP_ZONE_OPEN        = (__force blk_opf_t)10,
+       REQ_OP_ZONE_OPEN        = (__force blk_opf_t)11,
        /* Close a zone */
-       REQ_OP_ZONE_CLOSE       = (__force blk_opf_t)11,
+       REQ_OP_ZONE_CLOSE       = (__force blk_opf_t)13,
        /* Transition a zone to full */
-       REQ_OP_ZONE_FINISH      = (__force blk_opf_t)13,
+       REQ_OP_ZONE_FINISH      = (__force blk_opf_t)15,
        /* reset a zone write pointer */
-       REQ_OP_ZONE_RESET       = (__force blk_opf_t)15,
+       REQ_OP_ZONE_RESET       = (__force blk_opf_t)17,
        /* reset all the zone present on the device */
-       REQ_OP_ZONE_RESET_ALL   = (__force blk_opf_t)17,
+       REQ_OP_ZONE_RESET_ALL   = (__force blk_opf_t)19,
 
        /* Driver private requests */
        REQ_OP_DRV_IN           = (__force blk_opf_t)34,