public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH -rt][RESEND] fix preempt hardirqs on OMAP
@ 2006-12-10 16:35 Daniel Walker
  2006-12-11 19:05 ` Ingo Molnar
  0 siblings, 1 reply; 6+ messages in thread
From: Daniel Walker @ 2006-12-10 16:35 UTC (permalink / raw)
  To: mingo; +Cc: tglx, linux-kernel

This should fix hardirq threading when the chained handler disables an interrupt 
while setting IRQ_PENDING. Which happens on ARM OMAP. It also has the effect of 
re-running the interrupt on IRQ_PENDING, which would normally be handled inside
the chained handler. Since this happens inside a thread the chained handler will
just wake up the thread multiple times, leaving the thread to actually rerun the
interrupt.

Signed-Off-By: Daniel Walker <dwalker@mvista.com>

---
 kernel/irq/manage.c |   14 ++++++++++++++
 1 files changed, 14 insertions(+)

Index: linux-2.6.19/kernel/irq/manage.c
===================================================================
--- linux-2.6.19.orig/kernel/irq/manage.c
+++ linux-2.6.19/kernel/irq/manage.c
@@ -546,6 +546,7 @@ static void thread_simple_irq(irq_desc_t
 	unsigned int irq = desc - irq_desc;
 	irqreturn_t action_ret;
 
+restart:
 	if (action && !desc->depth) {
 		spin_unlock(&desc->lock);
 		action_ret = handle_IRQ_event(irq, action);
@@ -555,6 +556,19 @@ static void thread_simple_irq(irq_desc_t
 		if (!noirqdebug)
 			note_interrupt(irq, desc, action_ret);
 	}
+
+	/*
+	 * Some boards will disable an interrupt when it
+	 * sets IRQ_PENDING . So we have to remove the flag
+	 * and re-enable to handle it.
+	 */
+	if (desc->status & IRQ_PENDING) {
+		desc->status &= ~IRQ_PENDING;
+		if (desc->chip)
+			desc->chip->enable(irq);
+		goto restart;
+	}
+
 	desc->status &= ~IRQ_INPROGRESS;
 }
 
--

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2006-12-11 19:59 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-12-10 16:35 [PATCH -rt][RESEND] fix preempt hardirqs on OMAP Daniel Walker
2006-12-11 19:05 ` Ingo Molnar
2006-12-11 19:38   ` Daniel Walker
2006-12-11 19:53     ` Tony Lindgren
2006-12-11 19:54     ` Russell King
2006-12-11 19:59       ` Daniel Walker

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