linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/15] ACPICA: 20160212 Release
@ 2016-02-19  6:15 Lv Zheng
  2016-02-19  6:16 ` [PATCH 01/15] ACPICA: aclocal: Put parens around some definitions Lv Zheng
                   ` (14 more replies)
  0 siblings, 15 replies; 21+ messages in thread
From: Lv Zheng @ 2016-02-19  6:15 UTC (permalink / raw)
  To: Rafael J. Wysocki, Rafael J. Wysocki, Len Brown
  Cc: Lv Zheng, Lv Zheng, linux-kernel, linux-acpi

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

^ permalink raw reply	[flat|nested] 21+ messages in thread

end of thread, other threads:[~2016-02-24 23:17 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-19  6:15 [PATCH 00/15] ACPICA: 20160212 Release Lv Zheng
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

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).