diff options
author | Alex Chiang <achiang@hp.com> | 2009-12-20 14:23:16 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2009-12-22 03:33:58 -0500 |
commit | 43bab25ced218385f7e6a076c2459ea008cfd2e1 (patch) | |
tree | 21397c7ff505b58b5d9351da7b6b9628049026ee /drivers/acpi/processor_pdc.c | |
parent | b9c2db783456bcbce31e2482214cd337528db295 (diff) |
ACPI: processor: change acpi_processor_set_pdc() interface
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>
Diffstat (limited to 'drivers/acpi/processor_pdc.c')
-rw-r--r-- | drivers/acpi/processor_pdc.c | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/drivers/acpi/processor_pdc.c b/drivers/acpi/processor_pdc.c index deeba22c932c..30e4dc0cdf30 100644 --- a/drivers/acpi/processor_pdc.c +++ b/drivers/acpi/processor_pdc.c | |||
@@ -125,7 +125,7 @@ acpi_processor_eval_pdc(acpi_handle handle, struct acpi_object_list *pdc_in) | |||
125 | return status; | 125 | return status; |
126 | } | 126 | } |
127 | 127 | ||
128 | void acpi_processor_set_pdc(struct acpi_processor *pr) | 128 | void acpi_processor_set_pdc(acpi_handle handle) |
129 | { | 129 | { |
130 | struct acpi_object_list *obj_list; | 130 | struct acpi_object_list *obj_list; |
131 | 131 | ||
@@ -136,7 +136,7 @@ void acpi_processor_set_pdc(struct acpi_processor *pr) | |||
136 | if (!obj_list) | 136 | if (!obj_list) |
137 | return; | 137 | return; |
138 | 138 | ||
139 | acpi_processor_eval_pdc(pr->handle, obj_list); | 139 | acpi_processor_eval_pdc(handle, obj_list); |
140 | 140 | ||
141 | kfree(obj_list->pointer->buffer.pointer); | 141 | kfree(obj_list->pointer->buffer.pointer); |
142 | kfree(obj_list->pointer); | 142 | kfree(obj_list->pointer); |
@@ -147,19 +147,7 @@ EXPORT_SYMBOL_GPL(acpi_processor_set_pdc); | |||
147 | static acpi_status | 147 | static acpi_status |
148 | early_init_pdc(acpi_handle handle, u32 lvl, void *context, void **rv) | 148 | early_init_pdc(acpi_handle handle, u32 lvl, void *context, void **rv) |
149 | { | 149 | { |
150 | struct acpi_processor pr; | 150 | acpi_processor_set_pdc(handle); |
151 | |||
152 | pr.handle = handle; | ||
153 | |||
154 | /* x86 implementation looks at pr.id to determine some | ||
155 | * CPU capabilites. We can just hard code to 0 since we're | ||
156 | * assuming the CPUs in the system are homogenous and all | ||
157 | * have the same capabilities. | ||
158 | */ | ||
159 | pr.id = 0; | ||
160 | |||
161 | acpi_processor_set_pdc(&pr); | ||
162 | |||
163 | return AE_OK; | 151 | return AE_OK; |
164 | } | 152 | } |
165 | 153 | ||