diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-11-14 10:57:54 +0100 |
---|---|---|
committer | Clark Williams <williams@redhat.com> | 2012-02-15 10:32:55 -0600 |
commit | 37d6cc835aed4c5db0eae2b65b3cdf9d76ea86fd (patch) | |
tree | c84c73a27e4379a6fb5535db238b09ee34b30df2 | |
parent | 63cdd5aa3c057532c10e58f96b6507a10948d17d (diff) |
rcu-more-fallout.patch
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r-- | kernel/rcutiny.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/rcutiny.c b/kernel/rcutiny.c index 636af6d9c6e5..6689097c45ec 100644 --- a/kernel/rcutiny.c +++ b/kernel/rcutiny.c @@ -243,6 +243,7 @@ void call_rcu_sched(struct rcu_head *head, void (*func)(struct rcu_head *rcu)) } EXPORT_SYMBOL_GPL(call_rcu_sched); +#ifndef CONFIG_PREEMPT_RT_FULL /* * Post an RCU bottom-half callback to be invoked after any subsequent * quiescent state. @@ -252,3 +253,4 @@ void call_rcu_bh(struct rcu_head *head, void (*func)(struct rcu_head *rcu)) __call_rcu(head, func, &rcu_bh_ctrlblk); } EXPORT_SYMBOL_GPL(call_rcu_bh); +#endif |