summaryrefslogtreecommitdiffstats
path: root/drivers/pci/setup-bus.c
diff options
context:
space:
mode:
authorYinghai Lu2013-07-22 23:37:18 +0200
committerBjorn Helgaas2013-07-25 20:35:03 +0200
commit39772038ea93e85ea4f1307ec9c1f48a063d89a0 (patch)
tree310d32883c16365b532448a434a7b834f0d6404b /drivers/pci/setup-bus.c
parentPCI: Move resource reallocation code to non-__init (diff)
downloadkernel-qcow2-linux-39772038ea93e85ea4f1307ec9c1f48a063d89a0.tar.gz
kernel-qcow2-linux-39772038ea93e85ea4f1307ec9c1f48a063d89a0.tar.xz
kernel-qcow2-linux-39772038ea93e85ea4f1307ec9c1f48a063d89a0.zip
PCI: Assign resources for hot-added host bridge more aggressively
When hot-adding an ACPI host bridge, use pci_assign_unassigned_root_bus_resources() instead of pci_assign_unassigned_bus_resources(). The former is more aggressive and will release and reassign existing resources if necessary. This is safe at hot-add time because no drivers are bound to devices below the new host bridge yet. [bhelgaas: changelog, split __init changes out for reviewability] Signed-off-by: Yinghai Lu <yinghai@kernel.org> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/pci/setup-bus.c')
-rw-r--r--drivers/pci/setup-bus.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/setup-bus.c b/drivers/pci/setup-bus.c
index 8d1e654256a8..94b777d108bb 100644
--- a/drivers/pci/setup-bus.c
+++ b/drivers/pci/setup-bus.c
@@ -1395,7 +1395,7 @@ static enum enable_type pci_realloc_detect(struct pci_bus *bus,
* second and later try will clear small leaf bridge res
* will stop till to the max deepth if can not find good one
*/
-static void pci_assign_unassigned_root_bus_resources(struct pci_bus *bus)
+void pci_assign_unassigned_root_bus_resources(struct pci_bus *bus)
{
LIST_HEAD(realloc_head); /* list of resources that
want additional resources */