As result of recent re-design of the MSI/MSI-X interrupts enabling
pattern this driver has to be updated to use the new technique to
obtain a optimal number of MSI/MSI-X interrupts required.

Signed-off-by: Alexander Gordeev <agord...@redhat.com>
---
 drivers/misc/vmw_vmci/vmci_guest.c |   22 +++++++++++++++-------
 1 files changed, 15 insertions(+), 7 deletions(-)

diff --git a/drivers/misc/vmw_vmci/vmci_guest.c 
b/drivers/misc/vmw_vmci/vmci_guest.c
index b3a2b76..af5caf8 100644
--- a/drivers/misc/vmw_vmci/vmci_guest.c
+++ b/drivers/misc/vmw_vmci/vmci_guest.c
@@ -377,19 +377,27 @@ static int vmci_enable_msix(struct pci_dev *pdev,
 {
        int i;
        int result;
+       int nvec;
 
-       for (i = 0; i < VMCI_MAX_INTRS; ++i) {
+       result = pci_msix_table_size(pdev);
+       if (result < 0)
+               return result;
+
+       nvec = min(result, VMCI_MAX_INTRS);
+       if (nvec < VMCI_MAX_INTRS)
+               nvec = 1;
+
+       for (i = 0; i < nvec; ++i) {
                vmci_dev->msix_entries[i].entry = i;
                vmci_dev->msix_entries[i].vector = i;
        }
 
-       result = pci_enable_msix(pdev, vmci_dev->msix_entries, VMCI_MAX_INTRS);
-       if (result == 0)
-               vmci_dev->exclusive_vectors = true;
-       else if (result > 0)
-               result = pci_enable_msix(pdev, vmci_dev->msix_entries, 1);
+       result = pci_enable_msix(pdev, vmci_dev->msix_entries, nvec);
+       if (result)
+               return result;
 
-       return result;
+       vmci_dev->exclusive_vectors = true;
+       return 0;
 }
 
 /*
-- 
1.7.7.6

_______________________________________________
Linuxppc-dev mailing list
Linuxppc-dev@lists.ozlabs.org
https://lists.ozlabs.org/listinfo/linuxppc-dev

Reply via email to