sched: cpufreq: use rt_avg as estimate of required RT CPU capacity
authorSteve Muckle <smuckle@linaro.org>
Thu, 25 Aug 2016 22:59:17 +0000 (15:59 -0700)
committerAmit Pundir <amit.pundir@linaro.org>
Wed, 21 Jun 2017 11:07:20 +0000 (16:37 +0530)
commit8c7730ea97d8871a6512b9c0ea8f32a9769a3feb
treee7f51f131c93106dafb5b024c704d99a07dc3a09
parent83ad45692d90c320f16a54335a00e9bc69ad5d69
sched: cpufreq: use rt_avg as estimate of required RT CPU capacity

A policy of going to fmax on any RT activity will be detrimental
for power on many platforms. Often RT accounts for only a small amount
of CPU activity so sending the CPU frequency to fmax is overkill. Worse
still, some platforms may not be able to even complete the CPU frequency
change before the RT activity has already completed.

Cpufreq governors have not treated RT activity this way in the past so
it is not part of the expected semantics of the RT scheduling class. The
DL class offers guarantees about task completion and could be used for
this purpose.

Modify the schedutil algorithm to instead use rt_avg as an estimate of
RT utilization of the CPU.

Based on previous work by Vincent Guittot <vincent.guittot@linaro.org>.

Change-Id: I1ed605a3e2512a94d34217a8e57c3fd97cca60be
Signed-off-by: Steve Muckle <smuckle@linaro.org>
include/linux/sched.h
kernel/sched/cpufreq_schedutil.c