From patchwork Thu Dec 24 12:37:16 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gleb Natapov X-Patchwork-Id: 69709 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.3/8.14.2) with ESMTP id nBOCbW16032520 for ; Thu, 24 Dec 2009 12:37:32 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751420AbZLXMh1 (ORCPT ); Thu, 24 Dec 2009 07:37:27 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751441AbZLXMh1 (ORCPT ); Thu, 24 Dec 2009 07:37:27 -0500 Received: from mx1.redhat.com ([209.132.183.28]:46072 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750998AbZLXMh0 (ORCPT ); Thu, 24 Dec 2009 07:37:26 -0500 Received: from int-mx03.intmail.prod.int.phx2.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.16]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id nBOCbH3i013978 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 24 Dec 2009 07:37:17 -0500 Received: from dhcp-1-237.tlv.redhat.com (dhcp-1-237.tlv.redhat.com [10.35.1.237]) by int-mx03.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id nBOCbGii019417; Thu, 24 Dec 2009 07:37:17 -0500 Received: by dhcp-1-237.tlv.redhat.com (Postfix, from userid 13519) id 2F6951336CD; Thu, 24 Dec 2009 14:37:16 +0200 (IST) Date: Thu, 24 Dec 2009 14:37:16 +0200 From: Gleb Natapov To: seabios@seabios.org Cc: kvm@vger.kernel.org Subject: [PATCH] prevent acpi from rerouting SCI interrupt Message-ID: <20091224123716.GA5691@redhat.com> MIME-Version: 1.0 Content-Disposition: inline X-Scanned-By: MIMEDefang 2.67 on 10.5.11.16 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org diff --git a/src/acpi-dsdt.dsl b/src/acpi-dsdt.dsl index cee038a..2bede25 100644 --- a/src/acpi-dsdt.dsl +++ b/src/acpi-dsdt.dsl @@ -58,7 +58,10 @@ DefinitionBlock ( #define prt_slot2(nr) prt_slot(nr, LNKB, LNKC, LNKD, LNKA) #define prt_slot3(nr) prt_slot(nr, LNKC, LNKD, LNKA, LNKB) prt_slot0(0x0000), - prt_slot1(0x0001), + Package() { 0x0001ffff, 0, 0, 9 }, + Package() { 0x0001ffff, 1, LNKB, 0 }, + Package() { 0x0001ffff, 2, LNKC, 0 }, + Package() { 0x0001ffff, 3, LNKD, 0 }, prt_slot2(0x0002), prt_slot3(0x0003), prt_slot0(0x0004),