syscall_64.c 815 B

12345678910111213141516171819202122232425
  1. // SPDX-License-Identifier: GPL-2.0
  2. /* 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>
  7. #include <asm/syscall.h>
  8. #define __SYSCALL_64(nr, sym, qual) extern asmlinkage long sym(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long, unsigned long);
  9. #include <asm/syscalls_64.h>
  10. #undef __SYSCALL_64
  11. #define __SYSCALL_64(nr, sym, qual) [nr] = sym,
  12. extern long sys_ni_syscall(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long, unsigned long);
  13. asmlinkage const sys_call_ptr_t sys_call_table[__NR_syscall_max+1] = {
  14. /*
  15. * Smells like a compiler bug -- it doesn't work
  16. * when the & below is removed.
  17. */
  18. [0 ... __NR_syscall_max] = &sys_ni_syscall,
  19. #include <asm/syscalls_64.h>
  20. };