summaryrefslogtreecommitdiffstats
path: root/rcu-tiny-merge-bh.patch
blob: c697500bdc2128ae24feb9b26f2ed69f7378952f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Subject: rcu-more-fallout.patch
From: Thomas Gleixner <tglx@linutronix.de>
Date: Mon, 14 Nov 2011 10:57:54 +0100

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
---
 kernel/rcutiny.c |    2 ++
 1 file changed, 2 insertions(+)

Index: linux-stable/kernel/rcutiny.c
===================================================================
--- linux-stable.orig/kernel/rcutiny.c
+++ linux-stable/kernel/rcutiny.c
@@ -368,6 +368,7 @@ void call_rcu_sched(struct rcu_head *hea
 }
 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.
@@ -377,3 +378,4 @@ void call_rcu_bh(struct rcu_head *head, 
 	__call_rcu(head, func, &rcu_bh_ctrlblk);
 }
 EXPORT_SYMBOL_GPL(call_rcu_bh);
+#endif