From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Lu6Jy-0005v7-Dx for qemu-devel@nongnu.org; Wed, 15 Apr 2009 10:42:38 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Lu6Jx-0005uT-3u for qemu-devel@nongnu.org; Wed, 15 Apr 2009 10:42:38 -0400 Received: from [199.232.76.173] (port=50610 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Lu6Jw-0005uN-Qt for qemu-devel@nongnu.org; Wed, 15 Apr 2009 10:42:36 -0400 Received: from savannah.gnu.org ([199.232.41.3]:43268 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Lu6Jv-0002M3-Hx for qemu-devel@nongnu.org; Wed, 15 Apr 2009 10:42:36 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Lu6Jr-00080G-6t for qemu-devel@nongnu.org; Wed, 15 Apr 2009 14:42:31 +0000 Received: from aurel32 by cvs.savannah.gnu.org with local (Exim 4.69) (envelope-from ) id 1Lu6Jr-00080C-0Y for qemu-devel@nongnu.org; Wed, 15 Apr 2009 14:42:31 +0000 MIME-Version: 1.0 Errors-To: aurel32 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Aurelien Jarno Message-Id: Date: Wed, 15 Apr 2009 14:42:31 +0000 Subject: [Qemu-devel] [7108] target-alpha: lower parent irq when irq is lowered. Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Revision: 7108 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=7108 Author: aurel32 Date: 2009-04-15 14:42:30 +0000 (Wed, 15 Apr 2009) Log Message: ----------- target-alpha: lower parent irq when irq is lowered. Signed-off-by: Tristan Gingold Signed-off-by: Aurelien Jarno Modified Paths: -------------- trunk/hw/i8259.c Modified: trunk/hw/i8259.c =================================================================== --- trunk/hw/i8259.c 2009-04-15 14:42:00 UTC (rev 7107) +++ trunk/hw/i8259.c 2009-04-15 14:42:30 UTC (rev 7108) @@ -169,7 +169,7 @@ } /* all targets should do this rather than acking the IRQ in the cpu */ -#if defined(TARGET_MIPS) || defined(TARGET_PPC) +#if defined(TARGET_MIPS) || defined(TARGET_PPC) || defined(TARGET_ALPHA) else { qemu_irq_lower(s->parent_irq); }