Commit 77733513 authored by Alexander Gordeev's avatar Alexander Gordeev Committed by Jon Mason

ntb: Use pci_msix_vec_count() to obtain number of MSI-Xs

Signed-off-by: default avatarAlexander Gordeev <agordeev@redhat.com>
Signed-off-by: default avatarJon Mason <jon.mason@intel.com>
parent 53ca4fea
...@@ -1086,19 +1086,12 @@ static int ntb_setup_msix(struct ntb_device *ndev) ...@@ -1086,19 +1086,12 @@ static int ntb_setup_msix(struct ntb_device *ndev)
struct msix_entry *msix; struct msix_entry *msix;
int msix_entries; int msix_entries;
int rc, i; int rc, i;
u16 val;
if (!pdev->msix_cap) { msix_entries = pci_msix_vec_count(pdev);
rc = -EIO; if (msix_entries < 0) {
goto err; rc = msix_entries;
}
rc = pci_read_config_word(pdev, pdev->msix_cap + PCI_MSIX_FLAGS, &val);
if (rc)
goto err; goto err;
} else if (msix_entries > ndev->limits.msix_cnt) {
msix_entries = msix_table_size(val);
if (msix_entries > ndev->limits.msix_cnt) {
rc = -EINVAL; rc = -EINVAL;
goto err; goto err;
} }
......
...@@ -61,8 +61,6 @@ ...@@ -61,8 +61,6 @@
#define PCI_DEVICE_ID_INTEL_NTB_SS_HSX 0x2F0F #define PCI_DEVICE_ID_INTEL_NTB_SS_HSX 0x2F0F
#define PCI_DEVICE_ID_INTEL_NTB_B2B_BWD 0x0C4E #define PCI_DEVICE_ID_INTEL_NTB_B2B_BWD 0x0C4E
#define msix_table_size(control) ((control & PCI_MSIX_FLAGS_QSIZE)+1)
#ifndef readq #ifndef readq
static inline u64 readq(void __iomem *addr) static inline u64 readq(void __iomem *addr)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment