From: Lv Zheng <lv.zheng@intel.com>
To: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>,
"Rafael J. Wysocki" <rjw@rjwysocki.net>,
Len Brown <len.brown@intel.com>
Cc: Lv Zheng <lv.zheng@intel.com>, Lv Zheng <zetalog@gmail.com>,
<linux-kernel@vger.kernel.org>,
linux-acpi@vger.kernel.org
Subject: [PATCH 00/15] ACPICA: 20160212 Release
Date: Fri, 19 Feb 2016 14:15:53 +0800 [thread overview]
Message-ID: <cover.1455857575.git.lv.zheng@intel.com> (raw)
The 20160212 ACPICA kernel-resident subsystem updates are linuxized based
on the linux-pm/linux-next branch.
The patchset has passed the following build/boot tests.
Build tests are performed as follows:
1. i386 + allyes
2. i386 + allno
3. i386 + default + ACPI_DEBUGGER=y
4. i386 + default + ACPI_DEBUGGER=n + ACPI_DEBUG=y
5. i386 + default + ACPI_DEBUG=n + ACPI=y
6. i386 + default + ACPI=n
7. x86_64 + allyes
8. x86_64 + allno
9. x86_64 + default + ACPI_DEBUGGER=y
10.x86_64 + default + ACPI_DEBUGGER=n + ACPI_DEBUG=y
11.x86_64 + default + ACPI_DEBUG=n + ACPI=y
12.x86_64 + default + ACPI=n
Boot tests are performed as follows:
1. i386 + default + ACPI_DEBUGGER=y
2. x86_64 + default + ACPI_DEBUGGER=y
Where:
1. i386: machine named as "Dell Inspiron Mini 1010"
2. x86_64: machine named as "HP Compaq 8200 Elite SFF PC"
3. default: kernel configuration with following items enabled:
All hardware drivers related to the machines of i386/x86_64
All "drivers/acpi" configurations
All "drivers/platform" drivers
All other drivers that link the APIs provided by ACPICA subsystem
The divergences checking result:
Before applying (20160108 Release):
506 lines
After applying (20160212 Release):
506 lines
Bob Moore (8):
ACPICA: Remove incorrect "static" from a global structure
ACPICA: iASL: Fix some typos with the name strtoul64
ACPICA: iASL: Update to use internal acpi_ut_strtoul64 function
ACPICA: Remove unnecessary arguments to ACPI_INFO
ACPICA: ACPI 6.1: Add full support for this version of ACPI spec
ACPICA: Revert "Parser: Fix for SuperName method invocation"
ACPICA: Utilities: Update trace mechinism for acquire_object
ACPICA: Update version to 20160212
Colin Ian King (1):
ACPICA: debugger: dbconvert: free pld_info on error return path
David E. Box (1):
ACPICA: ACPI 6.0/iASL: Add support for the External AML opcode
Lv Zheng (4):
ACPICA: Tables: make default region accessible during the table load
ACPICA: ACPICA: Tune _REG evaluations order in the initialization
steps
ACPICA: Namespace: Ensure \_SB._INI executed before any _REG
ACPICA: Namespace: Rename acpi_gbl_reg_methods_enabled to
acpi_gbl_namespace_initialized
waddlesplash (1):
ACPICA: aclocal: Put parens around some definitions.
drivers/acpi/acpica/acglobal.h | 2 +-
drivers/acpi/acpica/aclocal.h | 6 +-
drivers/acpi/acpica/acnamesp.h | 2 +-
drivers/acpi/acpica/acpredef.h | 11 +-
drivers/acpi/acpica/dbcmds.c | 2 +-
drivers/acpi/acpica/dbconvert.c | 5 +-
drivers/acpi/acpica/dsmethod.c | 3 +-
drivers/acpi/acpica/dsobject.c | 3 +-
drivers/acpi/acpica/evgpeblk.c | 3 +-
drivers/acpi/acpica/evgpeinit.c | 2 +-
drivers/acpi/acpica/evregion.c | 2 +-
drivers/acpi/acpica/exconfig.c | 4 +-
drivers/acpi/acpica/exoparg3.c | 4 +-
drivers/acpi/acpica/nseval.c | 3 +-
drivers/acpi/acpica/nsinit.c | 135 ++++++++++++---------
drivers/acpi/acpica/psargs.c | 9 +-
drivers/acpi/acpica/tbinstal.c | 5 +-
drivers/acpi/acpica/tbprint.c | 7 +-
drivers/acpi/acpica/tbutils.c | 4 +-
drivers/acpi/acpica/tbxfload.c | 28 ++++-
drivers/acpi/acpica/utcache.c | 2 +-
drivers/acpi/acpica/utdecode.c | 30 ++---
drivers/acpi/acpica/utnonansi.c | 246 ++++++++++++++++++++++++++++++++-------
drivers/acpi/acpica/uttrack.c | 2 +-
drivers/acpi/acpica/utxferror.c | 3 +-
drivers/acpi/acpica/utxfinit.c | 42 +++----
include/acpi/acoutput.h | 2 +-
include/acpi/acpixf.h | 8 +-
include/acpi/actbl.h | 2 +-
include/acpi/actbl1.h | 29 ++++-
include/acpi/actypes.h | 3 +-
31 files changed, 418 insertions(+), 191 deletions(-)
--
1.7.10
next reply other threads:[~2016-02-19 6:16 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-19 6:15 Lv Zheng [this message]
2016-02-19 6:16 ` [PATCH 01/15] ACPICA: aclocal: Put parens around some definitions Lv Zheng
2016-02-19 6:16 ` [PATCH 02/15] ACPICA: Remove incorrect "static" from a global structure Lv Zheng
2016-02-19 6:16 ` [PATCH 03/15] ACPICA: iASL: Fix some typos with the name strtoul64 Lv Zheng
2016-02-19 6:16 ` [PATCH 04/15] ACPICA: iASL: Update to use internal acpi_ut_strtoul64 function Lv Zheng
2016-02-19 6:16 ` [PATCH 05/15] ACPICA: debugger: dbconvert: free pld_info on error return path Lv Zheng
2016-02-19 6:16 ` [PATCH 06/15] ACPICA: Remove unnecessary arguments to ACPI_INFO Lv Zheng
2016-02-19 6:16 ` [PATCH 07/15] ACPICA: ACPI 6.0/iASL: Add support for the External AML opcode Lv Zheng
2016-02-19 6:16 ` [PATCH 08/15] ACPICA: Tables: make default region accessible during the table load Lv Zheng
2016-02-19 6:17 ` [PATCH 09/15] ACPICA: ACPICA: Tune _REG evaluations order in the initialization steps Lv Zheng
2016-02-19 6:17 ` [PATCH 10/15] ACPICA: Namespace: Ensure \_SB._INI executed before any _REG Lv Zheng
2016-02-19 6:17 ` [PATCH 11/15] ACPICA: Namespace: Rename acpi_gbl_reg_methods_enabled to acpi_gbl_namespace_initialized Lv Zheng
2016-02-19 6:17 ` [PATCH 12/15] ACPICA: ACPI 6.1: Add full support for this version of ACPI spec Lv Zheng
2016-02-20 21:41 ` Abdulhamid, Harb
2016-02-24 16:22 ` Moore, Robert
2016-02-24 17:02 ` Moore, Robert
2016-02-24 17:39 ` Moore, Robert
2016-02-24 23:18 ` Rafael J. Wysocki
2016-02-19 6:17 ` [PATCH 13/15] ACPICA: Revert "Parser: Fix for SuperName method invocation" Lv Zheng
2016-02-19 6:17 ` [PATCH 14/15] ACPICA: Utilities: Update trace mechinism for acquire_object Lv Zheng
2016-02-19 6:17 ` [PATCH 15/15] ACPICA: Update version to 20160212 Lv Zheng
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.1455857575.git.lv.zheng@intel.com \
--to=lv.zheng@intel.com \
--cc=len.brown@intel.com \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=rafael.j.wysocki@intel.com \
--cc=rjw@rjwysocki.net \
--cc=zetalog@gmail.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;
as well as URLs for NNTP newsgroup(s).