linux-kernel.vger.kernel.org archive mirror
 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

* Re: [PATCH 2/3] switch frw to use local_soft_irq_pending
  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
  0 siblings, 0 replies; 2+ messages in thread
From: David Howells @ 2005-01-17 12:14 UTC (permalink / raw)
  To: Christoph Hellwig; +Cc: akpm, linux-kernel


Christoph Hellwig <hch@lst.de> wrote:

> 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?

Because irq_exit() doesn't call do_softirq() in 2.4 where I developed this
arch in the first place. And because 2.6 didn't malfunction due to
do_softirq() being called twice, I didn't notice.

Actually... it's probably also bad that it calls irq_exit() first and then
__clr_MASK(). That means it runs softirq processing with at least one
interrupt level disabled:-/

David

^ 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;
as well as URLs for NNTP newsgroup(s).