Skip to content

Commit

Permalink
Merge branch 'acpi-pci-hotplug'
Browse files Browse the repository at this point in the history
* acpi-pci-hotplug:
  ACPI / hotplug / PCI: Drop WARN_ON() from acpiphp_enumerate_slots()
  ACPI / hotplug / PCI: Fix error code path in acpiphp_enumerate_slots()
  • Loading branch information
Rafael J. Wysocki committed Oct 12, 2013
2 parents aaf3d29 + fd3cfeb commit 2c5bfce
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions drivers/pci/hotplug/acpiphp_glue.c
Original file line number Diff line number Diff line change
Expand Up @@ -994,14 +994,16 @@ void acpiphp_enumerate_slots(struct pci_bus *bus)

/*
* This bridge should have been registered as a hotplug function
* under its parent, so the context has to be there. If not, we
* are in deep goo.
* under its parent, so the context should be there, unless the
* parent is going to be handled by pciehp, in which case this
* bridge is not interesting to us either.
*/
mutex_lock(&acpiphp_context_lock);
context = acpiphp_get_context(handle);
if (WARN_ON(!context)) {
if (!context) {
mutex_unlock(&acpiphp_context_lock);
put_device(&bus->dev);
pci_dev_put(bridge->pci_dev);
kfree(bridge);
return;
}
Expand Down

0 comments on commit 2c5bfce

Please sign in to comment.