i386/x86_64: move headers to include/asm-x86
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / arch / x86 / kernel / syscall_64.c
CommitLineData
1da177e4
LT
1/* System call table for x86-64. */
2
3#include <linux/linkage.h>
4#include <linux/sys.h>
5#include <linux/cache.h>
57a4f91a 6#include <asm/asm-offsets.h>
1da177e4
LT
7
8#define __NO_STUBS
9
10#define __SYSCALL(nr, sym) extern asmlinkage void sym(void) ;
11#undef _ASM_X86_64_UNISTD_H_
96a388de 12#include <asm/unistd_64.h>
1da177e4
LT
13
14#undef __SYSCALL
15#define __SYSCALL(nr, sym) [ nr ] = sym,
16#undef _ASM_X86_64_UNISTD_H_
17
18typedef void (*sys_call_ptr_t)(void);
19
20extern void sys_ni_syscall(void);
21
bb152f53 22const sys_call_ptr_t sys_call_table[__NR_syscall_max+1] = {
1da177e4
LT
23 /* Smells like a like a compiler bug -- it doesn't work when the & below is removed. */
24 [0 ... __NR_syscall_max] = &sys_ni_syscall,
96a388de 25#include <asm/unistd_64.h>
1da177e4 26};