sched/core: Fix PELT jump to max OPP upon util increase

Change-Id: Ic80b588ec466ef707f658dcea039fd0d6b384b63
Signed-off-by: Andres Oportus <andresoportus@google.com>
This commit is contained in:
Andres Oportus 2017-02-23 11:58:22 -08:00
parent 55af384815
commit aa8882923a

View file

@ -2969,9 +2969,10 @@ unsigned long sum_capacity_reqs(unsigned long cfs_cap,
return total += scr->dl;
}
unsigned long boosted_cpu_util(int cpu);
static void sched_freq_tick_pelt(int cpu)
{
unsigned long cpu_utilization = capacity_max;
unsigned long cpu_utilization = boosted_cpu_util(cpu);
unsigned long capacity_curr = capacity_curr_of(cpu);
struct sched_capacity_reqs *scr;