]> Git Repo - linux.git/commitdiff
[IA64] another place to use for_each_cpu_mask() in arch/ia64
author[email protected] <[email protected]>
Thu, 13 Oct 2005 19:01:18 +0000 (12:01 -0700)
committerTony Luck <[email protected]>
Tue, 25 Oct 2005 22:12:05 +0000 (15:12 -0700)
In arch/ia64 change the explicit use of a for-loop using NR_CPUS into the
general for_each_online_cpu() construct.  This widens the scope of potential
future optimizations of the general constructs, as well as takes advantage
of the existing optimizations of first_cpu() and next_cpu(), which is
advantageous when the true CPU count is much smaller than NR_CPUS.

Signed-off-by: John Hawkes <[email protected]>
Signed-off-by: Tony Luck <[email protected]>
arch/ia64/kernel/mca.c

index d0a5106fba243f8364d2e8e0d86b844566db7a7c..52c47da17246ace5033f519670ea028a7474f214 100644 (file)
@@ -508,9 +508,7 @@ ia64_mca_wakeup_all(void)
        int cpu;
 
        /* Clear the Rendez checkin flag for all cpus */
-       for(cpu = 0; cpu < NR_CPUS; cpu++) {
-               if (!cpu_online(cpu))
-                       continue;
+       for_each_online_cpu(cpu) {
                if (ia64_mc_info.imi_rendez_checkin[cpu] == IA64_MCA_RENDEZ_CHECKIN_DONE)
                        ia64_mca_wakeup(cpu);
        }
This page took 0.061473 seconds and 4 git commands to generate.