aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/cpufreq/cpufreq_ondemand.c
diff options
context:
space:
mode:
authorDave Jones <davej@redhat.com>2005-05-31 22:03:49 -0400
committerDave Jones <davej@redhat.com>2005-05-31 22:03:49 -0400
commit790d76fa979f55bfc49a6901bb911778949b582d (patch)
treee437734bbdd08656a569feddae15207b3ae6327c /drivers/cpufreq/cpufreq_ondemand.c
parentdac1c1a56279b4545a822ec7bc770003c233e546 (diff)
[CPUFREQ] ondemand,conservative governor store the idle ticks for all cpus
[PATCH] [2/5] ondemand,conservative governor store the idle ticks for all cpus Ondemand, conservative governor did not store prev_cpu_idle_up into prev_cpu_idle_down for other CPUs than the current CPU. Signed-off-by: Eric Piel <eric.piel@tremplin-utc.net> Signed-off-by: Venkatesh Pallipadi <venkatesh.pallipadi@intel.com> Signed-off-by: Dave Jones <davej@redhat.com>
Diffstat (limited to 'drivers/cpufreq/cpufreq_ondemand.c')
-rw-r--r--drivers/cpufreq/cpufreq_ondemand.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/drivers/cpufreq/cpufreq_ondemand.c b/drivers/cpufreq/cpufreq_ondemand.c
index 26cf54b11ba6..f239545ac1b8 100644
--- a/drivers/cpufreq/cpufreq_ondemand.c
+++ b/drivers/cpufreq/cpufreq_ondemand.c
@@ -355,7 +355,13 @@ static void dbs_check_cpu(int cpu)
355 355
356 if (idle_ticks < up_idle_ticks) { 356 if (idle_ticks < up_idle_ticks) {
357 down_skip[cpu] = 0; 357 down_skip[cpu] = 0;
358 this_dbs_info->prev_cpu_idle_down = total_idle_ticks; 358 for_each_cpu_mask(j, policy->cpus) {
359 struct cpu_dbs_info_s *j_dbs_info;
360
361 j_dbs_info = &per_cpu(cpu_dbs_info, j);
362 j_dbs_info->prev_cpu_idle_down =
363 j_dbs_info->prev_cpu_idle_up;
364 }
359 /* if we are already at full speed then break out early */ 365 /* if we are already at full speed then break out early */
360 if (policy->cur == policy->max) 366 if (policy->cur == policy->max)
361 return; 367 return;