Browse Source

[CPUFREQ] conservative: remove 10x from def_sampling_rate

AMD users get particular hit by this issue (bug 8081) as it caps at
typically 90 seconds as the minimum period for a frequency change.
Harsh eh?  Years ago I borked this buy puting the 10x in the wrong
place...I fix that by removing it altogether.

Signed-off-by: Alexander Clouter <alex@digriz.org.uk>
Signed-off-by: Dave Jones <davej@redhat.com>
Alexander Clouter 16 years ago
parent
commit
a75603a084
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/cpufreq/cpufreq_conservative.c

+ 1 - 1
drivers/cpufreq/cpufreq_conservative.c

@@ -599,7 +599,7 @@ static int cpufreq_governor_dbs(struct cpufreq_policy *policy,
 				latency = 1;
 				latency = 1;
 
 
 			def_sampling_rate =
 			def_sampling_rate =
-				max(10 * latency * LATENCY_MULTIPLIER,
+				max(latency * LATENCY_MULTIPLIER,
 				    MIN_STAT_SAMPLING_RATE);
 				    MIN_STAT_SAMPLING_RATE);
 
 
 			dbs_tuners_ins.sampling_rate = def_sampling_rate;
 			dbs_tuners_ins.sampling_rate = def_sampling_rate;