diff options
author | John Kacur <jkacur@redhat.com> | 2011-11-14 01:44:43 (GMT) |
---|---|---|
committer | Scott Wood <scottwood@freescale.com> | 2013-04-04 22:09:24 (GMT) |
commit | ba4b90074c24413febf1c542aab2245dca450a3a (patch) | |
tree | 4c742bf61c3519b4b5954b04d59f811428baece3 /kernel/softirq.c | |
parent | cde2be3a7c7b4e3f0b4f9ac34460b5ef0a8217ab (diff) | |
download | linux-fsl-qoriq-ba4b90074c24413febf1c542aab2245dca450a3a.tar.xz |
softirq: Export in_serving_softirq()
ERROR: "in_serving_softirq" [net/sched/cls_cgroup.ko] undefined!
The above can be fixed by exporting in_serving_softirq
Signed-off-by: John Kacur <jkacur@redhat.com>
Cc: Paul McKenney <paulmck@linux.vnet.ibm.com>
Cc: stable-rt@vger.kernel.org
Link: http://lkml.kernel.org/r/1321235083-21756-2-git-send-email-jkacur@redhat.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel/softirq.c')
-rw-r--r-- | kernel/softirq.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/softirq.c b/kernel/softirq.c index 4cdca2e..bca3e64 100644 --- a/kernel/softirq.c +++ b/kernel/softirq.c @@ -431,6 +431,7 @@ int in_serving_softirq(void) preempt_enable(); return res; } +EXPORT_SYMBOL(in_serving_softirq); /* * Called with bh and local interrupts disabled. For full RT cpu must |