syscalltab.c 785 B

123456789101112131415161718192021222324252627282930
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * System call table for Hexagon
  4. *
  5. * Copyright (c) 2010-2011, The Linux Foundation. All rights reserved.
  6. */
  7. #include <linux/syscalls.h>
  8. #include <linux/signal.h>
  9. #include <linux/unistd.h>
  10. #include <asm/syscall.h>
  11. #define __SYSCALL(nr, call) [nr] = (call),
  12. #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, native)
  13. #define sys_mmap2 sys_mmap_pgoff
  14. SYSCALL_DEFINE6(hexagon_fadvise64_64, int, fd, int, advice,
  15. SC_ARG64(offset), SC_ARG64(len))
  16. {
  17. return ksys_fadvise64_64(fd, SC_VAL64(loff_t, offset), SC_VAL64(loff_t, len), advice);
  18. }
  19. #define sys_fadvise64_64 sys_hexagon_fadvise64_64
  20. #define sys_sync_file_range sys_sync_file_range2
  21. void *sys_call_table[__NR_syscalls] = {
  22. #include <asm/syscall_table_32.h>
  23. };