[<prev] [next>] [day] [month] [year] [list]
Message-Id: <480E1D82.76E4.0078.0@novell.com>
Date: Tue, 22 Apr 2008 16:16:50 +0100
From: "Jan Beulich" <jbeulich@...ell.com>
To: <mingo@...e.hu>, <tglx@...utronix.de>, <hpa@...or.com>
Cc: <linux-kernel@...r.kernel.org>
Subject: [PATCH] i386: fix asm constraint in do_IRQ()
Two prior changes resulted in the "ecx" clobber being lost.
Signed-off-by: Jan Beulich <jbeulich@...ell.com>
---
arch/x86/kernel/irq_32.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- linux-2.6.25/arch/x86/kernel/irq_32.c 2008-04-17 04:49:44.000000000 +0200
+++ 2.6.25-i386-do_IRQ-constraints/arch/x86/kernel/irq_32.c 2008-04-15 10:49:20.000000000 +0200
@@ -134,7 +134,7 @@ unsigned int do_IRQ(struct pt_regs *regs
: "=a" (arg1), "=d" (arg2), "=b" (bx)
: "0" (irq), "1" (desc), "2" (isp),
"D" (desc->handle_irq)
- : "memory", "cc"
+ : "memory", "cc", "ecx"
);
} else
#endif
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists