projects
/
platform
/
kernel
/
linux-3.10.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b1721d0
)
i386: fix asm constraint in do_IRQ()
author
Jan Beulich
<jbeulich@novell.com>
Tue, 22 Apr 2008 15:16:50 +0000
(16:16 +0100)
committer
Ingo Molnar
<mingo@elte.hu>
Sat, 26 Apr 2008 15:35:46 +0000
(17:35 +0200)
Two prior changes resulted in the "ecx" clobber being lost.
Signed-off-by: Jan Beulich <jbeulich@novell.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
arch/x86/kernel/irq_32.c
patch
|
blob
|
history
diff --git
a/arch/x86/kernel/irq_32.c
b/arch/x86/kernel/irq_32.c
index
6ea67b7
..
00bda7b
100644
(file)
--- a/
arch/x86/kernel/irq_32.c
+++ b/
arch/x86/kernel/irq_32.c
@@
-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