From: Lv Zheng <lv.zheng@intel.com>
To: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>,
Robert Moore <robert.moore@intel.com>,
Len Brown <len.brown@intel.com>
Cc: Lv Zheng <lv.zheng@intel.com>, linux-acpi@vger.kernel.org
Subject: [PATCH v2 00/14] ACPICA 20130823 Release
Date: Mon, 23 Sep 2013 09:50:40 +0800 [thread overview]
Message-ID: <cover.1379900697.git.lv.zheng@intel.com> (raw)
In-Reply-To: <cover.1377844863.git.lv.zheng@intel.com>
The 20130823 ACPICA kernel resident system updates is linuxized based on
the pm/linux-next branch.
The patch set has passed a build/boot test on the following machines:
Dell Inspiron Mini 1010 (i386)
HP Compaq 8200 Elite SFF PC (x86-64)
With the following kernel configuration items enabled:
CONFIG_ACPI_AC
CONFIG_ACPI_BATTERY
CONFIG_ACPI_NUMA
CONFIG_ACPI_PROCESSOR
CONFIG_ACPI_THERMAL
CONFIG_ACPI_VIDEO
CONFIG_CPU_FREQ
CONFIG_I2C_SCMI
CONFIG_SENSORS_ACPI_POWER
CONFIG_PANASONIC_LAPTOP
CONFIG_XO15_EBOOK
CONFIG_DMAR_TABLE
CONFIG_INTEL_IOMMU
CONFIG_IRQ_REMAP
Bjorn Helgaas (1):
ACPICA: acpi_read: On error, do not modify the return value target
location.
Bob Moore (7):
ACPICA: Improve error message for "too many parent prefixes"
condition.
ACPICA: Debug output: small formatting update, no functional change.
ACPICA: Debugger: Prevent possible command line buffer overflow,
kernel behavior is not affected.
ACPICA: Validate start object for acpi_walk_namespace.
ACPICA: Debugger: Add new command to display full namespace
pathnames.
ACPICA: SCI Handlers: Update handler interface, eliminate unnecessary
argument.
ACPICA: Update version to 20130823.
David E. Box (1):
ACPICA: Operation region support: Never free the handler "context"
pointer.
Lv Zheng (4):
ACPICA: Add support for host-installed SCI handlers.
ACPICA: Tables: Cleanup table checksum verification code.
ACPICA: Tables: Cleanup RSDP signature codes.
ACPICA: Cleanup exception codes.
Naresh Bhat (1):
ACPICA: Linux-specific header: enable "aarch64" 64-bit build.
drivers/acpi/acpica/acdebug.h | 5 +-
drivers/acpi/acpica/acevents.h | 6 +-
drivers/acpi/acpica/acglobal.h | 18 +++--
drivers/acpi/acpica/aclocal.h | 8 +++
drivers/acpi/acpica/acnamesp.h | 6 ++
drivers/acpi/acpica/evgpeutil.c | 2 +-
drivers/acpi/acpica/evmisc.c | 14 ++--
drivers/acpi/acpica/evregion.c | 23 ++++---
drivers/acpi/acpica/evsci.c | 78 ++++++++++++++++++++--
drivers/acpi/acpica/evxface.c | 139 +++++++++++++++++++++++++++++++++++++++
drivers/acpi/acpica/hwxface.c | 26 ++++----
drivers/acpi/acpica/nsaccess.c | 5 +-
drivers/acpi/acpica/nsdump.c | 134 +++++++++++++++++++++++++++++++++++++
drivers/acpi/acpica/nsxfeval.c | 8 +++
drivers/acpi/acpica/tbinstal.c | 12 +---
drivers/acpi/acpica/tbprint.c | 12 +++-
drivers/acpi/acpica/tbxfroot.c | 3 +-
drivers/acpi/acpica/utdebug.c | 2 +-
drivers/acpi/acpica/utglobal.c | 3 +-
include/acpi/acexcep.h | 8 ++-
include/acpi/acpixf.h | 15 +++--
include/acpi/actypes.h | 8 +++
include/acpi/platform/aclinux.h | 2 +-
23 files changed, 465 insertions(+), 72 deletions(-)
--
1.7.10
next prev parent reply other threads:[~2013-09-23 1:51 UTC|newest]
Thread overview: 49+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-09-12 8:54 [PATCH 00/14] ACPICA 20130823 Release Lv Zheng
2013-09-12 8:54 ` [PATCH 01/14] ACPICA: Improve error message for "too many parent prefixes" condition Lv Zheng
2013-09-12 8:54 ` [PATCH 02/14] ACPICA: acpi_read: On error, do not modify the return value target location Lv Zheng
2013-09-12 8:54 ` [PATCH 03/14] ACPICA: Debug output: small formatting update, no functional change Lv Zheng
2013-09-12 8:54 ` [PATCH 04/14] ACPICA: Linux-specific header: enable "aarch64" 64-bit build Lv Zheng
2013-09-12 8:54 ` [PATCH 05/14] ACPICA: Debugger: Prevent possible command line buffer overflow Lv Zheng
2013-09-17 0:42 ` Len Brown
2013-09-17 1:15 ` Zheng, Lv
2013-09-17 19:31 ` Brown, Len
2013-09-23 1:36 ` Zheng, Lv
2013-09-12 8:55 ` [PATCH 06/14] ACPICA: Validate start object for acpi_walk_namespace Lv Zheng
2013-09-17 0:44 ` Len Brown
2013-09-17 1:25 ` Zheng, Lv
2013-09-17 2:56 ` Moore, Robert
2013-09-17 19:46 ` Brown, Len
2013-09-17 19:48 ` Moore, Robert
2013-09-23 1:37 ` Zheng, Lv
2013-09-12 8:55 ` [PATCH 07/14] ACPICA: Add support for host-installed SCI handlers Lv Zheng
2013-09-17 0:48 ` Len Brown
2013-09-17 1:07 ` Zheng, Lv
2013-09-17 17:47 ` Moore, Robert
2013-09-12 8:55 ` [PATCH 08/14] ACPICA: Operation region support: Never free the handler "context" pointer Lv Zheng
2013-09-12 8:55 ` [PATCH 09/14] ACPICA: Debugger: Add new command to display full namespace pathnames Lv Zheng
2013-09-12 8:55 ` [PATCH 10/14] ACPICA: Tables: Cleanup table checksum verification code Lv Zheng
2013-09-12 8:55 ` [PATCH 11/14] ACPICA: Tables: Cleanup RSDP signature codes Lv Zheng
2013-09-17 0:51 ` Len Brown
2013-09-17 1:11 ` Zheng, Lv
2013-09-12 8:55 ` [PATCH 12/14] ACPICA: Cleanup exception codes Lv Zheng
2013-09-12 8:55 ` [PATCH 13/14] ACPICA: SCI Handlers: Update handler interface, eliminate unnecessary argument Lv Zheng
2013-09-12 8:55 ` [PATCH 14/14] ACPICA: Update version to 20130823 Lv Zheng
2013-09-17 0:54 ` [PATCH 00/14] ACPICA 20130823 Release Len Brown
2013-09-23 1:50 ` Lv Zheng [this message]
2013-09-23 1:51 ` [PATCH v2 01/14] ACPICA: Improve error message for "too many parent prefixes" condition Lv Zheng
2013-09-23 1:51 ` [PATCH v2 02/14] ACPICA: acpi_read: On error, do not modify the return value target location Lv Zheng
2013-09-23 1:51 ` [PATCH v2 03/14] ACPICA: Debug output: small formatting update, no functional change Lv Zheng
2013-09-23 1:51 ` [PATCH v2 04/14] ACPICA: Linux-specific header: enable "aarch64" 64-bit build Lv Zheng
2013-09-23 1:51 ` [PATCH v2 05/14] ACPICA: Debugger: Prevent possible command line buffer overflow, kernel behavior is not affected Lv Zheng
2013-09-23 1:51 ` [PATCH v2 06/14] ACPICA: Validate start object for acpi_walk_namespace Lv Zheng
2013-09-23 1:52 ` [PATCH v2 07/14] ACPICA: Add support for host-installed SCI handlers Lv Zheng
2013-09-23 1:52 ` [PATCH v2 08/14] ACPICA: Operation region support: Never free the handler "context" pointer Lv Zheng
2013-09-23 1:52 ` [PATCH v2 09/14] ACPICA: Debugger: Add new command to display full namespace pathnames Lv Zheng
2013-09-23 1:52 ` [PATCH v2 10/14] ACPICA: Tables: Cleanup table checksum verification code Lv Zheng
2013-09-23 1:52 ` [PATCH v2 11/14] ACPICA: Tables: Cleanup RSDP signature codes Lv Zheng
2013-09-23 1:52 ` [PATCH v2 12/14] ACPICA: Cleanup exception codes Lv Zheng
2013-09-23 1:52 ` [PATCH v2 13/14] ACPICA: SCI Handlers: Update handler interface, eliminate unnecessary argument Lv Zheng
2013-09-23 1:52 ` [PATCH v2 14/14] ACPICA: Update version to 20130823 Lv Zheng
2013-09-23 20:21 ` [PATCH v2 00/14] ACPICA 20130823 Release Brown, Len
2013-09-25 16:00 ` Rafael J. Wysocki
2013-09-27 7:44 ` Zheng, Lv
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.1379900697.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.