aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/hotplug/acpiphp_glue.c
diff options
context:
space:
mode:
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>2013-09-06 09:41:32 -0400
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2013-09-06 21:43:35 -0400
commit2dc41281b1d1178befe4b76adf817570a7f45ec1 (patch)
treec580ce223a214fde6972bdb5b9778f7e72c72258 /drivers/pci/hotplug/acpiphp_glue.c
parent89ec2f2ee104970329139e6526a075113c92f650 (diff)
ACPI / hotplug / PCI: Avoid doing too much for spurious notifies
Sometimes we may get a spurious device check or bus check notify for a hotplug device and in those cases we should avoid doing all of the configuration work needed when something actually changes. To that end, check the return value of pci_scan_slot() in enable_slot() and bail out early if it is 0. This turns out to help reduce the amount of diagnostic output from the ACPIPHP subsystem and speed up boot on at least one system that generates multiple device check notifies for PCIe devices on the root bus during boot. Reported-and-tested-by: Alex Williamson <alex.williamson@redhat.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/pci/hotplug/acpiphp_glue.c')
-rw-r--r--drivers/pci/hotplug/acpiphp_glue.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/drivers/pci/hotplug/acpiphp_glue.c b/drivers/pci/hotplug/acpiphp_glue.c
index 3f78212f4eee..65290226e5dd 100644
--- a/drivers/pci/hotplug/acpiphp_glue.c
+++ b/drivers/pci/hotplug/acpiphp_glue.c
@@ -542,12 +542,12 @@ static void __ref enable_slot(struct acpiphp_slot *slot)
542 struct acpiphp_func *func; 542 struct acpiphp_func *func;
543 int max, pass; 543 int max, pass;
544 LIST_HEAD(add_list); 544 LIST_HEAD(add_list);
545 int nr_found;
545 546
546 list_for_each_entry(func, &slot->funcs, sibling) 547 list_for_each_entry(func, &slot->funcs, sibling)
547 acpiphp_bus_add(func_to_handle(func)); 548 acpiphp_bus_add(func_to_handle(func));
548 549
549 pci_scan_slot(bus, PCI_DEVFN(slot->device, 0)); 550 nr_found = pci_scan_slot(bus, PCI_DEVFN(slot->device, 0));
550
551 max = acpiphp_max_busnr(bus); 551 max = acpiphp_max_busnr(bus);
552 for (pass = 0; pass < 2; pass++) { 552 for (pass = 0; pass < 2; pass++) {
553 list_for_each_entry(dev, &bus->devices, bus_list) { 553 list_for_each_entry(dev, &bus->devices, bus_list) {
@@ -566,8 +566,11 @@ static void __ref enable_slot(struct acpiphp_slot *slot)
566 } 566 }
567 } 567 }
568 } 568 }
569
570 __pci_bus_assign_resources(bus, &add_list, NULL); 569 __pci_bus_assign_resources(bus, &add_list, NULL);
570 /* Nothing more to do here if there are no new devices on this bus. */
571 if (!nr_found && (slot->flags & SLOT_ENABLED))
572 return;
573
571 acpiphp_sanitize_bus(bus); 574 acpiphp_sanitize_bus(bus);
572 acpiphp_set_hpp_values(bus); 575 acpiphp_set_hpp_values(bus);
573 acpiphp_set_acpi_region(slot); 576 acpiphp_set_acpi_region(slot);