]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
blk-zoned: Fix a typo in a source code comment
authorBart Van Assche <bvanassche@acm.org>
Tue, 11 Nov 2025 23:29:00 +0000 (15:29 -0800)
committerJens Axboe <axboe@kernel.dk>
Wed, 12 Nov 2025 21:05:23 +0000 (14:05 -0700)
Remove a superfluous parenthesis that was introduced by commit fa8555630b32
("blk-zoned: Improve the queue reference count strategy documentation").

Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com>
Reviewed-by: Damien Le Moal <dlemoal@kernel.org>
Cc: Christoph Hellwig <hch@lst.de>
Signed-off-by: Bart Van Assche <bvanassche@acm.org>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/blk-zoned.c

index 3791755bc6ad497decc6b0811ccc9343c5d6c054..57ab2b365c2d0075bfab456e1c45f8b2106eb7e8 100644 (file)
@@ -730,7 +730,7 @@ static inline void blk_zone_wplug_bio_io_error(struct blk_zone_wplug *zwplug,
        bio_clear_flag(bio, BIO_ZONE_WRITE_PLUGGING);
        bio_io_error(bio);
        disk_put_zone_wplug(zwplug);
-       /* Drop the reference taken by disk_zone_wplug_add_bio(() */
+       /* Drop the reference taken by disk_zone_wplug_add_bio(). */
        blk_queue_exit(q);
 }