diff options
author | Robert Moore <robert.moore@intel.com> | 2005-07-08 00:00:00 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2005-07-14 00:42:23 -0400 |
commit | f9f4601f331aa1226d7a798a01950efbb388f07f (patch) | |
tree | 62e079a9275749d16a4a0da56a427be201e15d27 /drivers/acpi/namespace | |
parent | 4c3ffbd79529b680b3c3ef2b6f42f0c89c694ec5 (diff) |
ACPICA 20050708 from Bob Moore <robert.moore@intel.com>
The use of the CPU stack in the debug version of the
subsystem has been considerably reduced. Previously, a
debug structure was declared in every function that used
the debug macros. This structure has been removed in
favor of declaring the individual elements as parameters
to the debug functions. This reduces the cumulative stack
use during nested execution of ACPI function calls at the
cost of a small increase in the code size of the debug
version of the subsystem. With assistance from Alexey
Starikovskiy and Len Brown.
Added the ACPI_GET_FUNCTION_NAME macro to enable the
compiler-dependent headers to define a macro that will
return the current function name at runtime (such as
__FUNCTION__ or _func_, etc.) The function name is used
by the debug trace output. If ACPI_GET_FUNCTION_NAME
is not defined in the compiler-dependent header, the
function name is saved on the CPU stack (one pointer per
function.) This mechanism is used because apparently there
exists no standard ANSI-C defined macro that that returns
the function name.
Alexey Starikovskiy redesigned and reimplemented the
"Owner ID" mechanism used to track namespace objects
created/deleted by ACPI tables and control method
execution. A bitmap is now used to allocate and free the
IDs, thus solving the wraparound problem present in the
previous implementation. The size of the namespace node
descriptor was reduced by 2 bytes as a result.
Removed the UINT32_BIT and UINT16_BIT types that were used
for the bitfield flag definitions within the headers for
the predefined ACPI tables. These have been replaced by
UINT8_BIT in order to increase the code portability of
the subsystem. If the use of UINT8 remains a problem,
we may be forced to eliminate bitfields entirely because
of a lack of portability.
Alexey Starikovksiy enhanced the performance of
acpi_ut_update_object_reference. This is a frequently used
function and this improvement increases the performance
of the entire subsystem.
Alexey Starikovskiy fixed several possible memory leaks
and the inverse - premature object deletion.
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/namespace')
-rw-r--r-- | drivers/acpi/namespace/nsaccess.c | 2 | ||||
-rw-r--r-- | drivers/acpi/namespace/nsalloc.c | 5 | ||||
-rw-r--r-- | drivers/acpi/namespace/nsdump.c | 8 | ||||
-rw-r--r-- | drivers/acpi/namespace/nsparse.c | 2 |
4 files changed, 9 insertions, 8 deletions
diff --git a/drivers/acpi/namespace/nsaccess.c b/drivers/acpi/namespace/nsaccess.c index 9df0a64ba9e9..0bda88d18685 100644 --- a/drivers/acpi/namespace/nsaccess.c +++ b/drivers/acpi/namespace/nsaccess.c | |||
@@ -163,7 +163,7 @@ acpi_ns_root_initialize ( | |||
163 | 163 | ||
164 | /* | 164 | /* |
165 | * i_aSL Compiler cheats by putting parameter count | 165 | * i_aSL Compiler cheats by putting parameter count |
166 | * in the owner_iD | 166 | * in the owner_iD (param_count max is 7) |
167 | */ | 167 | */ |
168 | new_node->owner_id = obj_desc->method.param_count; | 168 | new_node->owner_id = obj_desc->method.param_count; |
169 | #else | 169 | #else |
diff --git a/drivers/acpi/namespace/nsalloc.c b/drivers/acpi/namespace/nsalloc.c index 3f94b0806ecf..edbf1db36b68 100644 --- a/drivers/acpi/namespace/nsalloc.c +++ b/drivers/acpi/namespace/nsalloc.c | |||
@@ -190,7 +190,7 @@ acpi_ns_install_node ( | |||
190 | struct acpi_namespace_node *node, /* New Child*/ | 190 | struct acpi_namespace_node *node, /* New Child*/ |
191 | acpi_object_type type) | 191 | acpi_object_type type) |
192 | { | 192 | { |
193 | u16 owner_id = 0; | 193 | acpi_owner_id owner_id = 0; |
194 | struct acpi_namespace_node *child_node; | 194 | struct acpi_namespace_node *child_node; |
195 | #ifdef ACPI_ALPHABETIC_NAMESPACE | 195 | #ifdef ACPI_ALPHABETIC_NAMESPACE |
196 | 196 | ||
@@ -559,7 +559,7 @@ acpi_ns_remove_reference ( | |||
559 | 559 | ||
560 | void | 560 | void |
561 | acpi_ns_delete_namespace_by_owner ( | 561 | acpi_ns_delete_namespace_by_owner ( |
562 | u16 owner_id) | 562 | acpi_owner_id owner_id) |
563 | { | 563 | { |
564 | struct acpi_namespace_node *child_node; | 564 | struct acpi_namespace_node *child_node; |
565 | struct acpi_namespace_node *deletion_node; | 565 | struct acpi_namespace_node *deletion_node; |
@@ -635,6 +635,7 @@ acpi_ns_delete_namespace_by_owner ( | |||
635 | } | 635 | } |
636 | } | 636 | } |
637 | 637 | ||
638 | (void) acpi_ut_release_owner_id (owner_id); | ||
638 | return_VOID; | 639 | return_VOID; |
639 | } | 640 | } |
640 | 641 | ||
diff --git a/drivers/acpi/namespace/nsdump.c b/drivers/acpi/namespace/nsdump.c index c9f35dd7a431..d86ccbc8a134 100644 --- a/drivers/acpi/namespace/nsdump.c +++ b/drivers/acpi/namespace/nsdump.c | |||
@@ -203,7 +203,7 @@ acpi_ns_dump_one_object ( | |||
203 | 203 | ||
204 | /* Check if the owner matches */ | 204 | /* Check if the owner matches */ |
205 | 205 | ||
206 | if ((info->owner_id != ACPI_UINT32_MAX) && | 206 | if ((info->owner_id != ACPI_OWNER_ID_MAX) && |
207 | (info->owner_id != this_node->owner_id)) { | 207 | (info->owner_id != this_node->owner_id)) { |
208 | return (AE_OK); | 208 | return (AE_OK); |
209 | } | 209 | } |
@@ -598,7 +598,7 @@ acpi_ns_dump_objects ( | |||
598 | acpi_object_type type, | 598 | acpi_object_type type, |
599 | u8 display_type, | 599 | u8 display_type, |
600 | u32 max_depth, | 600 | u32 max_depth, |
601 | u32 owner_id, | 601 | acpi_owner_id owner_id, |
602 | acpi_handle start_handle) | 602 | acpi_handle start_handle) |
603 | { | 603 | { |
604 | struct acpi_walk_info info; | 604 | struct acpi_walk_info info; |
@@ -643,7 +643,7 @@ acpi_ns_dump_entry ( | |||
643 | 643 | ||
644 | 644 | ||
645 | info.debug_level = debug_level; | 645 | info.debug_level = debug_level; |
646 | info.owner_id = ACPI_UINT32_MAX; | 646 | info.owner_id = ACPI_OWNER_ID_MAX; |
647 | info.display_type = ACPI_DISPLAY_SUMMARY; | 647 | info.display_type = ACPI_DISPLAY_SUMMARY; |
648 | 648 | ||
649 | (void) acpi_ns_dump_one_object (handle, 1, &info, NULL); | 649 | (void) acpi_ns_dump_one_object (handle, 1, &info, NULL); |
@@ -694,7 +694,7 @@ acpi_ns_dump_tables ( | |||
694 | } | 694 | } |
695 | 695 | ||
696 | acpi_ns_dump_objects (ACPI_TYPE_ANY, ACPI_DISPLAY_OBJECTS, max_depth, | 696 | acpi_ns_dump_objects (ACPI_TYPE_ANY, ACPI_DISPLAY_OBJECTS, max_depth, |
697 | ACPI_UINT32_MAX, search_handle); | 697 | ACPI_OWNER_ID_MAX, search_handle); |
698 | return_VOID; | 698 | return_VOID; |
699 | } | 699 | } |
700 | #endif /* _ACPI_ASL_COMPILER */ | 700 | #endif /* _ACPI_ASL_COMPILER */ |
diff --git a/drivers/acpi/namespace/nsparse.c b/drivers/acpi/namespace/nsparse.c index f81b836e77f1..64e0b2b9f55c 100644 --- a/drivers/acpi/namespace/nsparse.c +++ b/drivers/acpi/namespace/nsparse.c | |||
@@ -87,7 +87,7 @@ acpi_ns_one_complete_parse ( | |||
87 | 87 | ||
88 | /* Create and initialize a new walk state */ | 88 | /* Create and initialize a new walk state */ |
89 | 89 | ||
90 | walk_state = acpi_ds_create_walk_state (table_desc->table_id, | 90 | walk_state = acpi_ds_create_walk_state (table_desc->owner_id, |
91 | NULL, NULL, NULL); | 91 | NULL, NULL, NULL); |
92 | if (!walk_state) { | 92 | if (!walk_state) { |
93 | acpi_ps_free_op (parse_root); | 93 | acpi_ps_free_op (parse_root); |