syscall_64.c 774 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. /* this is a lie, but it does not hurt as sys_ni_syscall just returns -EINVAL */
  9. extern asmlinkage long sys_ni_syscall(const struct pt_regs *);
  10. #define __SYSCALL_64(nr, sym, qual) extern asmlinkage long sym(const struct pt_regs *);
  11. #include <asm/syscalls_64.h>
  12. #undef __SYSCALL_64
  13. #define __SYSCALL_64(nr, sym, qual) [nr] = sym,
  14. asmlinkage const sys_call_ptr_t sys_call_table[__NR_syscall_max+1] = {
  15. /*
  16. * Smells like a compiler bug -- it doesn't work
  17. * when the & below is removed.
  18. */
  19. [0 ... __NR_syscall_max] = &sys_ni_syscall,
  20. #include <asm/syscalls_64.h>
  21. };