]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
PCI: Avoid slot reset if bridge itself is broken
authorJan Glauber <jglauber@cavium.com>
Fri, 8 Sep 2017 08:10:33 +0000 (10:10 +0200)
committerBjorn Helgaas <bhelgaas@google.com>
Wed, 11 Oct 2017 18:29:09 +0000 (13:29 -0500)
When checking to see if a PCI slot can safely be reset, we previously
checked to see if any of the children had their PCI_DEV_FLAGS_NO_BUS_RESET
flag set.

Some PCIe root port bridges do not behave well after a slot reset, and may
cause the device in the slot to become unusable.

Add a check for PCI_DEV_FLAGS_NO_BUS_RESET being set in the bridge device
to prevent the slot from being reset.

Signed-off-by: Jan Glauber <jglauber@cavium.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Alex Williamson <alex.williamson@redhat.com>
drivers/pci/pci.c

index 74f1c57ab93b609d29f6b4c5cd1405dd4f9f9036..3e0557bb02c8a43fad16815effb06883d225115c 100644 (file)
@@ -4424,6 +4424,10 @@ static bool pci_slot_resetable(struct pci_slot *slot)
 {
        struct pci_dev *dev;
 
+       if (slot->bus->self &&
+           (slot->bus->self->dev_flags & PCI_DEV_FLAGS_NO_BUS_RESET))
+               return false;
+
        list_for_each_entry(dev, &slot->bus->devices, bus_list) {
                if (!dev->slot || dev->slot != slot)
                        continue;