diff options
author | travis@sgi.com <travis@sgi.com> | 2008-01-30 17:27:58 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 17:27:58 -0500 |
commit | 6ddfee0e79e141550376177b355d6c90ba6da88c (patch) | |
tree | ed19ac446e1e4510712b87ee5dae4d6492324939 /include/asm-ia64/percpu.h | |
parent | 914c82694cadbab511f2aee8a59c89be2938bace (diff) |
modules: fold percpu_modcopy into module.c
percpu_modcopy() is defined multiple times in arch files. However, the only
user is module.c. Put a static definition into module.c and remove
the definitions from the arch files.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/asm-ia64/percpu.h')
-rw-r--r-- | include/asm-ia64/percpu.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/asm-ia64/percpu.h b/include/asm-ia64/percpu.h index 0095bcf79848..7ef684220cf7 100644 --- a/include/asm-ia64/percpu.h +++ b/include/asm-ia64/percpu.h | |||
@@ -22,10 +22,6 @@ | |||
22 | #define DECLARE_PER_CPU(type, name) \ | 22 | #define DECLARE_PER_CPU(type, name) \ |
23 | extern PER_CPU_ATTRIBUTES __typeof__(type) per_cpu__##name | 23 | extern PER_CPU_ATTRIBUTES __typeof__(type) per_cpu__##name |
24 | 24 | ||
25 | /* | ||
26 | * Pretty much a literal copy of asm-generic/percpu.h, except that percpu_modcopy() is an | ||
27 | * external routine, to avoid include-hell. | ||
28 | */ | ||
29 | #ifdef CONFIG_SMP | 25 | #ifdef CONFIG_SMP |
30 | 26 | ||
31 | extern unsigned long __per_cpu_offset[NR_CPUS]; | 27 | extern unsigned long __per_cpu_offset[NR_CPUS]; |
@@ -38,7 +34,6 @@ DECLARE_PER_CPU(unsigned long, local_per_cpu_offset); | |||
38 | #define __get_cpu_var(var) (*RELOC_HIDE(&per_cpu__##var, __ia64_per_cpu_var(local_per_cpu_offset))) | 34 | #define __get_cpu_var(var) (*RELOC_HIDE(&per_cpu__##var, __ia64_per_cpu_var(local_per_cpu_offset))) |
39 | #define __raw_get_cpu_var(var) (*RELOC_HIDE(&per_cpu__##var, __ia64_per_cpu_var(local_per_cpu_offset))) | 35 | #define __raw_get_cpu_var(var) (*RELOC_HIDE(&per_cpu__##var, __ia64_per_cpu_var(local_per_cpu_offset))) |
40 | 36 | ||
41 | extern void percpu_modcopy(void *pcpudst, const void *src, unsigned long size); | ||
42 | extern void setup_per_cpu_areas (void); | 37 | extern void setup_per_cpu_areas (void); |
43 | extern void *per_cpu_init(void); | 38 | extern void *per_cpu_init(void); |
44 | 39 | ||