]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
blk-mq: unconditional nr_integrity_segments
authorKeith Busch <kbusch@kernel.org>
Fri, 13 Sep 2024 18:28:46 +0000 (11:28 -0700)
committerJens Axboe <axboe@kernel.dk>
Fri, 13 Sep 2024 18:31:45 +0000 (12:31 -0600)
Always defining the field will make using it easier and less error prone
in future patches.

There shouldn't be any downside to this: the field fits in what would
otherwise be a 2-byte hole, so we're not saving space by conditionally
leaving it out.

Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Martin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: Keith Busch <kbusch@kernel.org>
Link: https://lore.kernel.org/r/20240913182854.2445457-2-kbusch@meta.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/blk-mq.c
include/linux/blk-mq.h

index 3f1f7d0b3ff35ec0a6a61192dc317fe0fbec2c55..ef3a2ed499563e9ea9cb784e4ca1372bb22173d9 100644 (file)
@@ -376,9 +376,7 @@ static struct request *blk_mq_rq_ctx_init(struct blk_mq_alloc_data *data,
        rq->io_start_time_ns = 0;
        rq->stats_sectors = 0;
        rq->nr_phys_segments = 0;
-#if defined(CONFIG_BLK_DEV_INTEGRITY)
        rq->nr_integrity_segments = 0;
-#endif
        rq->end_io = NULL;
        rq->end_io_data = NULL;
 
index 8d304b1d16b15aeac3024be1d6babd2cb4f75c2b..4fecf46ef681b357d83e7c64433e1035269fb50c 100644 (file)
@@ -149,10 +149,7 @@ struct request {
         * physical address coalescing is performed.
         */
        unsigned short nr_phys_segments;
-
-#ifdef CONFIG_BLK_DEV_INTEGRITY
        unsigned short nr_integrity_segments;
-#endif
 
 #ifdef CONFIG_BLK_INLINE_ENCRYPTION
        struct bio_crypt_ctx *crypt_ctx;