aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/cpufreq
diff options
context:
space:
mode:
authorAlexander Clouter <alex@digriz.org.uk>2006-03-22 04:56:23 -0500
committerDominik Brodowski <linux@dominikbrodowski.net>2006-03-26 03:13:21 -0500
commite8a02572252f9115c2b8296c40fd8b985f06f872 (patch)
treef6d161e1c47b9ea675f7aa552d618464314c926c /drivers/cpufreq
parent2c906b317b2d9c7e32b0d513e102bd68a2c49112 (diff)
[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: Alexander Clouter <alex-kernel@digriz.org.uk> Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'drivers/cpufreq')
-rw-r--r--drivers/cpufreq/cpufreq_conservative.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/cpufreq/cpufreq_conservative.c b/drivers/cpufreq/cpufreq_conservative.c
index adecd31f6156..3ca3cf061642 100644
--- a/drivers/cpufreq/cpufreq_conservative.c
+++ b/drivers/cpufreq/cpufreq_conservative.c
@@ -509,7 +509,7 @@ static int cpufreq_governor_dbs(struct cpufreq_policy *policy,
509 if (latency == 0) 509 if (latency == 0)
510 latency = 1; 510 latency = 1;
511 511
512 def_sampling_rate = latency * 512 def_sampling_rate = 10 * latency *
513 DEF_SAMPLING_RATE_LATENCY_MULTIPLIER; 513 DEF_SAMPLING_RATE_LATENCY_MULTIPLIER;
514 514
515 if (def_sampling_rate < MIN_STAT_SAMPLING_RATE) 515 if (def_sampling_rate < MIN_STAT_SAMPLING_RATE)