Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d8a52810 authored by Dennis Dalessandro's avatar Dennis Dalessandro Committed by Bjorn Helgaas
Browse files

PCI: Fix faulty logic in pci_reset_bus()



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: 811c5cb3 ("PCI: Unify try slot and bus reset API")
Signed-off-by: default avatarDennis Dalessandro <dennis.dalessandro@intel.com>
Signed-off-by: default avatarBjorn Helgaas <bhelgaas@google.com>
Reviewed-by: default avatarMichael J. Ruhl <michael.j.ruhl@intel.com>
Cc: Sinan Kaya <okaya@codeaurora.org>
parent 34fb6bf9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);