2008-02-19 21:02:16 +01:00
|
|
|
/* System call table for x86-64. */
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
#include <linux/linkage.h>
|
|
|
|
#include <linux/sys.h>
|
|
|
|
#include <linux/cache.h>
|
2007-05-02 19:27:18 +02:00
|
|
|
#include <asm/asm-offsets.h>
|
2013-08-05 15:02:35 -07:00
|
|
|
#include <asm/syscall.h>
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2016-01-28 15:11:25 -08: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-11 16:07:41 -08:00
|
|
|
#include <asm/syscalls_64.h>
|
|
|
|
#undef __SYSCALL_64
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2016-01-28 15:11:25 -08:00
|
|
|
#define __SYSCALL_64(nr, sym, qual) [nr] = __SYSCALL_64_QUAL_##qual(sym),
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2015-10-05 17:48:07 -07:00
|
|
|
extern long sys_ni_syscall(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long, unsigned long);
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2013-08-05 15:02:44 -07:00
|
|
|
asmlinkage const sys_call_ptr_t sys_call_table[__NR_syscall_max+1] = {
|
2008-02-19 21:02:16 +01:00
|
|
|
/*
|
2011-11-11 15:43:02 -08:00
|
|
|
* Smells like a compiler bug -- it doesn't work
|
|
|
|
* when the & below is removed.
|
|
|
|
*/
|
2005-04-16 15:20:36 -07:00
|
|
|
[0 ... __NR_syscall_max] = &sys_ni_syscall,
|
2011-11-11 16:07:41 -08:00
|
|
|
#include <asm/syscalls_64.h>
|
2005-04-16 15:20:36 -07:00
|
|
|
};
|