Commit 0e507913 authored by Arjan van de Ven's avatar Arjan van de Ven Committed by Linus Torvalds

[PATCH] unexport raise_softirq

The patch below unexports raise_softirq().  raise_softirq() is not the
right api for drivers to use, instead raise_softirq_irqoff() is, and
thankfully all in-kernel code is using that variant already.  To avoid
future "accidents", unexport.
Acked-by: default avatarIngo Molnar <mingo@elte.hu>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 6b5506f0
...@@ -183,8 +183,6 @@ void fastcall raise_softirq(unsigned int nr) ...@@ -183,8 +183,6 @@ void fastcall raise_softirq(unsigned int nr)
local_irq_restore(flags); local_irq_restore(flags);
} }
EXPORT_SYMBOL(raise_softirq);
void open_softirq(int nr, void (*action)(struct softirq_action*), void *data) void open_softirq(int nr, void (*action)(struct softirq_action*), void *data)
{ {
softirq_vec[nr].data = data; softirq_vec[nr].data = data;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment