public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH -tip] x86: do_IRQ - send EOI for x86-32 on irq without handler v3
@ 2009-04-08 19:36 Cyrill Gorcunov
  0 siblings, 0 replies; only message in thread
From: Cyrill Gorcunov @ 2009-04-08 19:36 UTC (permalink / raw)
  To: Ingo Molnar, H. Peter Anvin, Thomas Gleixner; +Cc: LKML, Yinghai Lu

For X86-32 if IRQ has no handler it remains non-Ack'ed
even if APIC is not requested for being disabled.

Since disable_apic depends on CONFIG_X86_LOCAL_APIC rather
then CONFIG_X86_64 we could bring tiny fix here.

Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
---
 arch/x86/kernel/irq.c |   10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

Ingo it's an interim fix.

I didn't manage yet to implement what you proposed
(marked http://lkml.org/lkml/2009/4/8/549).

Index: linux-2.6.git/arch/x86/kernel/irq.c
=====================================================================
--- linux-2.6.git.orig/arch/x86/kernel/irq.c
+++ linux-2.6.git/arch/x86/kernel/irq.c
@@ -223,10 +223,16 @@ unsigned int __irq_entry do_IRQ(struct p
 	irq = __get_cpu_var(vector_irq)[vector];
 
 	if (!handle_irq(irq, regs)) {
-#ifdef CONFIG_X86_64
+		/*
+		 * FIXME: Actually we could go further and replace
+		 * ack_APIC_irq->apic_write->apic->write with a NOP
+		 * operation as only disable_apic is set and happily call
+		 * ack_APIC_irq after that without any tests
+		 */
+#ifdef CONFIG_X86_LOCAL_APIC
 		if (!disable_apic)
-			ack_APIC_irq();
 #endif
+			ack_APIC_irq();
 
 		if (printk_ratelimit())
 			printk(KERN_EMERG "%s: %d.%d No irq handler for vector (irq %d)\n",

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-04-08 19:37 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-08 19:36 [PATCH -tip] x86: do_IRQ - send EOI for x86-32 on irq without handler v3 Cyrill Gorcunov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox