All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/17] ACPICA: 20140724 Release
@ 2014-07-30  4:20 ` Lv Zheng
  0 siblings, 0 replies; 42+ messages in thread
From: Lv Zheng @ 2014-07-30  4:20 UTC (permalink / raw)
  To: Rafael J. Wysocki, Len Brown; +Cc: Lv Zheng, Lv Zheng, linux-kernel, linux-acpi

The 20140724 ACPICA kernel-resident subsystem updates are linuxized based
on the pm/linux-next branch to form this patchset.

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:
  861 lines
After applying:
  848 lines

Bob Moore (11):
  ACPICA: Work around an ancient GCC bug.
  ACPICA: Remove a redundant cast to acpi_size for ACPI_OFFSET() macro.
  ACPICA: Disassembler: Add support for the ToUUID opererator (macro).
  ACPICA: Update for comments/formatting. No functional changes.
  ACPICA: Tables: Update for DMAR table changes.
  ACPICA: acpihelp: Add UUID support, restructure some existing files.
  ACPICA: Debug object: Add current value of Timer() to debug line
    prefix.
  ACPICA: ACPI 5.1: New notify value for System Affinity Update.
  ACPICA: ACPI 5.1: Support for the _CCA predifined name.
  ACPICA: ACPI 5.1: Update for PCCT table changes.
  ACPICA: Update version to 20140724.

David E. Box (1):
  ACPICA: ACPI 5.1: Support for the _DSD predefined name.

Graeme Gregory (1):
  ACPICA/ARM: ACPI 5.1: Update for FADT changes.

Lv Zheng (1):
  ACPICA: Utilities: Fix local printf issue.

Sascha Wildner (1):
  ACPICA: Remove some extraneous printf arguments.

Tomasz Nowicki (2):
  ACPICA/ARM: ACPI 5.1: Update for MADT changes.
  ACPICA/ARM: ACPI 5.1: Update for GTDT table changes.

 drivers/acpi/acpica/Makefile   |    8 ++-
 drivers/acpi/acpica/aclocal.h  |   18 ++++--
 drivers/acpi/acpica/acpredef.h |   16 +++++-
 drivers/acpi/acpica/acutils.h  |    9 +++
 drivers/acpi/acpica/exdebug.c  |   11 +++-
 drivers/acpi/acpica/exdump.c   |    6 +-
 drivers/acpi/acpica/exfield.c  |   22 ++++----
 drivers/acpi/acpica/utdecode.c |   32 +----------
 drivers/acpi/acpica/utfileio.c |    3 +-
 drivers/acpi/acpica/uthex.c    |  100 ++++++++++++++++++++++++++++++++++
 drivers/acpi/acpica/utprint.c  |    9 ++-
 drivers/acpi/acpica/utuuid.c   |   96 ++++++++++++++++++++++++++++++++
 drivers/iommu/dmar.c           |   28 +++++-----
 include/acpi/acconfig.h        |   18 ++++++
 include/acpi/acnames.h         |    1 +
 include/acpi/acpixf.h          |    2 +-
 include/acpi/actbl.h           |   12 +++-
 include/acpi/actbl1.h          |   44 ++++++++++++++-
 include/acpi/actbl2.h          |   14 ++---
 include/acpi/actbl3.h          |  118 ++++++++++++++++++++++++++++++++++------
 include/acpi/actypes.h         |    5 +-
 21 files changed, 468 insertions(+), 104 deletions(-)
 create mode 100644 drivers/acpi/acpica/uthex.c
 create mode 100644 drivers/acpi/acpica/utuuid.c

-- 
1.7.10


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

end of thread, other threads:[~2015-05-05 20:28 UTC | newest]

Thread overview: 42+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-30  4:20 [PATCH 00/17] ACPICA: 20140724 Release Lv Zheng
2014-07-30  4:20 ` Lv Zheng
2014-07-30  4:20 ` [PATCH 01/17] ACPICA: Work around an ancient GCC bug Lv Zheng
2014-07-30  4:20   ` Lv Zheng
2014-07-30  4:20 ` [PATCH 02/17] ACPICA: Remove a redundant cast to acpi_size for ACPI_OFFSET() macro Lv Zheng
2014-07-30  4:20   ` Lv Zheng
2014-07-30  4:20 ` [PATCH 03/17] ACPICA: Disassembler: Add support for the ToUUID opererator (macro) Lv Zheng
2014-07-30  4:20   ` Lv Zheng
2014-07-30  4:20 ` [PATCH 04/17] ACPICA: Update for comments/formatting. No functional changes Lv Zheng
2014-07-30  4:20   ` Lv Zheng
2014-07-30  4:20 ` [PATCH 05/17] ACPICA: Remove some extraneous printf arguments Lv Zheng
2014-07-30  4:20   ` Lv Zheng
2014-07-30  4:21 ` [PATCH 06/17] ACPICA: Tables: Update for DMAR table changes Lv Zheng
2014-07-30  4:21   ` Lv Zheng
2014-07-30  4:21 ` [PATCH 07/17] ACPICA: Utilities: Fix local printf issue Lv Zheng
2014-07-30  4:21   ` Lv Zheng
2014-07-30  4:21 ` [PATCH 08/17] ACPICA: acpihelp: Add UUID support, restructure some existing files Lv Zheng
2014-07-30  4:21   ` Lv Zheng
2014-07-30  4:21 ` [PATCH 09/17] ACPICA: Debug object: Add current value of Timer() to debug line prefix Lv Zheng
2014-07-30  4:21   ` Lv Zheng
2014-07-30  4:21 ` [PATCH 10/17] ACPICA: ACPI 5.1: Support for the _DSD predefined name Lv Zheng
2014-07-30  4:21   ` Lv Zheng
2014-07-30  4:21 ` [PATCH 11/17] ACPICA: ACPI 5.1: New notify value for System Affinity Update Lv Zheng
2014-07-30  4:21   ` Lv Zheng
2014-07-30  4:21 ` [PATCH 12/17] ACPICA: ACPI 5.1: Support for the _CCA predifined name Lv Zheng
2014-07-30  4:21   ` Lv Zheng
2014-07-30  4:21 ` [PATCH 13/17] ACPICA/ARM: ACPI 5.1: Update for FADT changes Lv Zheng
2014-07-30  4:21   ` Lv Zheng
2014-07-30  4:21 ` [PATCH 14/17] ACPICA/ARM: ACPI 5.1: Update for MADT changes Lv Zheng
2014-07-30  4:21   ` Lv Zheng
2014-07-30  4:21 ` [PATCH 15/17] ACPICA/ARM: ACPI 5.1: Update for GTDT table changes Lv Zheng
2014-07-30  4:21   ` Lv Zheng
2015-05-01 22:43   ` Timur Tabi
2015-05-02 14:02     ` Hanjun Guo
2015-05-02 14:02       ` Hanjun Guo
2015-05-05 20:28       ` Moore, Robert
2015-05-05 20:28         ` Moore, Robert
2014-07-30  4:22 ` [PATCH 16/17] ACPICA: ACPI 5.1: Update for PCCT " Lv Zheng
2014-07-30  4:22   ` Lv Zheng
2014-07-30  4:22 ` [PATCH 17/17] ACPICA: Update version to 20140724 Lv Zheng
2014-07-30  4:22   ` Lv Zheng
2014-07-31 22:32 ` [PATCH 00/17] ACPICA: 20140724 Release Rafael J. Wysocki

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.