[PATCH 2/3] switch frw to use local_soft_irq_pending

From: Christoph Hellwig
Date: Sun Jan 16 2005 - 07:01:28 EST


The newly merged frv do_IRQ code calls softirq_pending(), but always with
the current cpu as argument - switch to local_softirq_pending().

Btw, this usage look bogus to me, any reason you need to call do_softirq
again after you did four lines above in irq_exit(), David?


--- 1.1/arch/frv/kernel/irq.c 2005-01-05 03:48:04 +01:00
+++ edited/arch/frv/kernel/irq.c 2005-01-07 12:27:31 +01:00
@@ -312,7 +312,7 @@

/* only process softirqs if we didn't interrupt another interrupt handler */
if ((__frame->psr & PSR_PIL) == PSR_PIL_0)
- if (softirq_pending(cpu))
+ if (local_softirq_pending())
do_softirq();

#ifdef CONFIG_PREEMPT
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/