syscall_32.c 849 B

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