linux-acpi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/14] ACPICA 20130823 Release
@ 2013-09-12  8:54 Lv Zheng
  2013-09-12  8:54 ` [PATCH 01/14] ACPICA: Improve error message for "too many parent prefixes" condition Lv Zheng
                   ` (15 more replies)
  0 siblings, 16 replies; 49+ messages in thread
From: Lv Zheng @ 2013-09-12  8:54 UTC (permalink / raw)
  To: Rafael J. Wysocki, Robert Moore, Len Brown; +Cc: Lv Zheng, linux-acpi

The 20130823 ACPICA kernel resident system updates is linuxized based on
the pm/linux-next branch.

The patch set has passed a build/boot test on the following machines:
Dell Inspiron Mini 1010 (i386)
HP Compaq 8200 Elite SFF PC (x86-64)
With the following kernel configuration items enabled:
  CONFIG_ACPI_AC
  CONFIG_ACPI_BATTERY
  CONFIG_ACPI_NUMA
  CONFIG_ACPI_PROCESSOR
  CONFIG_ACPI_THERMAL
  CONFIG_ACPI_VIDEO
  CONFIG_CPU_FREQ
  CONFIG_I2C_SCMI
  CONFIG_SENSORS_ACPI_POWER
  CONFIG_PANASONIC_LAPTOP
  CONFIG_XO15_EBOOK
  CONFIG_DMAR_TABLE
  CONFIG_INTEL_IOMMU
  CONFIG_IRQ_REMAP
New divergences are introduced in this release due to the deletion of
the following patches:
  ACPICA: iASL/disassembler: Add support for external method reference
    file.
  ACPICA: Tables: Add multiple table instances support.
They are AcpiDump specific updates and will appear along with AcpiDump
release during next release.

NOTE: Label indentation is not fixed in this series, it can be fixed
      by another ACPICA commit that changes the indent option to do so.

Please review.

Bjorn Helgaas (1):
  ACPICA: acpi_read: On error, do not modify the return value target
    location.

Bob Moore (7):
  ACPICA: Improve error message for "too many parent prefixes"
    condition.
  ACPICA: Debug output: small formatting update, no functional change.
  ACPICA: Debugger: Prevent possible command line buffer overflow.
  ACPICA: Validate start object for acpi_walk_namespace.
  ACPICA: Debugger: Add new command to display full namespace
    pathnames.
  ACPICA: SCI Handlers: Update handler interface, eliminate unnecessary
    argument.
  ACPICA: Update version to 20130823.

David E. Box (1):
  ACPICA: Operation region support: Never free the handler "context"
    pointer.

Lv Zheng (4):
  ACPICA: Add support for host-installed SCI handlers.
  ACPICA: Tables: Cleanup table checksum verification code.
  ACPICA: Tables: Cleanup RSDP signature codes.
  ACPICA: Cleanup exception codes.

Naresh Bhat (1):
  ACPICA: Linux-specific header: enable "aarch64" 64-bit build.

 drivers/acpi/acpica/acdebug.h   |    5 +-
 drivers/acpi/acpica/acevents.h  |    6 +-
 drivers/acpi/acpica/acglobal.h  |   18 +++--
 drivers/acpi/acpica/aclocal.h   |    8 +++
 drivers/acpi/acpica/acnamesp.h  |    6 ++
 drivers/acpi/acpica/evgpeutil.c |    2 +-
 drivers/acpi/acpica/evmisc.c    |   14 ++--
 drivers/acpi/acpica/evregion.c  |   23 ++++---
 drivers/acpi/acpica/evsci.c     |   78 ++++++++++++++++++++--
 drivers/acpi/acpica/evxface.c   |  139 +++++++++++++++++++++++++++++++++++++++
 drivers/acpi/acpica/hwxface.c   |   26 ++++----
 drivers/acpi/acpica/nsaccess.c  |    5 +-
 drivers/acpi/acpica/nsdump.c    |  134 +++++++++++++++++++++++++++++++++++++
 drivers/acpi/acpica/nsxfeval.c  |    8 +++
 drivers/acpi/acpica/tbinstal.c  |   12 +---
 drivers/acpi/acpica/tbprint.c   |   12 +++-
 drivers/acpi/acpica/tbxfroot.c  |    3 +-
 drivers/acpi/acpica/utdebug.c   |    2 +-
 drivers/acpi/acpica/utglobal.c  |    3 +-
 include/acpi/acexcep.h          |    8 ++-
 include/acpi/acpixf.h           |   15 +++--
 include/acpi/actypes.h          |    8 +++
 include/acpi/platform/aclinux.h |    2 +-
 23 files changed, 465 insertions(+), 72 deletions(-)

-- 
1.7.10


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

end of thread, other threads:[~2013-09-27  7:44 UTC | newest]

Thread overview: 49+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-12  8:54 [PATCH 00/14] ACPICA 20130823 Release Lv Zheng
2013-09-12  8:54 ` [PATCH 01/14] ACPICA: Improve error message for "too many parent prefixes" condition Lv Zheng
2013-09-12  8:54 ` [PATCH 02/14] ACPICA: acpi_read: On error, do not modify the return value target location Lv Zheng
2013-09-12  8:54 ` [PATCH 03/14] ACPICA: Debug output: small formatting update, no functional change Lv Zheng
2013-09-12  8:54 ` [PATCH 04/14] ACPICA: Linux-specific header: enable "aarch64" 64-bit build Lv Zheng
2013-09-12  8:54 ` [PATCH 05/14] ACPICA: Debugger: Prevent possible command line buffer overflow Lv Zheng
2013-09-17  0:42   ` Len Brown
2013-09-17  1:15     ` Zheng, Lv
2013-09-17 19:31       ` Brown, Len
2013-09-23  1:36         ` Zheng, Lv
2013-09-12  8:55 ` [PATCH 06/14] ACPICA: Validate start object for acpi_walk_namespace Lv Zheng
2013-09-17  0:44   ` Len Brown
2013-09-17  1:25     ` Zheng, Lv
2013-09-17  2:56       ` Moore, Robert
2013-09-17 19:46         ` Brown, Len
2013-09-17 19:48           ` Moore, Robert
2013-09-23  1:37           ` Zheng, Lv
2013-09-12  8:55 ` [PATCH 07/14] ACPICA: Add support for host-installed SCI handlers Lv Zheng
2013-09-17  0:48   ` Len Brown
2013-09-17  1:07     ` Zheng, Lv
2013-09-17 17:47     ` Moore, Robert
2013-09-12  8:55 ` [PATCH 08/14] ACPICA: Operation region support: Never free the handler "context" pointer Lv Zheng
2013-09-12  8:55 ` [PATCH 09/14] ACPICA: Debugger: Add new command to display full namespace pathnames Lv Zheng
2013-09-12  8:55 ` [PATCH 10/14] ACPICA: Tables: Cleanup table checksum verification code Lv Zheng
2013-09-12  8:55 ` [PATCH 11/14] ACPICA: Tables: Cleanup RSDP signature codes Lv Zheng
2013-09-17  0:51   ` Len Brown
2013-09-17  1:11     ` Zheng, Lv
2013-09-12  8:55 ` [PATCH 12/14] ACPICA: Cleanup exception codes Lv Zheng
2013-09-12  8:55 ` [PATCH 13/14] ACPICA: SCI Handlers: Update handler interface, eliminate unnecessary argument Lv Zheng
2013-09-12  8:55 ` [PATCH 14/14] ACPICA: Update version to 20130823 Lv Zheng
2013-09-17  0:54 ` [PATCH 00/14] ACPICA 20130823 Release Len Brown
2013-09-23  1:50 ` [PATCH v2 " Lv Zheng
2013-09-23  1:51   ` [PATCH v2 01/14] ACPICA: Improve error message for "too many parent prefixes" condition Lv Zheng
2013-09-23  1:51   ` [PATCH v2 02/14] ACPICA: acpi_read: On error, do not modify the return value target location Lv Zheng
2013-09-23  1:51   ` [PATCH v2 03/14] ACPICA: Debug output: small formatting update, no functional change Lv Zheng
2013-09-23  1:51   ` [PATCH v2 04/14] ACPICA: Linux-specific header: enable "aarch64" 64-bit build Lv Zheng
2013-09-23  1:51   ` [PATCH v2 05/14] ACPICA: Debugger: Prevent possible command line buffer overflow, kernel behavior is not affected Lv Zheng
2013-09-23  1:51   ` [PATCH v2 06/14] ACPICA: Validate start object for acpi_walk_namespace Lv Zheng
2013-09-23  1:52   ` [PATCH v2 07/14] ACPICA: Add support for host-installed SCI handlers Lv Zheng
2013-09-23  1:52   ` [PATCH v2 08/14] ACPICA: Operation region support: Never free the handler "context" pointer Lv Zheng
2013-09-23  1:52   ` [PATCH v2 09/14] ACPICA: Debugger: Add new command to display full namespace pathnames Lv Zheng
2013-09-23  1:52   ` [PATCH v2 10/14] ACPICA: Tables: Cleanup table checksum verification code Lv Zheng
2013-09-23  1:52   ` [PATCH v2 11/14] ACPICA: Tables: Cleanup RSDP signature codes Lv Zheng
2013-09-23  1:52   ` [PATCH v2 12/14] ACPICA: Cleanup exception codes Lv Zheng
2013-09-23  1:52   ` [PATCH v2 13/14] ACPICA: SCI Handlers: Update handler interface, eliminate unnecessary argument Lv Zheng
2013-09-23  1:52   ` [PATCH v2 14/14] ACPICA: Update version to 20130823 Lv Zheng
2013-09-23 20:21   ` [PATCH v2 00/14] ACPICA 20130823 Release Brown, Len
2013-09-25 16:00   ` Rafael J. Wysocki
2013-09-27  7:44     ` Zheng, Lv

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