summaryrefslogtreecommitdiffstats
path: root/include/linux/blk-mq-pci.h
diff options
context:
space:
mode:
authorKeith Busch2018-03-27 17:39:06 +0200
committerJens Axboe2018-03-28 05:25:36 +0200
commitf23f5bece686a76598335141a091934f7eb0998c (patch)
treed523d0195bb2955637e5d607332029e7476b3e02 /include/linux/blk-mq-pci.h
parentloop: use killable lock in ioctls (diff)
downloadkernel-qcow2-linux-f23f5bece686a76598335141a091934f7eb0998c.tar.gz
kernel-qcow2-linux-f23f5bece686a76598335141a091934f7eb0998c.tar.xz
kernel-qcow2-linux-f23f5bece686a76598335141a091934f7eb0998c.zip
blk-mq: Allow PCI vector offset for mapping queues
The PCI interrupt vectors intended to be associated with a queue may not start at 0; a driver may allocate pre_vectors for special use. This patch adds an offset parameter so blk-mq may find the intended affinity mask and updates all drivers using this API accordingly. Cc: Don Brace <don.brace@microsemi.com> Cc: <qla2xxx-upstream@qlogic.com> Cc: <linux-scsi@vger.kernel.org> Signed-off-by: Keith Busch <keith.busch@intel.com> Reviewed-by: Ming Lei <ming.lei@redhat.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'include/linux/blk-mq-pci.h')
-rw-r--r--include/linux/blk-mq-pci.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/blk-mq-pci.h b/include/linux/blk-mq-pci.h
index 6338551e0fb9..9f4c17f0d2d8 100644
--- a/include/linux/blk-mq-pci.h
+++ b/include/linux/blk-mq-pci.h
@@ -5,6 +5,7 @@
struct blk_mq_tag_set;
struct pci_dev;
-int blk_mq_pci_map_queues(struct blk_mq_tag_set *set, struct pci_dev *pdev);
+int blk_mq_pci_map_queues(struct blk_mq_tag_set *set, struct pci_dev *pdev,
+ int offset);
#endif /* _LINUX_BLK_MQ_PCI_H */