summaryrefslogtreecommitdiffstats
path: root/drivers/pci/setup-bus.c
diff options
context:
space:
mode:
authorRajesh Shah2005-04-28 09:25:50 +0200
committerGreg Kroah-Hartman2005-06-28 06:52:41 +0200
commit542df5de56a23bf2d94b75e2b304ab0e5a5508a8 (patch)
tree6e9861262c3fb9cfa72a385ea8db5372c086e35b /drivers/pci/setup-bus.c
parent[PATCH] acpi bridge hotadd: Make the PCI remove routines safe for failed hot-... (diff)
downloadkernel-qcow2-linux-542df5de56a23bf2d94b75e2b304ab0e5a5508a8.tar.gz
kernel-qcow2-linux-542df5de56a23bf2d94b75e2b304ab0e5a5508a8.tar.xz
kernel-qcow2-linux-542df5de56a23bf2d94b75e2b304ab0e5a5508a8.zip
[PATCH] acpi bridge hotadd: Remove hot-plugged devices that could not be allocated resources
When hot-plugging an I/O hierarchy that contains many bridges and leaf devices, it's possible that there are not enough resources to start all the device present. If we fail to assign a resource, clear the corresponding value in the pci_dev structure, so other code can take corrective action. Signed-off-by: Rajesh Shah <rajesh.shah@intel.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/pci/setup-bus.c')
-rw-r--r--drivers/pci/setup-bus.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/pci/setup-bus.c b/drivers/pci/setup-bus.c
index 1ba84be0b4c0..6b628de948af 100644
--- a/drivers/pci/setup-bus.c
+++ b/drivers/pci/setup-bus.c
@@ -72,7 +72,10 @@ pbus_assign_resources_sorted(struct pci_bus *bus)
for (list = head.next; list;) {
res = list->res;
idx = res - &list->dev->resource[0];
- pci_assign_resource(list->dev, idx);
+ if (pci_assign_resource(list->dev, idx)) {
+ res->start = 0;
+ res->flags = 0;
+ }
tmp = list;
list = list->next;
kfree(tmp);