All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/21] ACPICA: 20131218 Release
@ 2014-01-08  5:43 Lv Zheng
  2014-01-08  5:43 ` [PATCH 01/21] ACPICA: Debug output: Fix a couple of small output issues Lv Zheng
                   ` (21 more replies)
  0 siblings, 22 replies; 23+ messages in thread
From: Lv Zheng @ 2014-01-08  5:43 UTC (permalink / raw)
  To: Rafael J. Wysocki, Robert Moore, Len Brown; +Cc: Lv Zheng, Lv Zheng, linux-acpi

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

The patch set 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
   All ACPI drivers
   4 DRM drivers that implement ACPI opregion
   All buses with ACPI bindings
   All cpufreq configurations
   All xen configurations
   All ACPI tabln drivers
4. allyes: kernel configuration generated by allyesconfig.

Betty Dall (1):
  ACPICA: Add helper macros to extract bus/segment numbers from HEST
    table.

Bob Moore (14):
  ACPICA: Debug output: Fix a couple of small output issues.
  ACPICA: Disassembler: Improve pathname support for emitted External()
    statements.
  ACPICA: Add option to favor 32-bit FADT addresses.
  ACPICA: Tables: Add full support for the DBG2 table.
  ACPICA: Tables: Add full support for the PCCT table, update table
    definition.
  ACPICA: Improve exception handling for GPE block installation.
  ACPICA: Update several debug statements - no functional change.
  ACPICA: Enhance ACPI warning for memory/IO address conflicts.
  ACPICA: Parser: Updates/fixes for debug output.
  ACPICA: Conditionally define a local variable that is used for debug
    only.
  ACPICA: Add an error message if the Debugger fails initialization.
  ACPICA: Update ACPI example code to make it an actual working
    program.
  ACPICA: Interpreter: Add additional debug info for an error case.
  ACPICA: Update version to 20131218.

Lv Zheng (6):
  ACPICA: Remove unused ACPI_FREE_BUFFER macro. No functional change.
  ACPICA: Linux Header: Remove unused OSL prototypes.
  ACPICA: Back port and refine validation of the XSDT root table.
  ACPICA: Cleanup the option of forcing the use of the RSDT.
  ACPICA: AcpiSrc: Cleanup spaces after special macro invocations.
  ACPICA: Utilities: Cleanup declarations of the acpi_gbl_debug_file
    global.

 arch/ia64/kernel/acpi.c         |    1 -
 arch/x86/kernel/acpi/boot.c     |    3 +-
 drivers/acpi/acpica/acdebug.h   |    1 -
 drivers/acpi/acpica/acevents.h  |    9 +-
 drivers/acpi/acpica/acglobal.h  |   30 ++++
 drivers/acpi/acpica/aclocal.h   |    9 +-
 drivers/acpi/acpica/dsfield.c   |    2 +-
 drivers/acpi/acpica/dsutils.c   |   19 ++-
 drivers/acpi/acpica/dswload.c   |    4 +-
 drivers/acpi/acpica/evgpeblk.c  |    8 +-
 drivers/acpi/acpica/evgpeutil.c |   24 +--
 drivers/acpi/acpica/exresnte.c  |    3 +-
 drivers/acpi/acpica/nsxfeval.c  |   23 +--
 drivers/acpi/acpica/psopinfo.c  |   51 +++++-
 drivers/acpi/acpica/tbfadt.c    |  335 +++++++++++++++++++++------------------
 drivers/acpi/acpica/tbutils.c   |  214 ++++++++++++++-----------
 drivers/acpi/acpica/utaddress.c |   19 ++-
 drivers/acpi/acpica/utalloc.c   |   10 +-
 drivers/acpi/acpica/utcache.c   |   12 +-
 drivers/acpi/acpica/utdebug.c   |    4 +-
 drivers/acpi/acpica/utglobal.c  |    4 -
 drivers/acpi/acpica/utxfinit.c  |   12 +-
 include/acpi/acpixf.h           |   39 ++---
 include/acpi/actbl.h            |    3 +
 include/acpi/actbl1.h           |   10 +-
 include/acpi/actbl2.h           |    5 +
 include/acpi/actbl3.h           |   15 +-
 include/acpi/actypes.h          |   12 +-
 include/acpi/platform/acenv.h   |   20 ++-
 include/acpi/platform/aclinux.h |    4 -
 30 files changed, 538 insertions(+), 367 deletions(-)

-- 
1.7.10


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

end of thread, other threads:[~2014-01-08 14:38 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-08  5:43 [PATCH 00/21] ACPICA: 20131218 Release Lv Zheng
2014-01-08  5:43 ` [PATCH 01/21] ACPICA: Debug output: Fix a couple of small output issues Lv Zheng
2014-01-08  5:43 ` [PATCH 02/21] ACPICA: Disassembler: Improve pathname support for emitted External() statements Lv Zheng
2014-01-08  5:43 ` [PATCH 03/21] ACPICA: Remove unused ACPI_FREE_BUFFER macro. No functional change Lv Zheng
2014-01-08  5:43 ` [PATCH 04/21] ACPICA: Linux Header: Remove unused OSL prototypes Lv Zheng
2014-01-08  5:43 ` [PATCH 05/21] ACPICA: Back port and refine validation of the XSDT root table Lv Zheng
2014-01-08  5:43 ` [PATCH 06/21] ACPICA: Cleanup the option of forcing the use of the RSDT Lv Zheng
2014-01-08  5:43 ` [PATCH 07/21] ACPICA: Add option to favor 32-bit FADT addresses Lv Zheng
2014-01-08  5:43 ` [PATCH 08/21] ACPICA: Tables: Add full support for the DBG2 table Lv Zheng
2014-01-08  5:43 ` [PATCH 09/21] ACPICA: Tables: Add full support for the PCCT table, update table definition Lv Zheng
2014-01-08  5:44 ` [PATCH 10/21] ACPICA: Add helper macros to extract bus/segment numbers from HEST table Lv Zheng
2014-01-08  5:44 ` [PATCH 11/21] ACPICA: Improve exception handling for GPE block installation Lv Zheng
2014-01-08  5:44 ` [PATCH 12/21] ACPICA: Update several debug statements - no functional change Lv Zheng
2014-01-08  5:44 ` [PATCH 13/21] ACPICA: Enhance ACPI warning for memory/IO address conflicts Lv Zheng
2014-01-08  5:44 ` [PATCH 14/21] ACPICA: Parser: Updates/fixes for debug output Lv Zheng
2014-01-08  5:44 ` [PATCH 15/21] ACPICA: Conditionally define a local variable that is used for debug only Lv Zheng
2014-01-08  5:44 ` [PATCH 16/21] ACPICA: Add an error message if the Debugger fails initialization Lv Zheng
2014-01-08  5:44 ` [PATCH 17/21] ACPICA: Update ACPI example code to make it an actual working program Lv Zheng
2014-01-08  5:44 ` [PATCH 18/21] ACPICA: Interpreter: Add additional debug info for an error case Lv Zheng
2014-01-08  5:44 ` [PATCH 19/21] ACPICA: Linuxize: Cleanup spaces after special macro invocations Lv Zheng
2014-01-08  5:45 ` [PATCH 20/21] ACPICA: Utilities: Cleanup declarations of the acpi_gbl_debug_file global Lv Zheng
2014-01-08  5:45 ` [PATCH 21/21] ACPICA: Update version to 20131218 Lv Zheng
2014-01-08 14:52 ` [PATCH 00/21] ACPICA: 20131218 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.