Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1592057 > unrolled thread

[PATCH] vmw_vmci: handle the return value from pci_alloc_irq_vectors correctly

Started byChristoph Hellwig <hch@lst.de>
First post2017-03-03 16:30 +0100
Last post2017-03-03 16:30 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] vmw_vmci: handle the return value from pci_alloc_irq_vectors correctly Christoph Hellwig <hch@lst.de> - 2017-03-03 16:30 +0100

#1592057 — [PATCH] vmw_vmci: handle the return value from pci_alloc_irq_vectors correctly

FromChristoph Hellwig <hch@lst.de>
Date2017-03-03 16:30 +0100
Subject[PATCH] vmw_vmci: handle the return value from pci_alloc_irq_vectors correctly
Message-ID<tgXjB-35T-39@gated-at.bofh.it>
It returns the number of vectors allocated when successful, so check for
a negative error only.

Fixes: 3bb434cd ("vmw_vmci: switch to pci_irq_alloc_vectors")
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reported-by: Loïc Yhuel <loic.yhuel@gmail.com>
---
 drivers/misc/vmw_vmci/vmci_guest.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/misc/vmw_vmci/vmci_guest.c b/drivers/misc/vmw_vmci/vmci_guest.c
index 9d659542a335..dad5abee656e 100644
--- a/drivers/misc/vmw_vmci/vmci_guest.c
+++ b/drivers/misc/vmw_vmci/vmci_guest.c
@@ -566,10 +566,10 @@ static int vmci_guest_probe_device(struct pci_dev *pdev,
 	 */
 	error = pci_alloc_irq_vectors(pdev, VMCI_MAX_INTRS, VMCI_MAX_INTRS,
 			PCI_IRQ_MSIX);
-	if (error) {
+	if (error < 0) {
 		error = pci_alloc_irq_vectors(pdev, 1, 1,
 				PCI_IRQ_MSIX | PCI_IRQ_MSI | PCI_IRQ_LEGACY);
-		if (error)
+		if (error < 0)
 			goto err_remove_bitmap;
 	} else {
 		vmci_dev->exclusive_vectors = true;
-- 
2.11.0

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web