From patchwork Thu Aug 13 12:47:10 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gerd Hoffmann X-Patchwork-Id: 31295 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by bilbo.ozlabs.org (Postfix) with ESMTPS id BCFB2B6F34 for ; Thu, 13 Aug 2009 22:48:16 +1000 (EST) Received: from localhost ([127.0.0.1]:39233 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MbZiy-0004ob-Nq for incoming@patchwork.ozlabs.org; Thu, 13 Aug 2009 08:48:08 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MbZiH-0004ih-GI for qemu-devel@nongnu.org; Thu, 13 Aug 2009 08:47:25 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MbZiC-0004hk-HP for qemu-devel@nongnu.org; Thu, 13 Aug 2009 08:47:24 -0400 Received: from [199.232.76.173] (port=59001 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MbZiC-0004hd-1N for qemu-devel@nongnu.org; Thu, 13 Aug 2009 08:47:20 -0400 Received: from mx2.redhat.com ([66.187.237.31]:43954) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MbZiB-0005Ct-DC for qemu-devel@nongnu.org; Thu, 13 Aug 2009 08:47:19 -0400 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id n7DClFbi032510; Thu, 13 Aug 2009 08:47:15 -0400 Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx2.corp.redhat.com (8.13.1/8.13.1) with ESMTP id n7DClESx029167; Thu, 13 Aug 2009 08:47:14 -0400 Received: from zweiblum.home.kraxel.org (vpn2-8-91.ams2.redhat.com [10.36.8.91]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id n7DClBkn030219; Thu, 13 Aug 2009 08:47:12 -0400 Message-ID: <4A840B4E.7050801@redhat.com> Date: Thu, 13 Aug 2009 14:47:10 +0200 From: Gerd Hoffmann User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1b3pre) Gecko/20090513 Fedora/3.0-2.3.beta2.fc11 Lightning/1.0pre Thunderbird/3.0b2 MIME-Version: 1.0 To: Avi Kivity Subject: Re: [Qemu-devel] virtio-blk/qdev failure in the current git tree References: <20090810235646.GA12872@lst.de> <4A80BB6B.3020001@codemonkey.ws> <20090811161302.GA2053@lst.de> <20090811163638.GA4891@lst.de> <4A81C669.8070300@redhat.com> <4A828ABF.1040306@redhat.com> <4A8292DB.9000609@redhat.com> <20090812215032.GA28376@lst.de> <4A833B9C.6000803@codemonkey.ws> <4A83D613.5070408@redhat.com> In-Reply-To: <4A83D613.5070408@redhat.com> X-Scanned-By: MIMEDefang 2.58 on 172.16.27.26 X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 3) Cc: Christoph Hellwig , qemu-devel@nongnu.org X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org On 08/13/09 11:00, Avi Kivity wrote: >> Where were the irq routing trouble fixes in qemu-kvm? Was it fixes in >> the BIOS? > > I think so, but not 100% sure. Lets start with the attached fix. bochs build system doesn't compile the dsdt. Which implies that the patches in pc-bios/bios-pq/ which change the dsdt have no effect at all. cheers, Gerd From 6f50c206451bd8454ba0c1ec72728257946de65c Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Thu, 13 Aug 2009 14:33:11 +0200 Subject: [PATCH 2/2] actually compile dsdt --- bios/Makefile.in | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/bios/Makefile.in b/bios/Makefile.in index 28ada75..7d8a65a 100644 --- a/bios/Makefile.in +++ b/bios/Makefile.in @@ -103,13 +103,11 @@ rombios32.out: rombios32start.o rombios32.o rombios32.ld rombios32.o: rombios32.c acpi-dsdt.hex $(GCC32) -O2 -Wall -c -o $@ $< -ifeq ("1", "0") acpi-dsdt.hex: acpi-dsdt.dsl cpp -P $< $<.i iasl -tc -p $@ $<.i rm $<.i sed -i -e's/^unsigned/const unsigned/' $@ -endif rombios32start.o: rombios32start.S $(GCC32) -c -o $@ $<