[ACPI] ACPICA 20051117
authorBob Moore <robert.moore@intel.com>
Thu, 17 Nov 2005 18:07:00 +0000 (13:07 -0500)
committerLen Brown <len.brown@intel.com>
Sat, 10 Dec 2005 05:27:56 +0000 (00:27 -0500)
commitc51a4de85de720670f2fbc592a6f8040af72ad87
treeccaa60c483fcc904abd63d936ff7dc380bf28e7b
parent96db255c8f014ae3497507104e8df809785a619f
[ACPI] ACPICA 20051117

Fixed a problem in the AML parser where the method thread
count could be decremented below zero if any errors
occurred during the method parse phase. This should
eliminate AE_AML_METHOD_LIMIT exceptions seen on some
machines. This also fixed a related regression with the
mechanism that detects and corrects methods that cannot
properly handle reentrancy (related to the deployment of
the new OwnerId mechanism.)

Eliminated the pre-parsing of control methods (to detect
errors) during table load. Related to the problem above,
this was causing unwind issues if any errors occurred
during the parse, and it seemed to be overkill. A table
load should not be aborted if there are problems with
any single control method, thus rendering this feature
rather pointless.

Fixed a problem with the new table-driven resource manager
where an internal buffer overflow could occur for small
resource templates.

Implemented a new external interface, acpi_get_vendor_resource()
This interface will find and return a vendor-defined
resource descriptor within a _CRS or _PRS
method via an ACPI 3.0 UUID match. (from Bjorn Helgaas)

Removed the length limit (200) on string objects as
per the upcoming ACPI 3.0A specification. This affects
the following areas of the interpreter: 1) any implicit
conversion of a Buffer to a String, 2) a String object
result of the ASL Concatentate operator, 3) the String
object result of the ASL ToString operator.

Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
34 files changed:
drivers/acpi/dispatcher/dsinit.c
drivers/acpi/dispatcher/dswload.c
drivers/acpi/executer/exconvrt.c
drivers/acpi/executer/exdump.c
drivers/acpi/executer/exmisc.c
drivers/acpi/executer/exnames.c
drivers/acpi/executer/exoparg2.c
drivers/acpi/executer/exregion.c
drivers/acpi/executer/exstorob.c
drivers/acpi/parser/psargs.c
drivers/acpi/parser/psparse.c
drivers/acpi/parser/psxface.c
drivers/acpi/resources/rscalc.c
drivers/acpi/resources/rsdump.c
drivers/acpi/resources/rslist.c
drivers/acpi/resources/rsmisc.c
drivers/acpi/resources/rsutils.c
drivers/acpi/resources/rsxface.c
drivers/acpi/scan.c
drivers/acpi/tables/tbconvrt.c
drivers/acpi/tables/tbgetall.c
drivers/acpi/tables/tbutils.c
drivers/acpi/utilities/utcopy.c
drivers/acpi/utilities/utglobal.c
drivers/acpi/utilities/utmisc.c
drivers/acpi/utilities/utresrc.c
include/acpi/acconfig.h
include/acpi/acglobal.h
include/acpi/aclocal.h
include/acpi/acmacros.h
include/acpi/acpixf.h
include/acpi/acresrc.h
include/acpi/actypes.h
include/acpi/platform/aclinux.h