The 20140325 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. After applying this series, the divergence result is: 1089 Lines, 38.9 Kbytes. Bob Moore (10): ACPICA: Add EXPORT_SYMBOL macros for install/remove SCI handler interfaces. ACPICA: Update comments for ACPICA name - no functional change. ACPICA: gcc-specific: Fix possible issue with the strchr function. ACPICA: Unload operator: Emit a warning if and when it is ever used. ACPICA: Disassembler: Add support to decode _HID and _CID values. ACPICA: Disassembler: Add decoding of Notify() values. ACPICA: Add a missing field for debug dump of mutex objects. ACPICA: Table Manager: Misc cleanup and renames, no functional change. ACPICA: Table Manager: Split tbinstal.c into two files. ACPICA: Update version to 20140325. Colin Ian King (1): ACPICA: Linux-specific header: Add support for PPC64 compilation. David Binderman (1): ACPICA: utstring: Check array index bound before use. Lv Zheng (16): ACPICA: Update use of acpi_os_wait_events_complete interface. ACPI: Merge divergence of the commmit: ACPICA: Linux-specific header: Update support for Linux/acpi applications. ACPICA: Remove indent divergences to reduce the difficulties of maintaining the revised ACPICA commits. ACPICA: Tables: Fix the issues in handling virtual addressed tables. ACPICA: Tables: Fix the issue that multiple ACPI_FREE()s are invoked for same pointer around acpi_tb_add_table(). ACPICA: Tables: Cleanup split INSTALLED/VALIDATED table state logics. ACPICA: Tables: Fix the issue that table validations are not balanced. ACPICA: Tables: Fix the issue that table checksums are not always verified before installation. ACPICA: Tables: Cleanup ACPI_TABLE_ORIGIN_xxx flags. ACPICA: Tables: Avoid SSDT installation when acpi_gbl_disable_ssdt_table_load is specified. ACPICA: Tables: Add acpi_install_table() API to be invoked by OSPM early table installation. ACPICA: acpidump: Add support to generate acpidump release. ACPICA: acpidump: Update new structures and add missing file. ACPICA: acpidump: Update Makefile to use new acpidump. ACPICA: acpidump: Remove old acpidump source. ACPICA: acpidump: Update manual file. Documentation/kernel-parameters.txt | 10 +- drivers/acpi/acpica/Makefile | 1 + drivers/acpi/acpica/acapps.h | 170 +++ drivers/acpi/acpica/acglobal.h | 9 +- drivers/acpi/acpica/aclocal.h | 8 +- drivers/acpi/acpica/actables.h | 60 +- drivers/acpi/acpica/acutils.h | 10 +- drivers/acpi/acpica/evmisc.c | 3 +- drivers/acpi/acpica/evsci.c | 2 +- drivers/acpi/acpica/evxface.c | 61 +- drivers/acpi/acpica/exconfig.c | 82 +- drivers/acpi/acpica/exdump.c | 4 +- drivers/acpi/acpica/tbdata.c | 723 +++++++++++ drivers/acpi/acpica/tbfadt.c | 10 +- drivers/acpi/acpica/tbfind.c | 4 +- drivers/acpi/acpica/tbinstal.c | 837 +++++-------- drivers/acpi/acpica/tbutils.c | 171 +-- drivers/acpi/acpica/tbxface.c | 18 +- drivers/acpi/acpica/tbxfload.c | 87 +- drivers/acpi/acpica/utdecode.c | 74 +- drivers/acpi/acpica/utstring.c | 2 +- drivers/acpi/osl.c | 11 +- include/acpi/acpixf.h | 7 +- include/acpi/actbl.h | 11 +- include/acpi/platform/acgcc.h | 11 + include/acpi/platform/aclinux.h | 5 +- tools/power/acpi/Makefile | 26 +- tools/power/acpi/common/cmfsize.c | 101 ++ tools/power/acpi/common/getopt.c | 239 ++++ tools/power/acpi/man/acpidump.8 | 85 +- .../acpi/os_specific/service_layers/oslinuxtbl.c | 1275 ++++++++++++++++++++ .../acpi/os_specific/service_layers/osunixdir.c | 204 ++++ .../acpi/os_specific/service_layers/osunixmap.c | 151 +++ tools/power/acpi/tools/acpidump/acpidump.c | 559 --------- tools/power/acpi/tools/acpidump/acpidump.h | 131 ++ tools/power/acpi/tools/acpidump/apdump.c | 451 +++++++ tools/power/acpi/tools/acpidump/apfiles.c | 228 ++++ tools/power/acpi/tools/acpidump/apmain.c | 340 ++++++ 38 files changed, 4780 insertions(+), 1401 deletions(-) create mode 100644 drivers/acpi/acpica/acapps.h create mode 100644 drivers/acpi/acpica/tbdata.c create mode 100644 tools/power/acpi/common/cmfsize.c create mode 100644 tools/power/acpi/common/getopt.c create mode 100644 tools/power/acpi/os_specific/service_layers/oslinuxtbl.c create mode 100644 tools/power/acpi/os_specific/service_layers/osunixdir.c create mode 100644 tools/power/acpi/os_specific/service_layers/osunixmap.c delete mode 100644 tools/power/acpi/tools/acpidump/acpidump.c create mode 100644 tools/power/acpi/tools/acpidump/acpidump.h create mode 100644 tools/power/acpi/tools/acpidump/apdump.c create mode 100644 tools/power/acpi/tools/acpidump/apfiles.c create mode 100644 tools/power/acpi/tools/acpidump/apmain.c -- 1.7.10 -- To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html