/linux-6.1.9/arch/arm64/include/asm/ |
D | unistd32.h | 9 #ifndef __SYSCALL 10 #define __SYSCALL(x, y) macro 14 __SYSCALL(__NR_restart_syscall, sys_restart_syscall) 16 __SYSCALL(__NR_exit, sys_exit) 18 __SYSCALL(__NR_fork, sys_fork) 20 __SYSCALL(__NR_read, sys_read) 22 __SYSCALL(__NR_write, sys_write) 24 __SYSCALL(__NR_open, compat_sys_open) 26 __SYSCALL(__NR_close, sys_close) 28 __SYSCALL(7, sys_ni_syscall) [all …]
|
/linux-6.1.9/tools/include/uapi/asm-generic/ |
D | unistd.h | 15 #ifndef __SYSCALL 16 #define __SYSCALL(x, y) macro 20 #define __SC_3264(_nr, _32, _64) __SYSCALL(_nr, _32) 22 #define __SC_3264(_nr, _32, _64) __SYSCALL(_nr, _64) 26 #define __SC_COMP(_nr, _sys, _comp) __SYSCALL(_nr, _comp) 27 #define __SC_COMP_3264(_nr, _32, _64, _comp) __SYSCALL(_nr, _comp) 29 #define __SC_COMP(_nr, _sys, _comp) __SYSCALL(_nr, _sys) 36 __SYSCALL(__NR_io_destroy, sys_io_destroy) 40 __SYSCALL(__NR_io_cancel, sys_io_cancel) 48 __SYSCALL(__NR_setxattr, sys_setxattr) [all …]
|
/linux-6.1.9/include/uapi/asm-generic/ |
D | unistd.h | 15 #ifndef __SYSCALL 16 #define __SYSCALL(x, y) macro 20 #define __SC_3264(_nr, _32, _64) __SYSCALL(_nr, _32) 22 #define __SC_3264(_nr, _32, _64) __SYSCALL(_nr, _64) 26 #define __SC_COMP(_nr, _sys, _comp) __SYSCALL(_nr, _comp) 27 #define __SC_COMP_3264(_nr, _32, _64, _comp) __SYSCALL(_nr, _comp) 29 #define __SC_COMP(_nr, _sys, _comp) __SYSCALL(_nr, _sys) 36 __SYSCALL(__NR_io_destroy, sys_io_destroy) 40 __SYSCALL(__NR_io_cancel, sys_io_cancel) 48 __SYSCALL(__NR_setxattr, sys_setxattr) [all …]
|
/linux-6.1.9/tools/arch/arc/include/uapi/asm/ |
D | unistd.h | 16 #if !defined(_UAPI_ASM_ARC_UNISTD_H) || defined(__SYSCALL) 43 __SYSCALL(__NR_cacheflush, sys_cacheflush) 44 __SYSCALL(__NR_arc_settls, sys_arc_settls) 45 __SYSCALL(__NR_arc_gettls, sys_arc_gettls) 46 __SYSCALL(__NR_arc_usr_cmpxchg, sys_arc_usr_cmpxchg) 47 __SYSCALL(__NR_sysfs, sys_sysfs) 49 #undef __SYSCALL
|
/linux-6.1.9/arch/arc/include/uapi/asm/ |
D | unistd.h | 16 #if !defined(_UAPI_ASM_ARC_UNISTD_H) || defined(__SYSCALL) 44 __SYSCALL(__NR_cacheflush, sys_cacheflush) 45 __SYSCALL(__NR_arc_settls, sys_arc_settls) 46 __SYSCALL(__NR_arc_gettls, sys_arc_gettls) 47 __SYSCALL(__NR_arc_usr_cmpxchg, sys_arc_usr_cmpxchg) 48 __SYSCALL(__NR_sysfs, sys_sysfs) 50 #undef __SYSCALL
|
/linux-6.1.9/arch/x86/entry/ |
D | syscall_32.c | 11 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, compat) 13 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, native) 16 #define __SYSCALL(nr, sym) extern long __ia32_##sym(const struct pt_regs *); macro 19 #undef __SYSCALL 21 #define __SYSCALL(nr, sym) __ia32_##sym, macro
|
D | syscall_64.c | 10 #define __SYSCALL(nr, sym) extern long __x64_##sym(const struct pt_regs *); macro 12 #undef __SYSCALL 14 #define __SYSCALL(nr, sym) __x64_##sym, macro
|
D | syscall_x32.c | 10 #define __SYSCALL(nr, sym) extern long __x64_##sym(const struct pt_regs *); macro 12 #undef __SYSCALL 14 #define __SYSCALL(nr, sym) __x64_##sym, macro
|
/linux-6.1.9/arch/powerpc/kernel/ |
D | systbl.c | 19 #define __SYSCALL_WITH_COMPAT(nr, entry, compat) __SYSCALL(nr, entry) 21 #undef __SYSCALL 23 #define __SYSCALL(nr, entry) [nr] = entry, macro 29 #define __SYSCALL(nr, entry) [nr] = (void *) entry, macro 42 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, compat)
|
/linux-6.1.9/arch/x86/um/ |
D | sys_call_table_32.c | 24 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, native) 26 #define __SYSCALL(nr, sym) extern asmlinkage long sym(unsigned long, unsigned long, unsigned long, … macro 29 #undef __SYSCALL 30 #define __SYSCALL(nr, sym) sym, macro
|
D | sys_call_table_64.c | 21 #define __SYSCALL(nr, sym) extern asmlinkage long sym(unsigned long, unsigned long, unsigned long, … macro 24 #undef __SYSCALL 25 #define __SYSCALL(nr, sym) sym, macro
|
/linux-6.1.9/arch/arm64/kernel/ |
D | sys.c | 51 #undef __SYSCALL 52 #define __SYSCALL(nr, sym) asmlinkage long __arm64_##sym(const struct pt_regs *); macro 55 #undef __SYSCALL 56 #define __SYSCALL(nr, sym) [nr] = __arm64_##sym, macro
|
D | sys32.c | 125 #undef __SYSCALL 126 #define __SYSCALL(nr, sym) asmlinkage long __arm64_##sym(const struct pt_regs *); macro 129 #undef __SYSCALL 130 #define __SYSCALL(nr, sym) [nr] = __arm64_##sym, macro
|
/linux-6.1.9/arch/sparc/kernel/ |
D | systbls_64.S | 13 #define __SYSCALL(nr, entry) .word entry macro 19 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, compat) 28 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, native)
|
D | systbls_32.S | 12 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, native) 13 #define __SYSCALL(nr, entry) .long entry macro
|
/linux-6.1.9/arch/sh/kernel/ |
D | syscalls_32.S | 13 #define __SYSCALL(nr, entry) .long entry macro 17 #undef __SYSCALL
|
/linux-6.1.9/arch/openrisc/kernel/ |
D | sys_call_table.c | 19 #undef __SYSCALL 20 #define __SYSCALL(nr, call) [nr] = (call), macro
|
/linux-6.1.9/arch/hexagon/kernel/ |
D | syscalltab.c | 14 #undef __SYSCALL 15 #define __SYSCALL(nr, call) [nr] = (call), macro
|
/linux-6.1.9/arch/nios2/kernel/ |
D | syscall_table.c | 12 #undef __SYSCALL 13 #define __SYSCALL(nr, call) [nr] = (call), macro
|
/linux-6.1.9/arch/riscv/kernel/ |
D | syscall_table.c | 12 #undef __SYSCALL 13 #define __SYSCALL(nr, call) [nr] = (call), macro
|
D | compat_syscall_table.c | 11 #undef __SYSCALL 12 #define __SYSCALL(nr, call) [nr] = (call), macro
|
/linux-6.1.9/arch/csky/kernel/ |
D | syscall_table.c | 7 #undef __SYSCALL 8 #define __SYSCALL(nr, call)[nr] = (call), macro
|
/linux-6.1.9/arch/arc/kernel/ |
D | sys.c | 12 #undef __SYSCALL 13 #define __SYSCALL(nr, call) [nr] = (call), macro
|
/linux-6.1.9/arch/csky/include/uapi/asm/ |
D | unistd.h | 12 __SYSCALL(__NR_set_thread_area, sys_set_thread_area) 14 __SYSCALL(__NR_cacheflush, sys_cacheflush)
|
/linux-6.1.9/arch/powerpc/platforms/cell/ |
D | spu_callbacks.c | 38 #define __SYSCALL_WITH_COMPAT(nr, entry, compat) __SYSCALL(nr, entry) 39 #define __SYSCALL(nr, entry) [nr] = (void *) entry, macro
|