block: optimize blk_queue_zoned_model for !CONFIG_BLK_DEV_ZONED
authorChristoph Hellwig <hch@lst.de>
Thu, 20 Aug 2020 07:56:58 +0000 (09:56 +0200)
committerChristoph Hellwig <hch@lst.de>
Wed, 7 Oct 2020 05:56:17 +0000 (07:56 +0200)
Always return BLK_ZONED_NONE if zoned device support is not enabled.
This allows various compiler optimizations including the dead code
elimination that we so like for avoiding ifdefs.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Keith Busch <kbusch@kernel.org>
Reviewed-by: Sagi Grimberg <sagi@grimberg.me>
Reviewed-by: Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
Reviewed-by: Damien Le Moal <damien.lemoal@wdc.com>
include/linux/blkdev.h

index 8e77f12..1b81b27 100644 (file)
@@ -692,7 +692,9 @@ static inline bool queue_is_mq(struct request_queue *q)
 static inline enum blk_zoned_model
 blk_queue_zoned_model(struct request_queue *q)
 {
-       return q->limits.zoned;
+       if (IS_ENABLED(CONFIG_BLK_DEV_ZONED))
+               return q->limits.zoned;
+       return BLK_ZONED_NONE;
 }
 
 static inline bool blk_queue_is_zoned(struct request_queue *q)