]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
PCI: Fix faulty logic in pci_reset_bus()
authorDennis Dalessandro <dennis.dalessandro@intel.com>
Wed, 5 Sep 2018 16:08:03 +0000 (16:08 +0000)
committerBjorn Helgaas <bhelgaas@google.com>
Wed, 12 Sep 2018 02:44:52 +0000 (21:44 -0500)
The pci_reset_bus() function calls pci_probe_reset_slot() to determine
whether to call the slot or bus reset.  The check has faulty logic in that
it does not account for pci_probe_reset_slot() being able to return an
errno.  Fix by only calling the slot reset when the function returns 0.

Fixes: 811c5cb37df4 ("PCI: Unify try slot and bus reset API")
Signed-off-by: Dennis Dalessandro <dennis.dalessandro@intel.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
Cc: Sinan Kaya <okaya@codeaurora.org>
drivers/pci/pci.c

index 29ff9619b5fa8e3623778a696cd2b9d572801c43..30b260332a10f19209316e9f9201375d9a12a994 100644 (file)
@@ -5200,7 +5200,7 @@ static int __pci_reset_bus(struct pci_bus *bus)
  */
 int pci_reset_bus(struct pci_dev *pdev)
 {
-       return pci_probe_reset_slot(pdev->slot) ?
+       return (!pci_probe_reset_slot(pdev->slot)) ?
            __pci_reset_slot(pdev->slot) : __pci_reset_bus(pdev->bus);
 }
 EXPORT_SYMBOL_GPL(pci_reset_bus);