Paolo Ciarrocchi | 325f86e | 2008-02-19 21:02:16 +0100 | [diff] [blame] | 1 | /* System call table for x86-64. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | |
| 3 | #include <linux/linkage.h> |
| 4 | #include <linux/sys.h> |
| 5 | #include <linux/cache.h> |
Andi Kleen | 57a4f91 | 2007-05-02 19:27:18 +0200 | [diff] [blame] | 6 | #include <asm/asm-offsets.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | |
H. Peter Anvin | 6630f11 | 2012-02-14 14:18:50 -0800 | [diff] [blame] | 8 | #define __SYSCALL_COMMON(nr, sym, compat) __SYSCALL_64(nr, sym, compat) |
H. Peter Anvin | a06c9bc | 2012-02-19 11:08:37 -0800 | [diff] [blame] | 9 | |
| 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 |
H. Peter Anvin | 6630f11 | 2012-02-14 14:18:50 -0800 | [diff] [blame] | 15 | |
H. Peter Anvin | 303395a | 2011-11-11 16:07:41 -0800 | [diff] [blame] | 16 | #define __SYSCALL_64(nr, sym, compat) extern asmlinkage void sym(void) ; |
| 17 | #include <asm/syscalls_64.h> |
| 18 | #undef __SYSCALL_64 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
H. Peter Anvin | 303395a | 2011-11-11 16:07:41 -0800 | [diff] [blame] | 20 | #define __SYSCALL_64(nr, sym, compat) [nr] = sym, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
Paolo Ciarrocchi | 325f86e | 2008-02-19 21:02:16 +0100 | [diff] [blame] | 22 | typedef void (*sys_call_ptr_t)(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
| 24 | extern void sys_ni_syscall(void); |
| 25 | |
Arjan van de Ven | bb152f5 | 2006-01-06 00:12:05 -0800 | [diff] [blame] | 26 | const sys_call_ptr_t sys_call_table[__NR_syscall_max+1] = { |
Paolo Ciarrocchi | 325f86e | 2008-02-19 21:02:16 +0100 | [diff] [blame] | 27 | /* |
H. Peter Anvin | b7641d2 | 2011-11-11 15:43:02 -0800 | [diff] [blame] | 28 | * Smells like a compiler bug -- it doesn't work |
| 29 | * when the & below is removed. |
| 30 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | [0 ... __NR_syscall_max] = &sys_ni_syscall, |
H. Peter Anvin | 303395a | 2011-11-11 16:07:41 -0800 | [diff] [blame] | 32 | #include <asm/syscalls_64.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | }; |