From mboxrd@z Thu Jan 1 00:00:00 1970 From: Juan Quintela Subject: [PATH]: Add missing spin_unlock_irq() to x86 Date: 05 May 2006 12:45:15 +0200 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: xen-devel@lists.xensource.com List-Id: xen-devel@lists.xenproject.org Add missing spin_unlock_irq() at xen/arch/x86/irq.c Changeset 9889:42a8e3101c6c reorganized the code on this file, and missed this spin_unlock_irq(). Without this patch, my machine hang completely during boot. With this, it works. Signed-off-by: Juan Quintela Signed-off-by: Chris Wright diff -r 1a84eec74331 xen/arch/x86/irq.c --- a/xen/arch/x86/irq.c Thu May 04 11:24:19 2006 +0100 +++ b/xen/arch/x86/irq.c Thu May 04 19:19:46 2006 +0200 @@ -318,6 +318,7 @@ static void __pirq_guest_eoi(struct doma { ASSERT(cpus_empty(action->cpu_eoi_map)); desc->handler->end(irq_to_vector(irq)); + spin_unlock_irq(&desc->lock); return; }