Commit 01aad3f0 authored by Alexander Gordeev's avatar Alexander Gordeev Committed by Jens Axboe

skd: Use pci_enable_msix_exact() instead of pci_enable_msix_range()

Function pci_enable_msix_exact() is a variation of
pci_enable_msix_range() that allows a device driver
to request a particular number of MSI-X interrupts,
rather than any number within a specified range.
Signed-off-by: default avatarAlexander Gordeev <agordeev@redhat.com>
Cc: Jens Axboe <axboe@kernel.dk>
Cc: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Cc: Kyungmin Park <kyungmin.park@samsung.com>
Cc: linux-pci@vger.kernel.org
Signed-off-by: default avatarJens Axboe <axboe@fb.com>
parent 49fd524f
...@@ -3944,15 +3944,14 @@ static int skd_acquire_msix(struct skd_device *skdev) ...@@ -3944,15 +3944,14 @@ static int skd_acquire_msix(struct skd_device *skdev)
for (i = 0; i < SKD_MAX_MSIX_COUNT; i++) for (i = 0; i < SKD_MAX_MSIX_COUNT; i++)
entries[i].entry = i; entries[i].entry = i;
rc = pci_enable_msix_range(pdev, entries, rc = pci_enable_msix_exact(pdev, entries, SKD_MAX_MSIX_COUNT);
SKD_MIN_MSIX_COUNT, SKD_MAX_MSIX_COUNT); if (rc) {
if (rc < 0) {
pr_err("(%s): failed to enable MSI-X %d\n", pr_err("(%s): failed to enable MSI-X %d\n",
skd_name(skdev), rc); skd_name(skdev), rc);
goto msix_out; goto msix_out;
} }
skdev->msix_count = rc; skdev->msix_count = SKD_MAX_MSIX_COUNT;
skdev->msix_entries = kzalloc(sizeof(struct skd_msix_entry) * skdev->msix_entries = kzalloc(sizeof(struct skd_msix_entry) *
skdev->msix_count, GFP_KERNEL); skdev->msix_count, GFP_KERNEL);
if (!skdev->msix_entries) { if (!skdev->msix_entries) {
......
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