ACPI: processor: change acpi_processor_set_pdc() interface
authorAlex Chiang <achiang@hp.com>
Sun, 20 Dec 2009 19:23:16 +0000 (12:23 -0700)
committerLen Brown <len.brown@intel.com>
Tue, 22 Dec 2009 08:33:58 +0000 (03:33 -0500)
When calling _PDC, we really only need the handle to the processor
to call the method; we don't look at any other parts of the
struct acpi_processor * given to us.

In the early path, when we walk the namespace, we are given the
handle directly, so just pass it through to acpi_processor_set_pdc()
without stuffing it into a wasteful struct acpi_processor allocated
on the stack each time

This saves 2834 bytes of stack.

Update the interface accordingly.

Signed-off-by: Alex Chiang <achiang@hp.com>
Signed-off-by: Len Brown <len.brown@intel.com>
drivers/acpi/processor_core.c
drivers/acpi/processor_pdc.c
include/acpi/processor.h

index a19a4ff..9863c98 100644 (file)
@@ -763,7 +763,7 @@ static int __cpuinit acpi_processor_add(struct acpi_device *device)
        }
 
        /* _PDC call should be done before doing anything else (if reqd.). */
-       acpi_processor_set_pdc(pr);
+       acpi_processor_set_pdc(pr->handle);
 
 #ifdef CONFIG_CPU_FREQ
        acpi_processor_ppc_has_changed(pr, 0);
Simple merge
Simple merge