Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e9e7cb38 authored by Juri Lelli's avatar Juri Lelli Committed by Thomas Gleixner
Browse files

sched/core: Fix sched_rt_global_validate



Don't compare sysctl_sched_rt_runtime against sysctl_sched_rt_period if
the former is equal to RUNTIME_INF, otherwise disabling -rt bandwidth
management (with CONFIG_RT_GROUP_SCHED=n) fails.

Cc: Ingo Molnar <mingo@redhat.com>
Signed-off-by: default avatarJuri Lelli <juri.lelli@gmail.com>
Signed-off-by: default avatarPeter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/1392107067-19907-2-git-send-email-juri.lelli@gmail.com


Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent 4df1638c
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -7475,7 +7475,8 @@ static int sched_rt_global_validate(void)
	if (sysctl_sched_rt_period <= 0)
		return -EINVAL;

	if (sysctl_sched_rt_runtime > sysctl_sched_rt_period)
	if ((sysctl_sched_rt_runtime != RUNTIME_INF) &&
		(sysctl_sched_rt_runtime > sysctl_sched_rt_period))
		return -EINVAL;

	return 0;