Skip to content

Commit 162b83b

Browse files
ruiwang1Ingo Molnar
authored andcommitted
x86/ioapic: Fix lost IOAPIC resource after hot-removal and hotadd
IOAPIC resource at 0xfecxxxxx gets lost from /proc/iomem after hot-removing and then hot-adding the IOAPIC device. After system boot, in /proc/iomem: fec00000-fecfffff : PNP0003:00 fec00000-fec003ff : IOAPIC 0 fec01000-fec013ff : IOAPIC 1 fec40000-fec403ff : IOAPIC 2 fec80000-fec803ff : IOAPIC 3 fecc0000-fecc03ff : IOAPIC 4 Then hot-remove IOAPIC 2 and hot-add it again: fec00000-fecfffff : PNP0003:00 fec00000-fec003ff : IOAPIC 0 fec01000-fec013ff : IOAPIC 1 fec80000-fec803ff : IOAPIC 3 fecc0000-fecc03ff : IOAPIC 4 The range at 0xfec40000 is lost from /proc/iomem - which is a bug. This bug happens because handle_ioapic_add() requests resources from either PCI config BAR or ACPI "_CRS", not both. But Intel platforms map the IOxAPIC registers both at the PCI config BAR (called MBAR, dynamic), and at the ACPI "_CRS" (called ABAR, static). The 0xfecX_YZ00 to 0xfecX_YZFF range appears in "_CRS" of each IOAPIC device. Both ranges should be claimed from /proc/iomem for exclusive use. Signed-off-by: Rui Wang <[email protected]> Cc: Linus Torvalds <[email protected]> Cc: Peter Zijlstra <[email protected]> Cc: Thomas Gleixner <[email protected]> Cc: [email protected] Cc: [email protected] Cc: [email protected] Cc: [email protected] Cc: [email protected] Cc: [email protected] Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Ingo Molnar <[email protected]>
1 parent 6ab7eba commit 162b83b

File tree

1 file changed

+20
-16
lines changed

1 file changed

+20
-16
lines changed

drivers/acpi/ioapic.c

Lines changed: 20 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ static acpi_status handle_ioapic_add(acpi_handle handle, u32 lvl,
9797
unsigned long long gsi_base;
9898
struct acpi_pci_ioapic *ioapic;
9999
struct pci_dev *dev = NULL;
100-
struct resource *res = NULL;
100+
struct resource *res = NULL, *pci_res = NULL, *crs_res;
101101
char *type = NULL;
102102

103103
if (!acpi_is_ioapic(handle, &type))
@@ -137,23 +137,28 @@ static acpi_status handle_ioapic_add(acpi_handle handle, u32 lvl,
137137
pci_set_master(dev);
138138
if (pci_request_region(dev, 0, type))
139139
goto exit_disable;
140-
res = &dev->resource[0];
140+
pci_res = &dev->resource[0];
141141
ioapic->pdev = dev;
142142
} else {
143143
pci_dev_put(dev);
144144
dev = NULL;
145+
}
145146

146-
res = &ioapic->res;
147-
acpi_walk_resources(handle, METHOD_NAME__CRS, setup_res, res);
148-
if (res->flags == 0) {
149-
acpi_handle_warn(handle, "failed to get resource\n");
150-
goto exit_free;
151-
} else if (request_resource(&iomem_resource, res)) {
152-
acpi_handle_warn(handle, "failed to insert resource\n");
153-
goto exit_free;
154-
}
147+
crs_res = &ioapic->res;
148+
acpi_walk_resources(handle, METHOD_NAME__CRS, setup_res, crs_res);
149+
if (crs_res->flags == 0) {
150+
acpi_handle_warn(handle, "failed to get resource\n");
151+
goto exit_release;
152+
} else if (request_resource(&iomem_resource, crs_res)) {
153+
acpi_handle_warn(handle, "failed to insert resource\n");
154+
goto exit_release;
155155
}
156156

157+
/* try pci resource first, then "_CRS" resource */
158+
res = pci_res;
159+
if (!res || !res->flags)
160+
res = crs_res;
161+
157162
if (acpi_register_ioapic(handle, res->start, (u32)gsi_base)) {
158163
acpi_handle_warn(handle, "failed to register IOAPIC\n");
159164
goto exit_release;
@@ -174,14 +179,13 @@ static acpi_status handle_ioapic_add(acpi_handle handle, u32 lvl,
174179
exit_release:
175180
if (dev)
176181
pci_release_region(dev, 0);
177-
else
178-
release_resource(res);
182+
if (ioapic->res.flags && ioapic->res.parent)
183+
release_resource(&ioapic->res);
179184
exit_disable:
180185
if (dev)
181186
pci_disable_device(dev);
182187
exit_put:
183188
pci_dev_put(dev);
184-
exit_free:
185189
kfree(ioapic);
186190
exit:
187191
mutex_unlock(&ioapic_list_lock);
@@ -217,9 +221,9 @@ int acpi_ioapic_remove(struct acpi_pci_root *root)
217221
pci_release_region(ioapic->pdev, 0);
218222
pci_disable_device(ioapic->pdev);
219223
pci_dev_put(ioapic->pdev);
220-
} else if (ioapic->res.flags && ioapic->res.parent) {
221-
release_resource(&ioapic->res);
222224
}
225+
if (ioapic->res.flags && ioapic->res.parent)
226+
release_resource(&ioapic->res);
223227
list_del(&ioapic->list);
224228
kfree(ioapic);
225229
}

0 commit comments

Comments
 (0)