linux-acpi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/19] ACPICA: 20150515 Release
@ 2015-05-21  2:29 Lv Zheng
  2015-05-21  2:30 ` [PATCH 01/19] ACPICA: Additional dragon_fly BSD support Lv Zheng
                   ` (21 more replies)
  0 siblings, 22 replies; 33+ messages in thread
From: Lv Zheng @ 2015-05-21  2:29 UTC (permalink / raw)
  To: Rafael J. Wysocki, Len Brown; +Cc: Lv Zheng, Lv Zheng, linux-kernel, linux-acpi

The 20150515 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 + default + COFNIG_ACPI=y
2. i386 + allyes + CONFIG_ACPI=y
3. i386 + default + COFNIG_ACPI=n
4. i386 + allyes + CONFIG_ACPI=n
5. x86_64 + default + COFNIG_ACPI=y
6. x86_64 + allyes + CONFIG_ACPI=y
7. x86_64 + default + COFNIG_ACPI=n
8. x86_64 + allyes + CONFIG_ACPI=n
Boot tests are performed as follows:
1. i386 + default + COFNIG_ACPI=y
2. x86_64 + default + COFNIG_ACPI=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 platform drivers

The divergences checking result:
Before applying (20150410 Release):
  531 lines
After applying (20150515 Release):
  565 lines
(Increased due to _REV reversion).

Bob Moore (14):
  ACPICA: Additional dragon_fly BSD support.
  ACPICA: ACPI 6.0: Add support for STAO table.
  ACPICA: ACPI 6.0: Add support for new predefined names.
  ACPICA: ACPI 6.0: Add support for XENV table.
  ACPICA: Parser: Move a couple externals to the proper header.
  ACPICA: iASL: Enhance detection of non-ascii or corrupted input
    files.
  ACPICA: ACPI 6.0: Add support for WPBT table.
  ACPICA: ACPI 6.0: Add changes for FADT table.
  ACPICA: ACPI 6.0: Add changes for LPIT table.
  ACPICA: ACPI 6.0: Add changes for MADT table.
  ACPICA: iASL/disassembler - fix possible fault for -e option.
  ACPICA: acpi_help: Add option to display all known/supported ACPI
    tables.
  ACPICA: ACPI 6.0: Add support for NFIT table.
  ACPICA: Update version to 20150515.

Lv Zheng (5):
  ACPICA: Dispatcher: Fix a resource leak issue in
    acpi_ds_auto_serialize_method().
  ACPICA: Hardware: Fix a resource leak issue in
    acpi_hw_build_pci_list().
  ACPICA: ACPI 6.0: Add ACPI_SUB_PTR().
  ACPICA: ACPI 6.0: Add support for IORT table.
  ACPICA: ACPI 6.0: Add changes for DRTM table.

 drivers/acpi/acpica/acdebug.h   |    4 +-
 drivers/acpi/acpica/aclocal.h   |   15 ++++
 drivers/acpi/acpica/acparser.h  |    3 +
 drivers/acpi/acpica/acpredef.h  |   45 +++++++++-
 drivers/acpi/acpica/acutils.h   |    2 +-
 drivers/acpi/acpica/dsmethod.c  |    5 +-
 drivers/acpi/acpica/hwpci.c     |    9 +-
 drivers/acpi/acpica/nsprepkg.c  |   13 +++
 drivers/acpi/acpica/nsrepair.c  |    2 +-
 drivers/acpi/acpica/psopinfo.c  |    3 -
 drivers/acpi/acpica/utfileio.c  |    9 +-
 drivers/acpi/acpica/uthex.c     |    4 +-
 drivers/acpi/acpica/utxferror.c |   11 ++-
 include/acpi/acpixf.h           |    2 +-
 include/acpi/actbl.h            |   17 ++--
 include/acpi/actbl1.h           |  176 ++++++++++++++++++++++++++++++++++++++-
 include/acpi/actbl2.h           |  146 ++++++++++++++++++++++++++++----
 include/acpi/actbl3.h           |   88 ++++++++++++++++++--
 include/acpi/actypes.h          |    1 +
 include/acpi/acuuid.h           |   64 ++++++++++++++
 include/acpi/platform/acenv.h   |    3 +
 include/acpi/platform/acenvex.h |    3 +
 22 files changed, 560 insertions(+), 65 deletions(-)
 create mode 100644 include/acpi/acuuid.h

-- 
1.7.10

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

end of thread, other threads:[~2015-05-25 23:56 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-21  2:29 [PATCH 00/19] ACPICA: 20150515 Release Lv Zheng
2015-05-21  2:30 ` [PATCH 01/19] ACPICA: Additional dragon_fly BSD support Lv Zheng
2015-05-21  2:30 ` [PATCH 02/19] ACPICA: ACPI 6.0: Add support for STAO table Lv Zheng
2015-05-21  2:30 ` [PATCH 03/19] ACPICA: ACPI 6.0: Add support for new predefined names Lv Zheng
2015-05-21  2:30 ` [PATCH 04/19] ACPICA: ACPI 6.0: Add support for XENV table Lv Zheng
2015-05-21  2:30 ` [PATCH 05/19] ACPICA: Parser: Move a couple externals to the proper header Lv Zheng
2015-05-21  2:30 ` [PATCH 06/19] ACPICA: iASL: Enhance detection of non-ascii or corrupted input files Lv Zheng
2015-05-21  2:30 ` [PATCH 07/19] ACPICA: ACPI 6.0: Add support for WPBT table Lv Zheng
2015-05-21  2:30 ` [PATCH 08/19] ACPICA: ACPI 6.0: Add changes for FADT table Lv Zheng
2015-05-21  2:30 ` [PATCH 09/19] ACPICA: ACPI 6.0: Add changes for LPIT table Lv Zheng
2015-05-21  2:31 ` [PATCH 10/19] ACPICA: Dispatcher: Fix a resource leak issue in acpi_ds_auto_serialize_method() Lv Zheng
2015-05-21  2:31 ` [PATCH 11/19] ACPICA: Hardware: Fix a resource leak issue in acpi_hw_build_pci_list() Lv Zheng
2015-05-21  2:31 ` [PATCH 12/19] ACPICA: ACPI 6.0: Add changes for MADT table Lv Zheng
2015-05-21 14:36   ` Hanjun Guo
2015-05-22  0:16     ` Zheng, Lv
2015-05-23  0:02       ` Hanjun Guo
2015-05-21  2:31 ` [PATCH 13/19] ACPICA: ACPI 6.0: Add ACPI_SUB_PTR() Lv Zheng
2015-05-21  2:31 ` [PATCH 14/19] ACPICA: ACPI 6.0: Add support for IORT table Lv Zheng
2015-05-21  2:31 ` [PATCH 15/19] ACPICA: ACPI 6.0: Add changes for DRTM table Lv Zheng
2015-05-21  2:31 ` [PATCH 16/19] ACPICA: iASL/disassembler - fix possible fault for -e option Lv Zheng
2015-05-21  2:31 ` [PATCH 17/19] ACPICA: acpi_help: Add option to display all known/supported ACPI tables Lv Zheng
2015-05-21  2:31 ` [PATCH 18/19] ACPICA: ACPI 6.0: Add support for NFIT table Lv Zheng
2015-05-22 15:17   ` Linda Knippers
2015-05-22 15:28     ` Moore, Robert
2015-05-22 21:53       ` Rafael J. Wysocki
2015-05-22 21:36         ` Moore, Robert
2015-05-22 22:06           ` Rafael J. Wysocki
2015-05-22 16:12     ` Moore, Robert
2015-05-21  2:32 ` [PATCH 19/19] ACPICA: Update version to 20150515 Lv Zheng
2015-05-22  2:06 ` [PATCH 00/19] ACPICA: 20150515 Release Rafael J. Wysocki
2015-05-25  0:15 ` [PATCH 1/2] ACPICA: acpihelp: Update for new NFIT table GUIDs Lv Zheng
2015-05-26  0:21   ` Rafael J. Wysocki
2015-05-25  0:15 ` [PATCH 2/2] ACPICA: Fix for ill-formed GUID strings for NFIT tables 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).