Skip to content

Commit

Permalink
vfio-pci: Use cached MSI/MSI-X capabilities
Browse files Browse the repository at this point in the history
We now cache the MSI/MSI-X capability offsets in the struct pci_dev,
so no need to find the capabilities again.

Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by: Alex Williamson <alex.williamson@redhat.com>
  • Loading branch information
Bjorn Helgaas committed Apr 24, 2013
1 parent 508d1aa commit a9047f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/vfio/pci/vfio_pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ static int vfio_pci_enable(struct vfio_pci_device *vdev)
pci_write_config_word(pdev, PCI_COMMAND, cmd);
}

msix_pos = pci_find_capability(pdev, PCI_CAP_ID_MSIX);
msix_pos = pdev->msix_cap;
if (msix_pos) {
u16 flags;
u32 table;
Expand Down Expand Up @@ -183,7 +183,7 @@ static int vfio_pci_get_irq_count(struct vfio_pci_device *vdev, int irq_type)
u8 pos;
u16 flags;

pos = pci_find_capability(vdev->pdev, PCI_CAP_ID_MSI);
pos = vdev->pdev->msi_cap;
if (pos) {
pci_read_config_word(vdev->pdev,
pos + PCI_MSI_FLAGS, &flags);
Expand All @@ -194,7 +194,7 @@ static int vfio_pci_get_irq_count(struct vfio_pci_device *vdev, int irq_type)
u8 pos;
u16 flags;

pos = pci_find_capability(vdev->pdev, PCI_CAP_ID_MSIX);
pos = vdev->pdev->msix_cap;
if (pos) {
pci_read_config_word(vdev->pdev,
pos + PCI_MSIX_FLAGS, &flags);
Expand Down

0 comments on commit a9047f2

Please sign in to comment.