From 858d0abdb890006af3eb81e53c438d69debf51b1 Mon Sep 17 00:00:00 2001 From: Christoph Hellwig Date: Tue, 4 Aug 2026 05:50:17 -0700 Subject: [PATCH] block: remove a dead return statement in blk_zone_plug_bio The switch at the end of blk_zone_plug_bio always returns, so remove the dead extra return statement after it. Signed-off-by: Christoph Hellwig Reviewed-by: Damien Le Moal Link: https://patch.msgid.link/20260804125038.740388-2-hch@lst.de Signed-off-by: Jens Axboe --- block/blk-zoned.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/block/blk-zoned.c b/block/blk-zoned.c index ca30caec838e..034af9dfb5f9 100644 --- a/block/blk-zoned.c +++ b/block/blk-zoned.c @@ -1651,8 +1651,6 @@ bool blk_zone_plug_bio(struct bio *bio, unsigned int nr_segs) default: return false; } - - return false; } EXPORT_SYMBOL_GPL(blk_zone_plug_bio);