NVMe: Fix admin IRQ claim on real hardware
authorMatthew Wilcox <matthew.r.wilcox@intel.com>
Thu, 20 Jan 2011 18:42:34 +0000 (13:42 -0500)
committerMatthew Wilcox <matthew.r.wilcox@intel.com>
Fri, 4 Nov 2011 19:52:51 +0000 (15:52 -0400)
The admin IRQ is supposed to use the pin-based (or single message MSI)
interrupt.  Accomplish this by filling in entry[0]'s vector with the
INTx irq number.

Signed-off-by: Matthew Wilcox <matthew.r.wilcox@intel.com>
drivers/block/nvme.c

index 3d917a8..44a9d5e 100644 (file)
@@ -979,6 +979,7 @@ static int __devinit nvme_probe(struct pci_dev *pdev,
        pci_set_drvdata(pdev, dev);
        dma_set_mask(&dev->pci_dev->dev, DMA_BIT_MASK(64));
        nvme_set_instance(dev);
+       dev->entry[0].vector = pdev->irq;
 
        dev->bar = ioremap(pci_resource_start(pdev, 0), 8192);
        if (!dev->bar) {