diff options
author | John Kacur <jkacur@redhat.com> | 2011-11-14 02:44:43 +0100 |
---|---|---|
committer | Clark Williams <williams@redhat.com> | 2012-04-13 11:01:39 -0500 |
commit | c7e65a6f155b58b60d3fe70c6523f5c9897951fe (patch) | |
tree | f4dd7a51aa225666fb61e3f0708102dca699409a | |
parent | 18d861e7b7b9c057503be93fd9923f2ffd29117d (diff) |
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>
-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 a6207be9b50a..5741cf7ddb17 100644 --- a/kernel/softirq.c +++ b/kernel/softirq.c @@ -439,6 +439,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 |