]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
ublk: remove redundant zone op check in ublk_setup_iod()
authorCaleb Sander Mateos <csander@purestorage.com>
Tue, 23 Sep 2025 15:52:48 +0000 (09:52 -0600)
committerJens Axboe <axboe@kernel.dk>
Wed, 24 Sep 2025 11:48:05 +0000 (05:48 -0600)
commitf85e254b51aeadf8dc367aaf2fbd2c20378f75c2
treef36db2ca4a29df3a6c24f81fbf1d11dccf1a2e22
parent7378b003e9e091b9ee69d0545a6468057e7dbc91
ublk: remove redundant zone op check in ublk_setup_iod()

ublk_setup_iod() checks first whether the request is a zoned operation
issued to a device without zoned support and returns BLK_STS_IOERR if
so. However, such a request would already hit the default case in the
subsequent switch statement and fail the ublk_queue_is_zoned() check,
which also results in a return of BLK_STS_IOERR. So remove the redundant
early check for unsupported zone ops.

Signed-off-by: Caleb Sander Mateos <csander@purestorage.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/block/ublk_drv.c