Skip to content

Commit

Permalink
[PATCH] cpufreq_conservative: alter default responsiveness
Browse files Browse the repository at this point in the history
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: Alexander Clouter <alex-kernel@digriz.org.uk>
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
  • Loading branch information
Alexander Clouter authored and Dominik Brodowski committed Mar 26, 2006
1 parent 2c906b3 commit e8a0257
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/cpufreq/cpufreq_conservative.c
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ static int cpufreq_governor_dbs(struct cpufreq_policy *policy,
if (latency == 0)
latency = 1;

def_sampling_rate = latency *
def_sampling_rate = 10 * latency *
DEF_SAMPLING_RATE_LATENCY_MULTIPLIER;

if (def_sampling_rate < MIN_STAT_SAMPLING_RATE)
Expand Down

0 comments on commit e8a0257

Please sign in to comment.