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