diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-02-11 03:22:04 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-02-11 03:22:04 -0500 |
commit | 95fd4845ed0ffcab305b4f30ce1c12dc34f1b56c (patch) | |
tree | aa2aac22a5b329b778a6771a87bbf1945ad49bbd /include/linux/syscalls.h | |
parent | d278c48435625cb6b7edcf6a547620768b175709 (diff) | |
parent | 8e4921515c1a379539607eb443d51c30f4f7f338 (diff) |
Merge commit 'v2.6.29-rc4' into perfcounters/core
Conflicts:
arch/x86/kernel/setup_percpu.c
arch/x86/mm/fault.c
drivers/acpi/processor_idle.c
kernel/irq/handle.c
Diffstat (limited to 'include/linux/syscalls.h')
-rw-r--r-- | include/linux/syscalls.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h index fc81937009f5..ff957a115cc6 100644 --- a/include/linux/syscalls.h +++ b/include/linux/syscalls.h | |||
@@ -109,9 +109,14 @@ struct perf_counter_hw_event; | |||
109 | asm ("\t.globl " #alias "\n\t.set " #alias ", " #name "\n" \ | 109 | asm ("\t.globl " #alias "\n\t.set " #alias ", " #name "\n" \ |
110 | "\t.globl ." #alias "\n\t.set ." #alias ", ." #name) | 110 | "\t.globl ." #alias "\n\t.set ." #alias ", ." #name) |
111 | #else | 111 | #else |
112 | #ifdef CONFIG_ALPHA | ||
113 | #define SYSCALL_ALIAS(alias, name) \ | ||
114 | asm ( #alias " = " #name "\n\t.globl " #alias) | ||
115 | #else | ||
112 | #define SYSCALL_ALIAS(alias, name) \ | 116 | #define SYSCALL_ALIAS(alias, name) \ |
113 | asm ("\t.globl " #alias "\n\t.set " #alias ", " #name) | 117 | asm ("\t.globl " #alias "\n\t.set " #alias ", " #name) |
114 | #endif | 118 | #endif |
119 | #endif | ||
115 | 120 | ||
116 | #ifdef CONFIG_HAVE_SYSCALL_WRAPPERS | 121 | #ifdef CONFIG_HAVE_SYSCALL_WRAPPERS |
117 | 122 | ||