[PATCH] remove invoke_softirq

From: Christoph Hellwig
Date: Tue Oct 26 2004 - 08:31:59 EST


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();
-
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/