diff options
author | Tony Luck <tony.luck@intel.com> | 2005-10-28 15:26:43 -0700 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2005-10-28 15:26:43 -0700 |
commit | d73dee6ee4b554074f88e4ebd956ea4db8552d52 (patch) | |
tree | 9f4468c7b54d0796d7659ce3ae30b756217522e9 /arch/ia64/kernel/module.c | |
parent | 9acd3fa2e10f4e5b093ddf93af8f23cc9bdbd621 (diff) | |
parent | ddf6d0a00cbb4ad6d4fb4200cc911bb9389174c1 (diff) |
Pull for-each-cpu into release branch
Diffstat (limited to 'arch/ia64/kernel/module.c')
-rw-r--r-- | arch/ia64/kernel/module.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/ia64/kernel/module.c b/arch/ia64/kernel/module.c index f1aca7cffd12..7a2f0a798d12 100644 --- a/arch/ia64/kernel/module.c +++ b/arch/ia64/kernel/module.c @@ -947,8 +947,8 @@ void percpu_modcopy (void *pcpudst, const void *src, unsigned long size) { unsigned int i; - for (i = 0; i < NR_CPUS; i++) - if (cpu_possible(i)) - memcpy(pcpudst + __per_cpu_offset[i], src, size); + for_each_cpu(i) { + memcpy(pcpudst + __per_cpu_offset[i], src, size); + } } #endif /* CONFIG_SMP */ |