提交 16071a07 编写于 作者: L Len Brown

Pull 5452 into release branch

...@@ -543,6 +543,8 @@ static int acpi_processor_get_info(struct acpi_processor *pr) ...@@ -543,6 +543,8 @@ static int acpi_processor_get_info(struct acpi_processor *pr)
return_VALUE(0); return_VALUE(0);
} }
static void *processor_device_array[NR_CPUS];
static int acpi_processor_start(struct acpi_device *device) static int acpi_processor_start(struct acpi_device *device)
{ {
int result = 0; int result = 0;
...@@ -561,6 +563,19 @@ static int acpi_processor_start(struct acpi_device *device) ...@@ -561,6 +563,19 @@ static int acpi_processor_start(struct acpi_device *device)
BUG_ON((pr->id >= NR_CPUS) || (pr->id < 0)); BUG_ON((pr->id >= NR_CPUS) || (pr->id < 0));
/*
* Buggy BIOS check
* ACPI id of processors can be reported wrongly by the BIOS.
* Don't trust it blindly
*/
if (processor_device_array[pr->id] != NULL &&
processor_device_array[pr->id] != (void *)device) {
ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "BIOS reporting wrong ACPI id"
"for the processor\n"));
return_VALUE(-ENODEV);
}
processor_device_array[pr->id] = (void *)device;
processors[pr->id] = pr; processors[pr->id] = pr;
result = acpi_processor_add_fs(device); result = acpi_processor_add_fs(device);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册