blob: 41283d22be7a92db23e46fb427593a2e878ee37d [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>
Andi Kleen1599e8f2013-08-05 15:02:35 -07007#include <asm/syscall.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
H. Peter Anvin6630f112012-02-14 14:18:50 -08009#define __SYSCALL_COMMON(nr, sym, compat) __SYSCALL_64(nr, sym, compat)
H. Peter Anvina06c9bc2012-02-19 11:08:37 -080010
11#ifdef CONFIG_X86_X32_ABI
12# define __SYSCALL_X32(nr, sym, compat) __SYSCALL_64(nr, sym, compat)
13#else
14# define __SYSCALL_X32(nr, sym, compat) /* nothing */
15#endif
H. Peter Anvin6630f112012-02-14 14:18:50 -080016
Andy Lutomirskieb974c62015-10-05 17:48:07 -070017#define __SYSCALL_64(nr, sym, compat) extern asmlinkage long sym(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long, unsigned long) ;
H. Peter Anvin303395a2011-11-11 16:07:41 -080018#include <asm/syscalls_64.h>
19#undef __SYSCALL_64
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
H. Peter Anvin303395a2011-11-11 16:07:41 -080021#define __SYSCALL_64(nr, sym, compat) [nr] = sym,
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Andy Lutomirskieb974c62015-10-05 17:48:07 -070023extern long sys_ni_syscall(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Andi Kleene0e745e2013-08-05 15:02:44 -070025asmlinkage const sys_call_ptr_t sys_call_table[__NR_syscall_max+1] = {
Paolo Ciarrocchi325f86e2008-02-19 21:02:16 +010026 /*
H. Peter Anvinb7641d22011-11-11 15:43:02 -080027 * Smells like a compiler bug -- it doesn't work
28 * when the & below is removed.
29 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 [0 ... __NR_syscall_max] = &sys_ni_syscall,
H. Peter Anvin303395a2011-11-11 16:07:41 -080031#include <asm/syscalls_64.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032};