From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34013) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aMcoy-0000UR-08 for qemu-devel@nongnu.org; Fri, 22 Jan 2016 09:36:16 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aMcot-0005cf-Vi for qemu-devel@nongnu.org; Fri, 22 Jan 2016 09:36:15 -0500 Received: from mx1.redhat.com ([209.132.183.28]:38302) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aMcot-0005cb-Ql for qemu-devel@nongnu.org; Fri, 22 Jan 2016 09:36:11 -0500 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (Postfix) with ESMTPS id 46C8FC0AC915 for ; Fri, 22 Jan 2016 14:36:11 +0000 (UTC) From: Igor Mammedov Date: Fri, 22 Jan 2016 15:36:05 +0100 Message-Id: <1453473368-125877-1-git-send-email-imammedo@redhat.com> Subject: [Qemu-devel] [PATCH 0/3] merge SSDT into DSDT List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: mst@redhat.com Merging both tables will allow for futher ASL simplification and cleanups per device/subsystem And it also allows to reduce number of expected binary blobs for ACPI tests which reduces tests maintenance. Boot tested with RHEL72, WS2003, WS2012R2 guests. git tree for testing: https://github.com/imammedo/qemu.git merge_ssdt_into_dsdt_v1 Igor Mammedov (3): pc: acpi: merge SSDT into DSDT tests: pc: acpi: drop not needed 'expected SSDT' blobs tests: pc: acpi: add expected DSDT.bridge blobs and update DSDT blobs hw/i386/acpi-build.c | 246 ++++++++++++++++------------------- tests/acpi-test-data/pc/DSDT | Bin 3028 -> 5478 bytes tests/acpi-test-data/pc/DSDT.bridge | Bin 0 -> 7337 bytes tests/acpi-test-data/pc/SSDT | Bin 2486 -> 0 bytes tests/acpi-test-data/pc/SSDT.bridge | Bin 4345 -> 0 bytes tests/acpi-test-data/q35/DSDT | Bin 7666 -> 8321 bytes tests/acpi-test-data/q35/DSDT.bridge | Bin 0 -> 8338 bytes tests/acpi-test-data/q35/SSDT | Bin 691 -> 0 bytes tests/acpi-test-data/q35/SSDT.bridge | Bin 708 -> 0 bytes 9 files changed, 111 insertions(+), 135 deletions(-) create mode 100644 tests/acpi-test-data/pc/DSDT.bridge delete mode 100644 tests/acpi-test-data/pc/SSDT delete mode 100644 tests/acpi-test-data/pc/SSDT.bridge create mode 100644 tests/acpi-test-data/q35/DSDT.bridge delete mode 100644 tests/acpi-test-data/q35/SSDT delete mode 100644 tests/acpi-test-data/q35/SSDT.bridge -- 1.8.3.1