aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2004-10-27 18:33:43 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-10-27 18:33:43 -0700
commit46a20d33b5c522a9d1d0735e675da8abbb7fc527 (patch)
tree79466041da12488f39f4db45566bb086150d9389 /kernel
parentc5391e19762b4c88ac3e81b5dc0389bed60461ab (diff)
downloadhistory-46a20d33b5c522a9d1d0735e675da8abbb7fc527.tar.gz
[PATCH] remove invoke_softirq
This was used by the early irqstacks implementation on s390 and has been replaced by __ARCH_HAS_DO_SOFTIRQ now. Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/softirq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/softirq.c b/kernel/softirq.c
index b2f536818b3dcf..7572ca9ece74a4 100644
--- a/kernel/softirq.c
+++ b/kernel/softirq.c
@@ -145,7 +145,7 @@ void local_bh_enable(void)
preempt_count() -= SOFTIRQ_OFFSET - 1;
if (unlikely(!in_interrupt() && local_softirq_pending()))
- invoke_softirq();
+ do_softirq();
dec_preempt_count();
preempt_check_resched();