linux-acpi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/15] ACPICA 20170303 Release
@ 2017-04-26  8:17 Lv Zheng
  2017-04-26  8:17 ` [PATCH 01/15] ACPICA: Disassembler: Enhance resource descriptor detection Lv Zheng
                   ` (15 more replies)
  0 siblings, 16 replies; 29+ messages in thread
From: Lv Zheng @ 2017-04-26  8:17 UTC (permalink / raw)
  To: Rafael J . Wysocki, Rafael J . Wysocki, Robert Moore, Len Brown,
	Lv Zheng, David E . Box
  Cc: Lv Zheng, linux-acpi

The 20170303 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. x86_64 + default + ACPI_DEBUGGER=y
Where:
1. i386: machine named as "Dell Inspiron Mini 1010"
2. x86_64: machine named as "Microsoft Surface Pro 3"
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 (20170119 Release):
  369 lines
After applying (20170303 Release):
  369 lines

Bob Moore (9):
  ACPICA: Disassembler: Enhance resource descriptor detection
  ACPICA: Update some function headers, no funtional change
  ACPICA: Fix a module for excessive debug output
  ACPICA: Fix several incorrect invocations of ACPICA return macro
  ACPICA: Update for automatic repair code for objects returned by
    evaluate_object
  ACPICA: Cleanup AML opcode definitions, no functional change
  ACPICA: iasl: add ASL conversion tool
  ACPICA: Local cache support: Allow small cache objects
  ACPICA: Update version to 20170303

Colin Ian King (1):
  ACPICA: debugger: fix memory leak on Pathname

David E. Box (1):
  ACPICA: Disassembler: Do not unconditionally remove temporary names

Jung-uk Kim (1):
  ACPICA: Fix build for FreeBSD kernel.

Lv Zheng (2):
  ACPICA: Debugger: Add interpreter blocking mark for single-step mode
  ACPICA: iasl: Fix IORT SMMU GSI disassembling

Seunghun Han (1):
  ACPICA: Namespace: fix operand cache leak

 drivers/acpi/acpica/acconvert.h | 144 ++++++++++++++++++++++++++++++++++++++++
 drivers/acpi/acpica/acglobal.h  |  53 +++++++++++++++
 drivers/acpi/acpica/aclocal.h   | 106 ++++++++++++++++++++++++-----
 drivers/acpi/acpica/acmacros.h  |  35 ++++++++++
 drivers/acpi/acpica/acopcode.h  |   2 +
 drivers/acpi/acpica/amlcode.h   |  99 +++++++++++++--------------
 drivers/acpi/acpica/dbmethod.c  |   1 +
 drivers/acpi/acpica/dbxface.c   |   5 +-
 drivers/acpi/acpica/dscontrol.c |   2 +-
 drivers/acpi/acpica/dsmthdat.c  |   3 +-
 drivers/acpi/acpica/dsobject.c  |  15 +++--
 drivers/acpi/acpica/dsopcode.c  |   4 +-
 drivers/acpi/acpica/dsutils.c   |   8 +--
 drivers/acpi/acpica/dswexec.c   |   2 +-
 drivers/acpi/acpica/dswload2.c  |   2 +-
 drivers/acpi/acpica/exmisc.c    |  16 ++---
 drivers/acpi/acpica/exnames.c   |   4 +-
 drivers/acpi/acpica/exoparg1.c  |  17 +++--
 drivers/acpi/acpica/exoparg2.c  |   4 +-
 drivers/acpi/acpica/exoparg6.c  |  16 ++---
 drivers/acpi/acpica/exresolv.c  |   3 +-
 drivers/acpi/acpica/exstore.c   |   5 +-
 drivers/acpi/acpica/exstoren.c  |   2 +-
 drivers/acpi/acpica/hwvalid.c   |  18 ++---
 drivers/acpi/acpica/nsaccess.c  |   2 +-
 drivers/acpi/acpica/nsrepair.c  |  16 +----
 drivers/acpi/acpica/nsrepair2.c |   6 +-
 drivers/acpi/acpica/nsutils.c   |  29 ++++----
 drivers/acpi/acpica/psargs.c    |  29 +++++++-
 drivers/acpi/acpica/psloop.c    |  34 +++++++++-
 drivers/acpi/acpica/psobject.c  |  38 +++++++++++
 drivers/acpi/acpica/psopcode.c  |  15 +++--
 drivers/acpi/acpica/psopinfo.c  |   2 +-
 drivers/acpi/acpica/psparse.c   |   6 +-
 drivers/acpi/acpica/pstree.c    |   9 ++-
 drivers/acpi/acpica/psutils.c   |  11 +++
 drivers/acpi/acpica/utalloc.c   |  50 ++++++++++++++
 drivers/acpi/acpica/utcache.c   |   2 +-
 drivers/acpi/acpica/utdebug.c   |   1 +
 drivers/acpi/acpica/utresrc.c   |   9 +++
 drivers/acpi/acpica/utxferror.c |  16 ++---
 include/acpi/acconfig.h         |   1 +
 include/acpi/acpixf.h           |   2 +-
 include/acpi/actbl2.h           |  10 +++
 44 files changed, 659 insertions(+), 195 deletions(-)
 create mode 100644 drivers/acpi/acpica/acconvert.h

-- 
2.7.4


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

end of thread, other threads:[~2017-06-13 20:22 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-26  8:17 [PATCH 00/15] ACPICA 20170303 Release Lv Zheng
2017-04-26  8:17 ` [PATCH 01/15] ACPICA: Disassembler: Enhance resource descriptor detection Lv Zheng
2017-06-05 15:57   ` Linda Knippers
2017-06-05 18:21     ` Linda Knippers
2017-06-05 20:42       ` Rafael J. Wysocki
2017-06-05 20:51         ` Linda Knippers
2017-06-05 20:55           ` Rafael J. Wysocki
2017-06-09 20:29             ` Graeme Gregory
2017-06-13 13:42             ` Linda Knippers
2017-06-13 15:13               ` Rafael J. Wysocki
2017-06-13 20:22               ` Moore, Robert
2017-04-26  8:17 ` [PATCH 02/15] ACPICA: Update some function headers, no funtional change Lv Zheng
2017-04-26  8:17 ` [PATCH 03/15] ACPICA: Fix a module for excessive debug output Lv Zheng
2017-04-26  8:18 ` [PATCH 04/15] ACPICA: Fix several incorrect invocations of ACPICA return macro Lv Zheng
2017-04-26  8:18 ` [PATCH 05/15] ACPICA: Namespace: fix operand cache leak Lv Zheng
2017-04-26  8:18 ` [PATCH 06/15] ACPICA: Update for automatic repair code for objects returned by evaluate_object Lv Zheng
2017-04-26  8:18 ` [PATCH 07/15] ACPICA: debugger: fix memory leak on Pathname Lv Zheng
2017-04-26  8:18 ` [PATCH 08/15] ACPICA: Debugger: Add interpreter blocking mark for single-step mode Lv Zheng
2017-04-26  8:18 ` [PATCH 09/15] ACPICA: Cleanup AML opcode definitions, no functional change Lv Zheng
2017-04-26  8:18 ` [PATCH 10/15] ACPICA: iasl: Fix IORT SMMU GSI disassembling Lv Zheng
2017-04-26  8:18 ` [PATCH 11/15] ACPICA: Disassembler: Do not unconditionally remove temporary names Lv Zheng
2017-04-26  8:19 ` [PATCH 12/15] ACPICA: iasl: add ASL conversion tool Lv Zheng
2017-04-26 19:45   ` kbuild test robot
2017-04-27  1:43     ` Zheng, Lv
2017-04-27 15:07       ` Rafael J. Wysocki
2017-04-26  8:19 ` [PATCH 13/15] ACPICA: Local cache support: Allow small cache objects Lv Zheng
2017-04-26  8:20 ` [PATCH 14/15] ACPICA: Fix build for FreeBSD kernel Lv Zheng
2017-04-26  8:20 ` [PATCH 15/15] ACPICA: Update version to 20170303 Lv Zheng
2017-04-28  0:53 ` [PATCH v2] ACPICA: iasl: add ASL conversion tool 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).