public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 2/3] switch frw to use local_soft_irq_pending
@ 2005-01-16 11:58 Christoph Hellwig
  2005-01-17 12:14 ` David Howells
  0 siblings, 1 reply; 2+ messages in thread
From: Christoph Hellwig @ 2005-01-16 11:58 UTC (permalink / raw)
  To: akpm; +Cc: dhowells, linux-kernel

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

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

end of thread, other threads:[~2005-01-17 12:15 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-01-16 11:58 [PATCH 2/3] switch frw to use local_soft_irq_pending Christoph Hellwig
2005-01-17 12:14 ` David Howells

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