Merge tag 'tegra-for-3.12-soc' of git://git.kernel.org/pub/scm/linux/kernel/git/swarr...
[linux-2.6/btrfs-unstable.git] / arch / x86 / kernel / syscall_64.c
blob5c7f8c20da74c21ffa827778d0c53b0b2bb11e8a
1 /* System call table for x86-64. */
3 #include <linux/linkage.h>
4 #include <linux/sys.h>
5 #include <linux/cache.h>
6 #include <asm/asm-offsets.h>
8 #define __SYSCALL_COMMON(nr, sym, compat) __SYSCALL_64(nr, sym, compat)
10 #ifdef CONFIG_X86_X32_ABI
11 # define __SYSCALL_X32(nr, sym, compat) __SYSCALL_64(nr, sym, compat)
12 #else
13 # define __SYSCALL_X32(nr, sym, compat) /* nothing */
14 #endif
16 #define __SYSCALL_64(nr, sym, compat) extern asmlinkage void sym(void) ;
17 #include <asm/syscalls_64.h>
18 #undef __SYSCALL_64
20 #define __SYSCALL_64(nr, sym, compat) [nr] = sym,
22 typedef void (*sys_call_ptr_t)(void);
24 extern void sys_ni_syscall(void);
26 const sys_call_ptr_t sys_call_table[__NR_syscall_max+1] = {
28 * Smells like a compiler bug -- it doesn't work
29 * when the & below is removed.
31 [0 ... __NR_syscall_max] = &sys_ni_syscall,
32 #include <asm/syscalls_64.h>