diff options
author | Andrew Morton <akpm@osdl.org> | 2006-03-24 06:15:07 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-24 10:33:15 -0500 |
commit | a72011567812cbd93788cc5facda160a3cba5905 (patch) | |
tree | 9cdd83b4b769e9af72c76d0670fa9ae55164844b /arch | |
parent | 674a396c6d2ba0341ebdd7c1c9950f32f018e2dd (diff) |
[PATCH] more-for_each_cpu-conversions fix
I screwed up this conversion - we should be iterating across online CPUs, not
possible ones.
Spotted by Joe Perches <joe@perches.com>
Cc: Dave Jones <davej@codemonkey.org.uk>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/i386/kernel/cpu/cpufreq/powernow-k8.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/i386/kernel/cpu/cpufreq/powernow-k8.c b/arch/i386/kernel/cpu/cpufreq/powernow-k8.c index 3d5110b65cc3..798da7c2b5d0 100644 --- a/arch/i386/kernel/cpu/cpufreq/powernow-k8.c +++ b/arch/i386/kernel/cpu/cpufreq/powernow-k8.c | |||
@@ -1145,14 +1145,14 @@ static int __cpuinit powernowk8_init(void) | |||
1145 | { | 1145 | { |
1146 | unsigned int i, supported_cpus = 0; | 1146 | unsigned int i, supported_cpus = 0; |
1147 | 1147 | ||
1148 | for_each_cpu(i) { | 1148 | for_each_online_cpu(i) { |
1149 | if (check_supported_cpu(i)) | 1149 | if (check_supported_cpu(i)) |
1150 | supported_cpus++; | 1150 | supported_cpus++; |
1151 | } | 1151 | } |
1152 | 1152 | ||
1153 | if (supported_cpus == num_online_cpus()) { | 1153 | if (supported_cpus == num_online_cpus()) { |
1154 | printk(KERN_INFO PFX "Found %d AMD Athlon 64 / Opteron processors (" VERSION ")\n", | 1154 | printk(KERN_INFO PFX "Found %d AMD Athlon 64 / Opteron " |
1155 | supported_cpus); | 1155 | "processors (" VERSION ")\n", supported_cpus); |
1156 | return cpufreq_register_driver(&cpufreq_amd64_driver); | 1156 | return cpufreq_register_driver(&cpufreq_amd64_driver); |
1157 | } | 1157 | } |
1158 | 1158 | ||