| /linux/tools/include/uapi/asm-generic/ |
| H A 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/include/uapi/asm-generic/ |
| H A 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_setxatt [all...] |
| /linux/tools/arch/arc/include/uapi/asm/ |
| H A 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/arch/riscv/kernel/ |
| H A D | syscall_table.c | 12 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, native) 14 #undef __SYSCALL 15 #define __SYSCALL(nr, call) asmlinkage long __riscv_##call(const struct pt_regs *); macro 18 #undef __SYSCALL 19 #define __SYSCALL(nr, call) [nr] = __riscv_##call, macro
|
| H A D | compat_syscall_table.c | 11 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, compat) 13 #undef __SYSCALL 14 #define __SYSCALL(nr, call) asmlinkage long __riscv_##call(const struct pt_regs *); macro 17 #undef __SYSCALL 18 #define __SYSCALL(nr, call) [nr] = __riscv_##call, macro
|
| /linux/arch/x86/um/ |
| H A D | sys_call_table_32.c | 28 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, native) 29 #define __SYSCALL_NORETURN __SYSCALL 31 #define __SYSCALL(nr, sym) extern asmlinkage long sym(unsigned long, unsigned long, unsigned long, … macro 33 #undef __SYSCALL 35 #define __SYSCALL(nr, sym) sym, macro
|
| H A D | sys_call_table_64.c | 25 #define __SYSCALL_NORETURN __SYSCALL 27 #define __SYSCALL(nr, sym) extern asmlinkage long sym(unsigned long, unsigned long, unsigned long, … macro 29 #undef __SYSCALL 31 #define __SYSCALL(nr, sym) sym, macro
|
| /linux/arch/powerpc/kernel/ |
| H A 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/arch/arm64/kernel/ |
| H A D | sys.c | 51 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, native) 53 #undef __SYSCALL 54 #define __SYSCALL(nr, sym) asmlinkage long __arm64_##sym(const struct pt_regs *); macro 57 #undef __SYSCALL 58 #define __SYSCALL(nr, sym) [nr] = __arm64_##sym, macro
|
| H A D | sys32.c | 120 #define __SYSCALL_WITH_COMPAT(nr, sym, compat) __SYSCALL(nr, compat) 122 #undef __SYSCALL 123 #define __SYSCALL(nr, sym) asmlinkage long __arm64_##sym(const struct pt_regs *); macro 126 #undef __SYSCALL 127 #define __SYSCALL(nr, sym) [nr] = __arm64_##sym, macro
|
| /linux/arch/x86/entry/ |
| H A D | syscall_64.c | 12 #define __SYSCALL(nr, sym) extern long __x64_##sym(const struct pt_regs *); macro 18 #undef __SYSCALL 21 #define __SYSCALL_NORETURN __SYSCALL 28 #define __SYSCALL(nr, sym) __x64_##sym, macro 32 #undef __SYSCALL 34 #define __SYSCALL(nr, sym) case nr: return __x64_##sym(regs); macro
|
| H A D | syscall_32.c | 17 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, compat) 19 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, native) 22 #define __SYSCALL(nr, sym) extern long __ia32_##sym(const struct pt_regs *); macro 25 #undef __SYSCALL 28 #define __SYSCALL_NORETURN __SYSCALL 36 #define __SYSCALL(nr, sym) __ia32_##sym, macro 40 #undef __SYSCALL 43 #define __SYSCALL(nr, sym) case nr: return __ia32_##sym(regs); macro
|
| /linux/arch/csky/kernel/ |
| H A D | syscall_table.c | 7 #undef __SYSCALL 8 #define __SYSCALL(nr, call)[nr] = (call), macro 9 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, native)
|
| /linux/arch/sparc/kernel/ |
| H A 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)
|
| H A D | systbls_32.S | 12 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, native) 13 #define __SYSCALL(nr, entry) .long entry macro
|
| /linux/arch/s390/kernel/ |
| H A D | syscall.c | 43 #define __SYSCALL(nr, sym) long __s390x_##sym(struct pt_regs *); macro 45 #undef __SYSCALL 47 #define __SYSCALL(nr, sym) [nr] = (__s390x_##sym), macro 51 #undef __SYSCALL
|
| /linux/arch/loongarch/kernel/ |
| H A D | syscall.c | 24 #undef __SYSCALL 25 #define __SYSCALL(nr, call) [nr] = (call), macro 26 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, native)
|
| /linux/arch/sh/kernel/ |
| H A D | syscalls_32.S | 13 #define __SYSCALL(nr, entry) .long entry macro 17 #undef __SYSCALL
|
| /linux/arch/nios2/kernel/ |
| H A D | syscall_table.c | 12 #define __SYSCALL(nr, call) [nr] = (call), macro 13 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, native)
|
| /linux/arch/arc/kernel/ |
| H A D | sys.c | 13 #define __SYSCALL(nr, call) [nr] = (call), macro 14 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, native)
|
| /linux/arch/openrisc/kernel/ |
| H A D | sys_call_table.c | 19 #define __SYSCALL(nr, call) [nr] = (call), macro 20 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, native)
|
| /linux/arch/hexagon/kernel/ |
| H A D | syscalltab.c | 14 #define __SYSCALL(nr, call) [nr] = (call), macro 15 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, native)
|
| /linux/arch/powerpc/platforms/cell/ |
| H A D | spu_callbacks.c | 38 #define __SYSCALL_WITH_COMPAT(nr, entry, compat) __SYSCALL(nr, entry) 39 #define __SYSCALL(nr, entry) [nr] = (void *) entry, macro
|
| /linux/arch/powerpc/include/asm/ |
| H A D | syscalls.h | 148 #define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, native) 149 #define __SYSCALL(nr, entry) \ macro
|
| /linux/arch/microblaze/kernel/ |
| H A D | syscall_table.S | 3 #define __SYSCALL(nr, entry) .long entry macro
|