aboutsummaryrefslogtreecommitdiff
path: root/init
diff options
context:
space:
mode:
authorSebastian Andrzej Siewior <bigeasy@linutronix.de>2014-03-21 20:19:05 +0100
committerSebastian Andrzej Siewior <bigeasy@linutronix.de>2015-12-23 23:37:06 +0100
commit3da4cab1c14abbc25c13fe33014e82de6fd9e5b0 (patch)
tree6fb3397cb9c78ec7b9fb02ef3c47b110aa94838d /init
parentb8084f70e028697b342d6388b244d6171717fc54 (diff)
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. 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 3185a732113d..6f4408adf62d 100644
--- a/init/Kconfig
+++ b/init/Kconfig
@@ -641,7 +641,7 @@ config TREE_RCU_TRACE
config RCU_BOOST
bool "Enable RCU priority boosting"
depends on RT_MUTEXES && PREEMPT_RCU && RCU_EXPERT
- 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.