* [PATCH] remove invoke_softirq
@ 2004-10-26 13:28 Christoph Hellwig
0 siblings, 0 replies; only message in thread
From: Christoph Hellwig @ 2004-10-26 13:28 UTC (permalink / raw)
To: akpm; +Cc: linux-kernel
this was used by the early irqstacks implementation on s390 and has been
replaced by __ARCH_HAS_DO_SOFTIRQ now
--- 1.32/include/linux/interrupt.h 2004-10-22 03:45:25 +02:00
+++ edited/include/linux/interrupt.h 2004-10-26 12:51:13 +02:00
@@ -109,10 +109,6 @@
extern void FASTCALL(raise_softirq_irqoff(unsigned int nr));
extern void FASTCALL(raise_softirq(unsigned int nr));
-#ifndef invoke_softirq
-#define invoke_softirq() do_softirq()
-#endif
-
/* Tasklets --- multithreaded analogue of BHs.
--- 1.58/kernel/softirq.c 2004-10-19 07:26:37 +02:00
+++ edited/kernel/softirq.c 2004-10-26 12:51:23 +02:00
@@ -145,7 +145,7 @@
preempt_count() -= SOFTIRQ_OFFSET - 1;
if (unlikely(!in_interrupt() && local_softirq_pending()))
- invoke_softirq();
+ do_softirq();
dec_preempt_count();
preempt_check_resched();
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2004-10-26 13:28 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-10-26 13:28 [PATCH] remove invoke_softirq Christoph Hellwig
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.