]> www.infradead.org Git - nvme.git/commitdiff
nvme: replace blk_mq_pci_map_queues with blk_mq_map_hw_queues
authorDaniel Wagner <wagi@kernel.org>
Mon, 2 Dec 2024 14:00:14 +0000 (15:00 +0100)
committerJens Axboe <axboe@kernel.dk>
Mon, 23 Dec 2024 15:17:23 +0000 (08:17 -0700)
Replace all users of blk_mq_pci_map_queues with the more generic
blk_mq_map_hw_queues. This in preparation to retire
blk_mq_pci_map_queues.

Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Hannes Reinecke <hare@suse.de>
Reviewed-by: Ming Lei <ming.lei@redhat.com>
Reviewed-by: John Garry <john.g.garry@oracle.com>
Signed-off-by: Daniel Wagner <wagi@kernel.org>
Link: https://lore.kernel.org/r/20241202-refactor-blk-affinity-helpers-v6-6-27211e9c2cd5@kernel.org
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/nvme/host/fc.c
drivers/nvme/host/pci.c

index b81af7919e94c421387033bf8361a9cf8a867486..094be164ffdc0fb79050cfb92c32dfaee8d15622 100644 (file)
@@ -16,7 +16,6 @@
 #include <linux/nvme-fc.h>
 #include "fc.h"
 #include <scsi/scsi_transport_fc.h>
-#include <linux/blk-mq-pci.h>
 
 /* *************************** Data Structures/Defines ****************** */
 
index 1a5ba80f1811a3c5eed4de9a8dacfe2017f580f4..709328a67f915aede5c6bae956e1bdd5e6f3f1bc 100644 (file)
@@ -8,7 +8,6 @@
 #include <linux/async.h>
 #include <linux/blkdev.h>
 #include <linux/blk-mq.h>
-#include <linux/blk-mq-pci.h>
 #include <linux/blk-integrity.h>
 #include <linux/dmi.h>
 #include <linux/init.h>
@@ -463,7 +462,7 @@ static void nvme_pci_map_queues(struct blk_mq_tag_set *set)
                 */
                map->queue_offset = qoff;
                if (i != HCTX_TYPE_POLL && offset)
-                       blk_mq_pci_map_queues(map, to_pci_dev(dev->dev), offset);
+                       blk_mq_map_hw_queues(map, dev->dev, offset);
                else
                        blk_mq_map_queues(map);
                qoff += map->nr_queues;