mm/filemap_xip.c: fix race condition in xip_file_fault()
[linux-2.6.git] / arch / x86 / kernel / syscall_64.c
blob7ac7943be02cb0bb69577daa0403b08372d82da4
1 /* System call table for x86-64. */
3 #include <linux/linkage.h>
4 #include <linux/sys.h>
5 #include <linux/cache.h>
6 #include <asm/asm-offsets.h>
8 #define __SYSCALL_64(nr, sym, compat) extern asmlinkage void sym(void) ;
9 #include <asm/syscalls_64.h>
10 #undef __SYSCALL_64
12 #define __SYSCALL_64(nr, sym, compat) [nr] = sym,
14 typedef void (*sys_call_ptr_t)(void);
16 extern void sys_ni_syscall(void);
18 const sys_call_ptr_t sys_call_table[__NR_syscall_max+1] = {
20 * Smells like a compiler bug -- it doesn't work
21 * when the & below is removed.
23 [0 ... __NR_syscall_max] = &sys_ni_syscall,
24 #include <asm/syscalls_64.h>