diff mbox series

[RFC,V2,2/6] cpufreq: schedutil: Set dynamic_switching to true

Message ID 2b68422c8b9ecd1561cc283bb2f8fa68517f07e7.1499853492.git.viresh.kumar@linaro.org
State Superseded
Headers show
Series cpufreq: transition-latency cleanups | expand

Commit Message

Viresh Kumar July 13, 2017, 5:40 a.m. UTC
Set dynamic_switching to 'true' to disallow use of schedutil governor
for platforms with transition_latency set to CPUFREQ_ETERNAL, as they
may not want to do automatic dynamic frequency switching.

Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>

---
 kernel/sched/cpufreq_schedutil.c | 1 +
 1 file changed, 1 insertion(+)

-- 
2.13.0.71.gd7076ec9c9cb
diff mbox series

Patch

diff --git a/kernel/sched/cpufreq_schedutil.c b/kernel/sched/cpufreq_schedutil.c
index 076a2e31951c..ab9d7a1b43dc 100644
--- a/kernel/sched/cpufreq_schedutil.c
+++ b/kernel/sched/cpufreq_schedutil.c
@@ -650,6 +650,7 @@  static void sugov_limits(struct cpufreq_policy *policy)
 static struct cpufreq_governor schedutil_gov = {
 	.name = "schedutil",
 	.owner = THIS_MODULE,
+	.dynamic_switching = true,
 	.init = sugov_init,
 	.exit = sugov_exit,
 	.start = sugov_start,