From: Lv Zheng <lv.zheng@intel.com>
To: Len Brown <len.brown@intel.com>,
"Rafael J. Wysocki" <rafael.j.wysocki@intel.com>,
Robert Moore <robert.moore@intel.com>
Cc: linux-acpi@vger.kernel.org, Lv Zheng <lv.zheng@intel.com>
Subject: [PATCH 00/21] ACPICA 20130214 Release
Date: Fri, 8 Mar 2013 17:19:15 +0800 [thread overview]
Message-ID: <cover.1361292877.git.lv.zheng@intel.com> (raw)
The 20130214 ACPICA linuxized patches are based on the pm/linux-next
branch.
The patch set has passed a basic build/boot test on z530.
No new divergences are introduced by this patch set.
Bob Moore (14):
ACPICA: Resource Mgr: Prevent infinite loops in resource walks
ACPICA: Fix a couple warnings detected on FreeBSD build
ACPICA: Update error/debug messages for fixed events
ACPICA: Add parens within macros around parameter names
ACPICA: Update for ACPI 5 hardware-reduced feature
ACPICA: Regression fix: reinstate safe exit macros
ACPICA: Add macros to exception code definitions
ACPICA: Add exception descriptions to exception info table
ACPICA: Remove trailing comma in enum declarations
ACPICA: Add mechanism for early object repairs on a per-name basis
ACPICA: Split object conversion functions to a new file
ACPICA: Disassembler: Add warnings for unresolved control methods
ACPICA: Object repair: Allow 0-length packages for variable-length
packages
ACPICA: Update version to 20130214
Jung-uk Kim (2):
ACPICA: Fix a long-standing bug in local cache
ACPICA: Add macros to access pointer to next object in the descriptor
list
Lv Zheng (5):
ACPICA: Update RASF table definition
ACPICA: iASL/Disassembler: Add support for VRTC table
ACPICA: iASL/Disassembler: Add support for MTMR table
ACPICA: Return object repair: Add string-to-unicode conversion
ACPICA: Return object repair: Add resource template repairs
drivers/acpi/acpica/Makefile | 1 +
drivers/acpi/acpica/acglobal.h | 4 +-
drivers/acpi/acpica/aclocal.h | 16 ++
drivers/acpi/acpica/acmacros.h | 6 +-
drivers/acpi/acpica/acnamesp.h | 25 ++-
drivers/acpi/acpica/acutils.h | 3 +-
drivers/acpi/acpica/dsutils.c | 10 +-
drivers/acpi/acpica/evevent.c | 12 +-
drivers/acpi/acpica/evgpe.c | 6 +-
drivers/acpi/acpica/evsci.c | 4 +-
drivers/acpi/acpica/evxface.c | 21 +-
drivers/acpi/acpica/evxfevnt.c | 12 +
drivers/acpi/acpica/exprep.c | 4 +-
drivers/acpi/acpica/exutils.c | 4 +-
drivers/acpi/acpica/hwacpi.c | 20 +-
drivers/acpi/acpica/nsconvert.c | 443 +++++++++++++++++++++++++++++++++++++
drivers/acpi/acpica/nspredef.c | 141 ++++++------
drivers/acpi/acpica/nsprepkg.c | 10 +-
drivers/acpi/acpica/nsrepair.c | 381 ++++++++++++--------------------
drivers/acpi/acpica/nsrepair2.c | 16 +-
drivers/acpi/acpica/nsutils.c | 8 +-
drivers/acpi/acpica/psargs.c | 2 +-
drivers/acpi/acpica/rscalc.c | 6 +
drivers/acpi/acpica/rsdump.c | 8 +
drivers/acpi/acpica/rslist.c | 8 +
drivers/acpi/acpica/rsxface.c | 8 +-
drivers/acpi/acpica/utaddress.c | 4 +-
drivers/acpi/acpica/utcache.c | 18 +-
drivers/acpi/acpica/utexcep.c | 26 ++-
drivers/acpi/acpica/utglobal.c | 2 +
include/acpi/acexcep.h | 461 +++++++++++++++++++++++----------------
include/acpi/acoutput.h | 53 ++++-
include/acpi/acpixf.h | 2 +-
include/acpi/actbl2.h | 47 ++++
include/acpi/actbl3.h | 55 ++++-
include/acpi/actypes.h | 1 -
36 files changed, 1231 insertions(+), 617 deletions(-)
create mode 100644 drivers/acpi/acpica/nsconvert.c
--
1.7.10
next reply other threads:[~2013-03-08 9:19 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-03-08 9:19 Lv Zheng [this message]
2013-03-08 9:19 ` [PATCH 01/21] ACPICA: Resource Mgr: Prevent infinite loops in resource walks Lv Zheng
2013-03-08 9:20 ` [PATCH 02/21] ACPICA: Fix a couple warnings detected on FreeBSD build Lv Zheng
2013-03-08 9:20 ` [PATCH 03/21] ACPICA: Update RASF table definition Lv Zheng
2013-03-08 9:20 ` [PATCH 04/21] ACPICA: iASL/Disassembler: Add support for VRTC table Lv Zheng
2013-03-08 9:20 ` [PATCH 05/21] ACPICA: iASL/Disassembler: Add support for MTMR table Lv Zheng
2013-03-08 9:21 ` [PATCH 06/21] ACPICA: Fix a long-standing bug in local cache Lv Zheng
2013-03-08 9:21 ` [PATCH 07/21] ACPICA: Update error/debug messages for fixed events Lv Zheng
2013-03-08 9:21 ` [PATCH 08/21] ACPICA: Add macros to access pointer to next object in the descriptor list Lv Zheng
2013-03-08 9:22 ` [PATCH 09/21] ACPICA: Add parens within macros around parameter names Lv Zheng
2013-03-08 9:22 ` [PATCH 10/21] ACPICA: Update for ACPI 5 hardware-reduced feature Lv Zheng
2013-03-08 9:22 ` [PATCH 11/21] ACPICA: Regression fix: reinstate safe exit macros Lv Zheng
2013-03-08 9:22 ` [PATCH 12/21] ACPICA: Add macros to exception code definitions Lv Zheng
2013-03-08 9:22 ` [PATCH 13/21] ACPICA: Add exception descriptions to exception info table Lv Zheng
2013-03-08 9:22 ` [PATCH 14/21] ACPICA: Remove trailing comma in enum declarations Lv Zheng
2013-03-08 9:23 ` [PATCH 15/21] ACPICA: Add mechanism for early object repairs on a per-name basis Lv Zheng
2013-03-08 9:23 ` [PATCH 16/21] ACPICA: Split object conversion functions to a new file Lv Zheng
2013-03-08 9:23 ` [PATCH 17/21] ACPICA: Return object repair: Add string-to-unicode conversion Lv Zheng
2013-03-08 9:23 ` [PATCH 18/21] ACPICA: Return object repair: Add resource template repairs Lv Zheng
2013-03-08 9:23 ` [PATCH 19/21] ACPICA: Disassembler: Add warnings for unresolved control methods Lv Zheng
2013-03-08 9:23 ` [PATCH 20/21] ACPICA: Object repair: Allow 0-length packages for variable-length packages Lv Zheng
2013-03-08 9:23 ` [PATCH 21/21] ACPICA: Update version to 20130214 Lv Zheng
2013-03-26 13:22 ` [PATCH 00/21] ACPICA 20130214 Release Rafael J. Wysocki
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1361292877.git.lv.zheng@intel.com \
--to=lv.zheng@intel.com \
--cc=len.brown@intel.com \
--cc=linux-acpi@vger.kernel.org \
--cc=rafael.j.wysocki@intel.com \
--cc=robert.moore@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox