2008-02-19 20:02:16 +00:00
|
|
|
/* System call table for x86-64. */
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#include <linux/linkage.h>
|
|
|
|
#include <linux/sys.h>
|
|
|
|
#include <linux/cache.h>
|
2007-05-02 17:27:18 +00:00
|
|
|
#include <asm/asm-offsets.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-02-14 22:18:50 +00:00
|
|
|
#define __SYSCALL_COMMON(nr, sym, compat) __SYSCALL_64(nr, sym, compat)
|
2012-02-19 19:08:37 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_X86_X32_ABI
|
|
|
|
# define __SYSCALL_X32(nr, sym, compat) __SYSCALL_64(nr, sym, compat)
|
|
|
|
#else
|
|
|
|
# define __SYSCALL_X32(nr, sym, compat) /* nothing */
|
|
|
|
#endif
|
2012-02-14 22:18:50 +00:00
|
|
|
|
2011-11-12 00:07:41 +00:00
|
|
|
#define __SYSCALL_64(nr, sym, compat) extern asmlinkage void sym(void) ;
|
|
|
|
#include <asm/syscalls_64.h>
|
|
|
|
#undef __SYSCALL_64
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2011-11-12 00:07:41 +00:00
|
|
|
#define __SYSCALL_64(nr, sym, compat) [nr] = sym,
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-02-19 20:02:16 +00:00
|
|
|
typedef void (*sys_call_ptr_t)(void);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
extern void sys_ni_syscall(void);
|
|
|
|
|
2006-01-06 08:12:05 +00:00
|
|
|
const sys_call_ptr_t sys_call_table[__NR_syscall_max+1] = {
|
2008-02-19 20:02:16 +00:00
|
|
|
/*
|
2011-11-11 23:43:02 +00:00
|
|
|
* Smells like a compiler bug -- it doesn't work
|
|
|
|
* when the & below is removed.
|
|
|
|
*/
|
2005-04-16 22:20:36 +00:00
|
|
|
[0 ... __NR_syscall_max] = &sys_ni_syscall,
|
2011-11-12 00:07:41 +00:00
|
|
|
#include <asm/syscalls_64.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|