projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0406ad3
)
ACPI: processor: only evaluate _PDC once per processor
author
Alex Chiang
<
[email protected]
>
Wed, 20 Jan 2010 07:06:35 +0000
(
00:06
-0700)
committer
Len Brown
<
[email protected]
>
Fri, 22 Jan 2010 17:39:56 +0000
(12:39 -0500)
If we evaluate _PDC in the early path, we do not want to evaluate
it again when the processor driver is loaded.
Cc: Venkatesh Pallipadi <
[email protected]
>
Signed-off-by: Alex Chiang <
[email protected]
>
Signed-off-by: Len Brown <
[email protected]
>
drivers/acpi/processor_pdc.c
patch
|
blob
|
history
diff --git
a/drivers/acpi/processor_pdc.c
b/drivers/acpi/processor_pdc.c
index 3bbafe9576aecfcee2fbb311c69991dd415b6f5a..e306ba9aa34e6bd0c50a4311474e4855453884fb 100644
(file)
--- a/
drivers/acpi/processor_pdc.c
+++ b/
drivers/acpi/processor_pdc.c
@@
-125,6
+125,8
@@
acpi_processor_eval_pdc(acpi_handle handle, struct acpi_object_list *pdc_in)
return status;
}
+static int early_pdc_done;
+
void acpi_processor_set_pdc(acpi_handle handle)
{
struct acpi_object_list *obj_list;
@@
-132,6
+134,9
@@
void acpi_processor_set_pdc(acpi_handle handle)
if (arch_has_acpi_pdc() == false)
return;
+ if (early_pdc_done)
+ return;
+
obj_list = acpi_processor_alloc_pdc();
if (!obj_list)
return;
@@
-199,4
+204,6
@@
void __init acpi_early_processor_set_pdc(void)
acpi_walk_namespace(ACPI_TYPE_PROCESSOR, ACPI_ROOT_OBJECT,
ACPI_UINT32_MAX,
early_init_pdc, NULL, NULL, NULL);
+
+ early_pdc_done = 1;
}