diff options
author | Mike Travis <travis@sgi.com> | 2008-01-30 07:33:32 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:33:32 -0500 |
commit | dd5af90a7f3d79e04b7eace9a98644dbf2038f4d (patch) | |
tree | 22327ba385c830b7be391c76821dc5ec26863f2e /kernel | |
parent | 3212bff370c2f22e4987c6679ba485654cefb178 (diff) |
x86/non-x86: percpu, node ids, apic ids x86.git fixup
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/module.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/kernel/module.c b/kernel/module.c index f6a4e721fd49..bd60278ee703 100644 --- a/kernel/module.c +++ b/kernel/module.c | |||
@@ -430,6 +430,14 @@ static unsigned int find_pcpusec(Elf_Ehdr *hdr, | |||
430 | return find_sec(hdr, sechdrs, secstrings, ".data.percpu"); | 430 | return find_sec(hdr, sechdrs, secstrings, ".data.percpu"); |
431 | } | 431 | } |
432 | 432 | ||
433 | static void percpu_modcopy(void *pcpudest, const void *from, unsigned long size) | ||
434 | { | ||
435 | int cpu; | ||
436 | |||
437 | for_each_possible_cpu(cpu) | ||
438 | memcpy(pcpudest + per_cpu_offset(cpu), from, size); | ||
439 | } | ||
440 | |||
433 | static int percpu_modinit(void) | 441 | static int percpu_modinit(void) |
434 | { | 442 | { |
435 | pcpu_num_used = 2; | 443 | pcpu_num_used = 2; |