Commit e8a02572 authored by Alexander Clouter's avatar Alexander Clouter Committed by Dominik Brodowski

[PATCH] cpufreq_conservative: alter default responsiveness

The sensible approach to making conservative less responsive than ondemand :)
As mentioned in patch [1/4].  We do not want conservative to shoot through
all the frequencies, its point (by default) is to slowly move through them.

By default its ten times less responsive.
Signed-off-by: default avatarAlexander Clouter <alex-kernel@digriz.org.uk>
Signed-off-by: default avatarDominik Brodowski <linux@dominikbrodowski.net>
parent 2c906b31
...@@ -509,7 +509,7 @@ static int cpufreq_governor_dbs(struct cpufreq_policy *policy, ...@@ -509,7 +509,7 @@ static int cpufreq_governor_dbs(struct cpufreq_policy *policy,
if (latency == 0) if (latency == 0)
latency = 1; latency = 1;
def_sampling_rate = latency * def_sampling_rate = 10 * latency *
DEF_SAMPLING_RATE_LATENCY_MULTIPLIER; DEF_SAMPLING_RATE_LATENCY_MULTIPLIER;
if (def_sampling_rate < MIN_STAT_SAMPLING_RATE) if (def_sampling_rate < MIN_STAT_SAMPLING_RATE)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment