1 /* System call table for x86-64. */
3 #include <linux/linkage.h>
5 #include <linux/cache.h>
6 #include <asm/asm-offsets.h>
7 #include <asm/syscall.h>
9 #define __SYSCALL_COMMON(nr, sym, compat) __SYSCALL_64(nr, sym, compat)
11 #ifdef CONFIG_X86_X32_ABI
12 # define __SYSCALL_X32(nr, sym, compat) __SYSCALL_64(nr, sym, compat)
14 # define __SYSCALL_X32(nr, sym, compat) /* nothing */
17 #define __SYSCALL_64(nr, sym, compat) extern asmlinkage void sym(void) ;
18 #include <asm/syscalls_64.h>
21 #define __SYSCALL_64(nr, sym, compat) [nr] = sym,
23 extern void sys_ni_syscall(void);
25 asmlinkage
const sys_call_ptr_t sys_call_table
[__NR_syscall_max
+1] = {
27 * Smells like a compiler bug -- it doesn't work
28 * when the & below is removed.
30 [0 ... __NR_syscall_max
] = &sys_ni_syscall
,
31 #include <asm/syscalls_64.h>