From: Todd Poynor Date: Fri, 6 Apr 2012 08:13:09 +0000 (-0700) Subject: cpufreq: interactive: apply intermediate load to max speed not current X-Git-Tag: firefly_0821_release~4090^2~761 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c9d6c1ff8d0e6064b3c42c9f5a6baf687a30d29b;p=firefly-linux-kernel-4.4.55.git cpufreq: interactive: apply intermediate load to max speed not current Evaluate spikes in load (below go_hispeed_load) against the maximum speed supported by the device, not the current speed (which tends to make it too difficult to raise speed to intermediate levels until very busy). Change-Id: Ib937006abf8bedb60891a739acd733e89b732ae0 Signed-off-by: Todd Poynor --- diff --git a/drivers/cpufreq/cpufreq_interactive.c b/drivers/cpufreq/cpufreq_interactive.c index 62e7456ae509..e3bbe820bb01 100644 --- a/drivers/cpufreq/cpufreq_interactive.c +++ b/drivers/cpufreq/cpufreq_interactive.c @@ -171,7 +171,7 @@ static void cpufreq_interactive_timer(unsigned long data) else new_freq = pcpu->policy->max * cpu_load / 100; } else { - new_freq = pcpu->policy->cur * cpu_load / 100; + new_freq = pcpu->policy->max * cpu_load / 100; } if (cpufreq_frequency_table_target(pcpu->policy, pcpu->freq_table,