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>
|
2013-08-05 22:02:35 +00:00
|
|
|
#include <asm/syscall.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2016-01-28 23:11:25 +00:00
|
|
|
#define __SYSCALL_64_QUAL_(sym) sym
|
|
|
|
#define __SYSCALL_64_QUAL_ptregs(sym) ptregs_##sym
|
|
|
|
|
|
|
|
#define __SYSCALL_64(nr, sym, qual) extern asmlinkage long __SYSCALL_64_QUAL_##qual(sym)(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long, unsigned long);
|
2011-11-12 00:07:41 +00:00
|
|
|
#include <asm/syscalls_64.h>
|
|
|
|
#undef __SYSCALL_64
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2016-01-28 23:11:25 +00:00
|
|
|
#define __SYSCALL_64(nr, sym, qual) [nr] = __SYSCALL_64_QUAL_##qual(sym),
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2015-10-06 00:48:07 +00:00
|
|
|
extern long sys_ni_syscall(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long, unsigned long);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2013-08-05 22:02:44 +00:00
|
|
|
asmlinkage 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
|
|
|
};
|