blob: 5c7f8c20da74c21ffa827778d0c53b0b2bb11e8a [file] [log] [blame]
Paolo Ciarrocchi325f86e2008-02-19 21:02:16 +01001/* System call table for x86-64. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002
3#include <linux/linkage.h>
4#include <linux/sys.h>
5#include <linux/cache.h>
Andi Kleen57a4f912007-05-02 19:27:18 +02006#include <asm/asm-offsets.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
H. Peter Anvin6630f112012-02-14 14:18:50 -08008#define __SYSCALL_COMMON(nr, sym, compat) __SYSCALL_64(nr, sym, compat)
H. Peter Anvina06c9bc2012-02-19 11:08:37 -08009
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 Anvin6630f112012-02-14 14:18:50 -080015
H. Peter Anvin303395a2011-11-11 16:07:41 -080016#define __SYSCALL_64(nr, sym, compat) extern asmlinkage void sym(void) ;
17#include <asm/syscalls_64.h>
18#undef __SYSCALL_64
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
H. Peter Anvin303395a2011-11-11 16:07:41 -080020#define __SYSCALL_64(nr, sym, compat) [nr] = sym,
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Paolo Ciarrocchi325f86e2008-02-19 21:02:16 +010022typedef void (*sys_call_ptr_t)(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24extern void sys_ni_syscall(void);
25
Arjan van de Venbb152f52006-01-06 00:12:05 -080026const sys_call_ptr_t sys_call_table[__NR_syscall_max+1] = {
Paolo Ciarrocchi325f86e2008-02-19 21:02:16 +010027 /*
H. Peter Anvinb7641d22011-11-11 15:43:02 -080028 * Smells like a compiler bug -- it doesn't work
29 * when the & below is removed.
30 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 [0 ... __NR_syscall_max] = &sys_ni_syscall,
H. Peter Anvin303395a2011-11-11 16:07:41 -080032#include <asm/syscalls_64.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033};