linux/debian/patches-rt/0113-sched-Disable-TTWU_QUE...

35 lines
1.1 KiB
Diff
Raw Normal View History

From: Thomas Gleixner <tglx@linutronix.de>
Date: Tue, 13 Sep 2011 16:42:35 +0200
2019-11-25 00:04:39 +00:00
Subject: [PATCH 113/290] sched: Disable TTWU_QUEUE on RT
Origin: https://git.kernel.org/cgit/linux/kernel/git/rt/linux-stable-rt.git/commit?id=f1730e401e00fbd36906e5083279d065661f685a
The queued remote wakeup mechanism can introduce rather large
latencies if the number of migrated tasks is high. Disable it for RT.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
---
2019-04-08 23:49:20 +00:00
kernel/sched/features.h | 5 +++++
1 file changed, 5 insertions(+)
2019-04-08 23:49:20 +00:00
diff --git a/kernel/sched/features.h b/kernel/sched/features.h
index 85ae8488039c..68de18405857 100644
--- a/kernel/sched/features.h
+++ b/kernel/sched/features.h
@@ -46,11 +46,16 @@ SCHED_FEAT(LB_BIAS, true)
*/
SCHED_FEAT(NONTASK_CAPACITY, true)
+#ifdef CONFIG_PREEMPT_RT_FULL
+SCHED_FEAT(TTWU_QUEUE, false)
+#else
+
/*
* Queue remote wakeups on the target CPU and process them
* using the scheduler IPI. Reduces rq->lock contention/bounces.
*/
SCHED_FEAT(TTWU_QUEUE, true)
+#endif
/*
* When doing wakeups, attempt to limit superfluous scans of the LLC domain.