diff options
author | Jan Beulich <JBeulich@novell.com> | 2005-06-23 03:09:59 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-23 12:45:28 -0400 |
commit | 11c80c8367db0a9d342529ed74464670cd86a1f6 (patch) | |
tree | d4625a9565866dc6565972b069c57cdedb7e0f27 /include/asm-ia64/percpu.h | |
parent | c7ea4b31fd962b4baadb42c0b8d7c6851c584102 (diff) |
[PATCH] adjust per_cpu definition in non-SMP case
Fix (in the architectures I'm actually building for) the UP definition of
per_cpu so that the cpu specified may be any expression, not just an
identifier or a suffix expression.
Signed-off-by: Jan Beulich <jbeulich@novell.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-ia64/percpu.h')
-rw-r--r-- | include/asm-ia64/percpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-ia64/percpu.h b/include/asm-ia64/percpu.h index 1e87f19dad56..2b14dee29ce7 100644 --- a/include/asm-ia64/percpu.h +++ b/include/asm-ia64/percpu.h | |||
@@ -50,7 +50,7 @@ extern void *per_cpu_init(void); | |||
50 | 50 | ||
51 | #else /* ! SMP */ | 51 | #else /* ! SMP */ |
52 | 52 | ||
53 | #define per_cpu(var, cpu) (*((void)cpu, &per_cpu__##var)) | 53 | #define per_cpu(var, cpu) (*((void)(cpu), &per_cpu__##var)) |
54 | #define __get_cpu_var(var) per_cpu__##var | 54 | #define __get_cpu_var(var) per_cpu__##var |
55 | #define per_cpu_init() (__phys_per_cpu_start) | 55 | #define per_cpu_init() (__phys_per_cpu_start) |
56 | 56 | ||