aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/namespace/nsutils.c
diff options
context:
space:
mode:
authorBob Moore <robert.moore@intel.com>2006-01-27 16:43:00 -0500
committerLen Brown <len.brown@intel.com>2006-01-31 03:25:09 -0500
commitb8e4d89357fc434618a59c1047cac72641191805 (patch)
treeac97fcc6fdc277c682365900663872c96f2420bd /drivers/acpi/namespace/nsutils.c
parent292dd876ee765c478b27c93cc51e93a558ed58bf (diff)
[ACPI] ACPICA 20060127
Implemented support in the Resource Manager to allow unresolved namestring references within resource package objects for the _PRT method. This support is in addition to the previously implemented unresolved reference support within the AML parser. If the interpreter slack mode is enabled (true on Linux unless acpi=strict), these unresolved references will be passed through to the caller as a NULL package entry. http://bugzilla.kernel.org/show_bug.cgi?id=5741 Implemented and deployed new macros and functions for error and warning messages across the subsystem. These macros are simpler and generate less code than their predecessors. The new macros ACPI_ERROR, ACPI_EXCEPTION, ACPI_WARNING, and ACPI_INFO replace the ACPI_REPORT_* macros. Implemented the acpi_cpu_flags type to simplify host OS integration of the Acquire/Release Lock OSL interfaces. Suggested by Steven Rostedt and Andrew Morton. Fixed a problem where Alias ASL operators are sometimes not correctly resolved. causing AE_AML_INTERNAL http://bugzilla.kernel.org/show_bug.cgi?id=5189 http://bugzilla.kernel.org/show_bug.cgi?id=5674 Fixed several problems with the implementation of the ConcatenateResTemplate ASL operator. As per the ACPI specification, zero length buffers are now treated as a single EndTag. One-length buffers always cause a fatal exception. Non-zero length buffers that do not end with a full 2-byte EndTag cause a fatal exception. Fixed a possible structure overwrite in the AcpiGetObjectInfo external interface. (With assistance from Thomas Renninger) Signed-off-by: Bob Moore <robert.moore@intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/namespace/nsutils.c')
-rw-r--r--drivers/acpi/namespace/nsutils.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/acpi/namespace/nsutils.c b/drivers/acpi/namespace/nsutils.c
index bc779fdd3caf..3e7cad549a38 100644
--- a/drivers/acpi/namespace/nsutils.c
+++ b/drivers/acpi/namespace/nsutils.c
@@ -85,7 +85,7 @@ acpi_ns_report_error(char *module_name,
85 if (lookup_status == AE_BAD_CHARACTER) { 85 if (lookup_status == AE_BAD_CHARACTER) {
86 /* There is a non-ascii character in the name */ 86 /* There is a non-ascii character in the name */
87 87
88 acpi_os_printf("[0x%4.4X] (NON-ASCII)\n", 88 acpi_os_printf("[0x%4.4X] (NON-ASCII)",
89 *(ACPI_CAST_PTR(u32, internal_name))); 89 *(ACPI_CAST_PTR(u32, internal_name)));
90 } else { 90 } else {
91 /* Convert path to external format */ 91 /* Convert path to external format */
@@ -106,7 +106,7 @@ acpi_ns_report_error(char *module_name,
106 } 106 }
107 } 107 }
108 108
109 acpi_os_printf("Namespace lookup failure, %s\n", 109 acpi_os_printf(" Namespace lookup failure, %s\n",
110 acpi_format_exception(lookup_status)); 110 acpi_format_exception(lookup_status));
111} 111}
112 112
@@ -242,7 +242,7 @@ acpi_object_type acpi_ns_get_type(struct acpi_namespace_node * node)
242 ACPI_FUNCTION_TRACE("ns_get_type"); 242 ACPI_FUNCTION_TRACE("ns_get_type");
243 243
244 if (!node) { 244 if (!node) {
245 ACPI_REPORT_WARNING(("Null Node parameter\n")); 245 ACPI_WARNING((AE_INFO, "Null Node parameter"));
246 return_UINT32(ACPI_TYPE_ANY); 246 return_UINT32(ACPI_TYPE_ANY);
247 } 247 }
248 248
@@ -269,7 +269,7 @@ u32 acpi_ns_local(acpi_object_type type)
269 if (!acpi_ut_valid_object_type(type)) { 269 if (!acpi_ut_valid_object_type(type)) {
270 /* Type code out of range */ 270 /* Type code out of range */
271 271
272 ACPI_REPORT_WARNING(("Invalid Object Type %X\n", type)); 272 ACPI_WARNING((AE_INFO, "Invalid Object Type %X", type));
273 return_UINT32(ACPI_NS_NORMAL); 273 return_UINT32(ACPI_NS_NORMAL);
274 } 274 }
275 275
@@ -621,7 +621,7 @@ acpi_ns_externalize_name(u32 internal_name_length,
621 * with internal_name (invalid format). 621 * with internal_name (invalid format).
622 */ 622 */
623 if (required_length > internal_name_length) { 623 if (required_length > internal_name_length) {
624 ACPI_REPORT_ERROR(("Invalid internal name\n")); 624 ACPI_ERROR((AE_INFO, "Invalid internal name"));
625 return_ACPI_STATUS(AE_BAD_PATHNAME); 625 return_ACPI_STATUS(AE_BAD_PATHNAME);
626 } 626 }
627 627
@@ -797,7 +797,7 @@ u32 acpi_ns_opens_scope(acpi_object_type type)
797 if (!acpi_ut_valid_object_type(type)) { 797 if (!acpi_ut_valid_object_type(type)) {
798 /* type code out of range */ 798 /* type code out of range */
799 799
800 ACPI_REPORT_WARNING(("Invalid Object Type %X\n", type)); 800 ACPI_WARNING((AE_INFO, "Invalid Object Type %X", type));
801 return_UINT32(ACPI_NS_NORMAL); 801 return_UINT32(ACPI_NS_NORMAL);
802 } 802 }
803 803