summaryrefslogtreecommitdiff
path: root/init
diff options
context:
space:
mode:
authorSebastian Andrzej Siewior <bigeasy@linutronix.de>2014-03-21 19:19:05 (GMT)
committerScott Wood <scottwood@freescale.com>2015-02-13 22:21:09 (GMT)
commitebdd922cec8676ab24dc126416d96551f2196fc2 (patch)
treea2490a250e8f64e5f5e2046394f540eecf500a0f /init
parent11031b0d0dcdfc91ebb38a683fccca91e3e0df50 (diff)
downloadlinux-fsl-qoriq-ebdd922cec8676ab24dc126416d96551f2196fc2.tar.xz
rcu: make RCU_BOOST default on RT
Since it is no longer invoked from the softirq people run into OOM more often if the priority of the RCU thread is too low. Making boosting default on RT should help in those case and it can be switched off if someone knows better. Cc: stable-rt@vger.kernel.org Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Diffstat (limited to 'init')
-rw-r--r--init/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/init/Kconfig b/init/Kconfig
index 4be3c6c..836b34e 100644
--- a/init/Kconfig
+++ b/init/Kconfig
@@ -642,7 +642,7 @@ config TREE_RCU_TRACE
config RCU_BOOST
bool "Enable RCU priority boosting"
depends on RT_MUTEXES && PREEMPT_RCU
- default n
+ default y if PREEMPT_RT_FULL
help
This option boosts the priority of preempted RCU readers that
block the current preemptible RCU grace period for too long.