diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-07-18 15:03:52 (GMT) |
---|---|---|
committer | Emil Medve <Emilian.Medve@Freescale.com> | 2013-05-26 07:13:48 (GMT) |
commit | 28a0e9dfe6116527937d684802505abb73361079 (patch) | |
tree | afb2fb16df3dfccb15d43c6f13b913750668e9c0 | |
parent | 79ecb3d656915511dcecfe49d8f317e7b8d42b66 (diff) | |
download | linux-fsl-qoriq-28a0e9dfe6116527937d684802505abb73361079.tar.xz |
sched: Disable CONFIG_RT_GROUP_SCHED on RT
Carsten reported problems when running:
taskset 01 chrt -f 1 sleep 1
from within rc.local on a F15 machine. The task stays running and
never gets on the run queue because some of the run queues have
rt_throttled=1 which does not go away. Works nice from a ssh login
shell. Disabling CONFIG_RT_GROUP_SCHED solves that as well.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r-- | init/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/init/Kconfig b/init/Kconfig index fbc0785..f6a406d 100644 --- a/init/Kconfig +++ b/init/Kconfig @@ -946,6 +946,7 @@ config RT_GROUP_SCHED bool "Group scheduling for SCHED_RR/FIFO" depends on EXPERIMENTAL depends on CGROUP_SCHED + depends on !PREEMPT_RT_FULL default n help This feature lets you explicitly allocate real CPU bandwidth |