Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   1) /* SPDX-License-Identifier: GPL-2.0-only */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   2) /*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   3)  * AArch32 (compat) system call definitions.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   4)  *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   5)  * Copyright (C) 2001-2005 Russell King
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   6)  * Copyright (C) 2012 ARM Ltd.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   7)  */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   8) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   9) #ifndef __SYSCALL
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  10) #define __SYSCALL(x, y)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  11) #endif
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  12) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  13) #define __NR_restart_syscall 0
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  14) __SYSCALL(__NR_restart_syscall, sys_restart_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  15) #define __NR_exit 1
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  16) __SYSCALL(__NR_exit, sys_exit)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  17) #define __NR_fork 2
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  18) __SYSCALL(__NR_fork, sys_fork)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  19) #define __NR_read 3
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  20) __SYSCALL(__NR_read, sys_read)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  21) #define __NR_write 4
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  22) __SYSCALL(__NR_write, sys_write)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  23) #define __NR_open 5
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  24) __SYSCALL(__NR_open, compat_sys_open)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  25) #define __NR_close 6
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  26) __SYSCALL(__NR_close, sys_close)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  27) 			/* 7 was sys_waitpid */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  28) __SYSCALL(7, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  29) #define __NR_creat 8
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  30) __SYSCALL(__NR_creat, sys_creat)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  31) #define __NR_link 9
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  32) __SYSCALL(__NR_link, sys_link)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  33) #define __NR_unlink 10
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  34) __SYSCALL(__NR_unlink, sys_unlink)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  35) #define __NR_execve 11
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  36) __SYSCALL(__NR_execve, compat_sys_execve)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  37) #define __NR_chdir 12
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  38) __SYSCALL(__NR_chdir, sys_chdir)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  39) 			/* 13 was sys_time */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  40) __SYSCALL(13, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  41) #define __NR_mknod 14
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  42) __SYSCALL(__NR_mknod, sys_mknod)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  43) #define __NR_chmod 15
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  44) __SYSCALL(__NR_chmod, sys_chmod)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  45) #define __NR_lchown 16
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  46) __SYSCALL(__NR_lchown, sys_lchown16)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  47) 			/* 17 was sys_break */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  48) __SYSCALL(17, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  49) 			/* 18 was sys_stat */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  50) __SYSCALL(18, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  51) #define __NR_lseek 19
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  52) __SYSCALL(__NR_lseek, compat_sys_lseek)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  53) #define __NR_getpid 20
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  54) __SYSCALL(__NR_getpid, sys_getpid)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  55) #define __NR_mount 21
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  56) __SYSCALL(__NR_mount, sys_mount)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  57) 			/* 22 was sys_umount */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  58) __SYSCALL(22, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  59) #define __NR_setuid 23
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  60) __SYSCALL(__NR_setuid, sys_setuid16)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  61) #define __NR_getuid 24
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  62) __SYSCALL(__NR_getuid, sys_getuid16)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  63) 			/* 25 was sys_stime */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  64) __SYSCALL(25, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  65) #define __NR_ptrace 26
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  66) __SYSCALL(__NR_ptrace, compat_sys_ptrace)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  67) 			/* 27 was sys_alarm */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  68) __SYSCALL(27, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  69) 			/* 28 was sys_fstat */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  70) __SYSCALL(28, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  71) #define __NR_pause 29
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  72) __SYSCALL(__NR_pause, sys_pause)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  73) 			/* 30 was sys_utime */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  74) __SYSCALL(30, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  75) 			/* 31 was sys_stty */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  76) __SYSCALL(31, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  77) 			/* 32 was sys_gtty */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  78) __SYSCALL(32, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  79) #define __NR_access 33
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  80) __SYSCALL(__NR_access, sys_access)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  81) #define __NR_nice 34
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  82) __SYSCALL(__NR_nice, sys_nice)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  83) 			/* 35 was sys_ftime */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  84) __SYSCALL(35, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  85) #define __NR_sync 36
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  86) __SYSCALL(__NR_sync, sys_sync)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  87) #define __NR_kill 37
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  88) __SYSCALL(__NR_kill, sys_kill)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  89) #define __NR_rename 38
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  90) __SYSCALL(__NR_rename, sys_rename)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  91) #define __NR_mkdir 39
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  92) __SYSCALL(__NR_mkdir, sys_mkdir)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  93) #define __NR_rmdir 40
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  94) __SYSCALL(__NR_rmdir, sys_rmdir)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  95) #define __NR_dup 41
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  96) __SYSCALL(__NR_dup, sys_dup)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  97) #define __NR_pipe 42
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  98) __SYSCALL(__NR_pipe, sys_pipe)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  99) #define __NR_times 43
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 100) __SYSCALL(__NR_times, compat_sys_times)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 101) 			/* 44 was sys_prof */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 102) __SYSCALL(44, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 103) #define __NR_brk 45
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 104) __SYSCALL(__NR_brk, sys_brk)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 105) #define __NR_setgid 46
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 106) __SYSCALL(__NR_setgid, sys_setgid16)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 107) #define __NR_getgid 47
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 108) __SYSCALL(__NR_getgid, sys_getgid16)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 109) 			/* 48 was sys_signal */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 110) __SYSCALL(48, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 111) #define __NR_geteuid 49
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 112) __SYSCALL(__NR_geteuid, sys_geteuid16)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 113) #define __NR_getegid 50
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 114) __SYSCALL(__NR_getegid, sys_getegid16)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 115) #define __NR_acct 51
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 116) __SYSCALL(__NR_acct, sys_acct)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 117) #define __NR_umount2 52
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 118) __SYSCALL(__NR_umount2, sys_umount)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 119) 			/* 53 was sys_lock */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 120) __SYSCALL(53, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 121) #define __NR_ioctl 54
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 122) __SYSCALL(__NR_ioctl, compat_sys_ioctl)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 123) #define __NR_fcntl 55
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 124) __SYSCALL(__NR_fcntl, compat_sys_fcntl)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 125) 			/* 56 was sys_mpx */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 126) __SYSCALL(56, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 127) #define __NR_setpgid 57
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 128) __SYSCALL(__NR_setpgid, sys_setpgid)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 129) 			/* 58 was sys_ulimit */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 130) __SYSCALL(58, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 131) 			/* 59 was sys_olduname */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 132) __SYSCALL(59, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 133) #define __NR_umask 60
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 134) __SYSCALL(__NR_umask, sys_umask)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 135) #define __NR_chroot 61
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 136) __SYSCALL(__NR_chroot, sys_chroot)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 137) #define __NR_ustat 62
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 138) __SYSCALL(__NR_ustat, compat_sys_ustat)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 139) #define __NR_dup2 63
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 140) __SYSCALL(__NR_dup2, sys_dup2)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 141) #define __NR_getppid 64
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 142) __SYSCALL(__NR_getppid, sys_getppid)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 143) #define __NR_getpgrp 65
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 144) __SYSCALL(__NR_getpgrp, sys_getpgrp)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 145) #define __NR_setsid 66
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 146) __SYSCALL(__NR_setsid, sys_setsid)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 147) #define __NR_sigaction 67
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 148) __SYSCALL(__NR_sigaction, compat_sys_sigaction)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 149) 			/* 68 was sys_sgetmask */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 150) __SYSCALL(68, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 151) 			/* 69 was sys_ssetmask */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 152) __SYSCALL(69, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 153) #define __NR_setreuid 70
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 154) __SYSCALL(__NR_setreuid, sys_setreuid16)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 155) #define __NR_setregid 71
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 156) __SYSCALL(__NR_setregid, sys_setregid16)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 157) #define __NR_sigsuspend 72
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 158) __SYSCALL(__NR_sigsuspend, sys_sigsuspend)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 159) #define __NR_sigpending 73
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 160) __SYSCALL(__NR_sigpending, compat_sys_sigpending)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 161) #define __NR_sethostname 74
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 162) __SYSCALL(__NR_sethostname, sys_sethostname)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 163) #define __NR_setrlimit 75
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 164) __SYSCALL(__NR_setrlimit, compat_sys_setrlimit)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 165) 			/* 76 was compat_sys_getrlimit */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 166) __SYSCALL(76, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 167) #define __NR_getrusage 77
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 168) __SYSCALL(__NR_getrusage, compat_sys_getrusage)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 169) #define __NR_gettimeofday 78
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 170) __SYSCALL(__NR_gettimeofday, compat_sys_gettimeofday)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 171) #define __NR_settimeofday 79
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 172) __SYSCALL(__NR_settimeofday, compat_sys_settimeofday)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 173) #define __NR_getgroups 80
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 174) __SYSCALL(__NR_getgroups, sys_getgroups16)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 175) #define __NR_setgroups 81
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 176) __SYSCALL(__NR_setgroups, sys_setgroups16)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 177) 			/* 82 was compat_sys_select */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 178) __SYSCALL(82, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 179) #define __NR_symlink 83
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 180) __SYSCALL(__NR_symlink, sys_symlink)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 181) 			/* 84 was sys_lstat */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 182) __SYSCALL(84, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 183) #define __NR_readlink 85
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 184) __SYSCALL(__NR_readlink, sys_readlink)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 185) #define __NR_uselib 86
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 186) __SYSCALL(__NR_uselib, sys_uselib)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 187) #define __NR_swapon 87
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 188) __SYSCALL(__NR_swapon, sys_swapon)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 189) #define __NR_reboot 88
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 190) __SYSCALL(__NR_reboot, sys_reboot)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 191) 			/* 89 was sys_readdir */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 192) __SYSCALL(89, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 193) 			/* 90 was sys_mmap */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 194) __SYSCALL(90, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 195) #define __NR_munmap 91
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 196) __SYSCALL(__NR_munmap, sys_munmap)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 197) #define __NR_truncate 92
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 198) __SYSCALL(__NR_truncate, compat_sys_truncate)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 199) #define __NR_ftruncate 93
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 200) __SYSCALL(__NR_ftruncate, compat_sys_ftruncate)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 201) #define __NR_fchmod 94
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 202) __SYSCALL(__NR_fchmod, sys_fchmod)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 203) #define __NR_fchown 95
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 204) __SYSCALL(__NR_fchown, sys_fchown16)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 205) #define __NR_getpriority 96
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 206) __SYSCALL(__NR_getpriority, sys_getpriority)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 207) #define __NR_setpriority 97
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 208) __SYSCALL(__NR_setpriority, sys_setpriority)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 209) 			/* 98 was sys_profil */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 210) __SYSCALL(98, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 211) #define __NR_statfs 99
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 212) __SYSCALL(__NR_statfs, compat_sys_statfs)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 213) #define __NR_fstatfs 100
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 214) __SYSCALL(__NR_fstatfs, compat_sys_fstatfs)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 215) 			/* 101 was sys_ioperm */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 216) __SYSCALL(101, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 217) 			/* 102 was sys_socketcall */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 218) __SYSCALL(102, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 219) #define __NR_syslog 103
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 220) __SYSCALL(__NR_syslog, sys_syslog)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 221) #define __NR_setitimer 104
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 222) __SYSCALL(__NR_setitimer, compat_sys_setitimer)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 223) #define __NR_getitimer 105
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 224) __SYSCALL(__NR_getitimer, compat_sys_getitimer)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 225) #define __NR_stat 106
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 226) __SYSCALL(__NR_stat, compat_sys_newstat)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 227) #define __NR_lstat 107
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 228) __SYSCALL(__NR_lstat, compat_sys_newlstat)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 229) #define __NR_fstat 108
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 230) __SYSCALL(__NR_fstat, compat_sys_newfstat)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 231) 			/* 109 was sys_uname */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 232) __SYSCALL(109, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 233) 			/* 110 was sys_iopl */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 234) __SYSCALL(110, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 235) #define __NR_vhangup 111
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 236) __SYSCALL(__NR_vhangup, sys_vhangup)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 237) 			/* 112 was sys_idle */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 238) __SYSCALL(112, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 239) 			/* 113 was sys_syscall */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 240) __SYSCALL(113, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 241) #define __NR_wait4 114
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 242) __SYSCALL(__NR_wait4, compat_sys_wait4)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 243) #define __NR_swapoff 115
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 244) __SYSCALL(__NR_swapoff, sys_swapoff)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 245) #define __NR_sysinfo 116
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 246) __SYSCALL(__NR_sysinfo, compat_sys_sysinfo)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 247) 			/* 117 was sys_ipc */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 248) __SYSCALL(117, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 249) #define __NR_fsync 118
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 250) __SYSCALL(__NR_fsync, sys_fsync)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 251) #define __NR_sigreturn 119
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 252) __SYSCALL(__NR_sigreturn, compat_sys_sigreturn)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 253) #define __NR_clone 120
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 254) __SYSCALL(__NR_clone, sys_clone)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 255) #define __NR_setdomainname 121
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 256) __SYSCALL(__NR_setdomainname, sys_setdomainname)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 257) #define __NR_uname 122
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 258) __SYSCALL(__NR_uname, sys_newuname)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 259) 			/* 123 was sys_modify_ldt */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 260) __SYSCALL(123, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 261) #define __NR_adjtimex 124
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 262) __SYSCALL(__NR_adjtimex, sys_adjtimex_time32)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 263) #define __NR_mprotect 125
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 264) __SYSCALL(__NR_mprotect, sys_mprotect)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 265) #define __NR_sigprocmask 126
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 266) __SYSCALL(__NR_sigprocmask, compat_sys_sigprocmask)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 267) 			/* 127 was sys_create_module */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 268) __SYSCALL(127, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 269) #define __NR_init_module 128
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 270) __SYSCALL(__NR_init_module, sys_init_module)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 271) #define __NR_delete_module 129
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 272) __SYSCALL(__NR_delete_module, sys_delete_module)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 273) 			/* 130 was sys_get_kernel_syms */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 274) __SYSCALL(130, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 275) #define __NR_quotactl 131
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 276) __SYSCALL(__NR_quotactl, sys_quotactl)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 277) #define __NR_getpgid 132
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 278) __SYSCALL(__NR_getpgid, sys_getpgid)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 279) #define __NR_fchdir 133
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 280) __SYSCALL(__NR_fchdir, sys_fchdir)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 281) #define __NR_bdflush 134
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 282) __SYSCALL(__NR_bdflush, sys_bdflush)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 283) #define __NR_sysfs 135
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 284) __SYSCALL(__NR_sysfs, sys_sysfs)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 285) #define __NR_personality 136
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 286) __SYSCALL(__NR_personality, sys_personality)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 287) 			/* 137 was sys_afs_syscall */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 288) __SYSCALL(137, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 289) #define __NR_setfsuid 138
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 290) __SYSCALL(__NR_setfsuid, sys_setfsuid16)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 291) #define __NR_setfsgid 139
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 292) __SYSCALL(__NR_setfsgid, sys_setfsgid16)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 293) #define __NR__llseek 140
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 294) __SYSCALL(__NR__llseek, sys_llseek)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 295) #define __NR_getdents 141
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 296) __SYSCALL(__NR_getdents, compat_sys_getdents)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 297) #define __NR__newselect 142
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 298) __SYSCALL(__NR__newselect, compat_sys_select)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 299) #define __NR_flock 143
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 300) __SYSCALL(__NR_flock, sys_flock)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 301) #define __NR_msync 144
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 302) __SYSCALL(__NR_msync, sys_msync)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 303) #define __NR_readv 145
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 304) __SYSCALL(__NR_readv, sys_readv)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 305) #define __NR_writev 146
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 306) __SYSCALL(__NR_writev, sys_writev)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 307) #define __NR_getsid 147
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 308) __SYSCALL(__NR_getsid, sys_getsid)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 309) #define __NR_fdatasync 148
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 310) __SYSCALL(__NR_fdatasync, sys_fdatasync)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 311) 			/* 149 was sys_sysctl */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 312) __SYSCALL(149, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 313) #define __NR_mlock 150
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 314) __SYSCALL(__NR_mlock, sys_mlock)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 315) #define __NR_munlock 151
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 316) __SYSCALL(__NR_munlock, sys_munlock)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 317) #define __NR_mlockall 152
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 318) __SYSCALL(__NR_mlockall, sys_mlockall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 319) #define __NR_munlockall 153
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 320) __SYSCALL(__NR_munlockall, sys_munlockall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 321) #define __NR_sched_setparam 154
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 322) __SYSCALL(__NR_sched_setparam, sys_sched_setparam)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 323) #define __NR_sched_getparam 155
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 324) __SYSCALL(__NR_sched_getparam, sys_sched_getparam)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 325) #define __NR_sched_setscheduler 156
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 326) __SYSCALL(__NR_sched_setscheduler, sys_sched_setscheduler)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 327) #define __NR_sched_getscheduler 157
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 328) __SYSCALL(__NR_sched_getscheduler, sys_sched_getscheduler)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 329) #define __NR_sched_yield 158
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 330) __SYSCALL(__NR_sched_yield, sys_sched_yield)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 331) #define __NR_sched_get_priority_max 159
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 332) __SYSCALL(__NR_sched_get_priority_max, sys_sched_get_priority_max)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 333) #define __NR_sched_get_priority_min 160
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 334) __SYSCALL(__NR_sched_get_priority_min, sys_sched_get_priority_min)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 335) #define __NR_sched_rr_get_interval 161
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 336) __SYSCALL(__NR_sched_rr_get_interval, sys_sched_rr_get_interval_time32)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 337) #define __NR_nanosleep 162
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 338) __SYSCALL(__NR_nanosleep, sys_nanosleep_time32)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 339) #define __NR_mremap 163
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 340) __SYSCALL(__NR_mremap, sys_mremap)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 341) #define __NR_setresuid 164
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 342) __SYSCALL(__NR_setresuid, sys_setresuid16)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 343) #define __NR_getresuid 165
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 344) __SYSCALL(__NR_getresuid, sys_getresuid16)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 345) 			/* 166 was sys_vm86 */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 346) __SYSCALL(166, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 347) 			/* 167 was sys_query_module */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 348) __SYSCALL(167, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 349) #define __NR_poll 168
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 350) __SYSCALL(__NR_poll, sys_poll)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 351) #define __NR_nfsservctl 169
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 352) __SYSCALL(__NR_nfsservctl, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 353) #define __NR_setresgid 170
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 354) __SYSCALL(__NR_setresgid, sys_setresgid16)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 355) #define __NR_getresgid 171
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 356) __SYSCALL(__NR_getresgid, sys_getresgid16)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 357) #define __NR_prctl 172
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 358) __SYSCALL(__NR_prctl, sys_prctl)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 359) #define __NR_rt_sigreturn 173
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 360) __SYSCALL(__NR_rt_sigreturn, compat_sys_rt_sigreturn)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 361) #define __NR_rt_sigaction 174
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 362) __SYSCALL(__NR_rt_sigaction, compat_sys_rt_sigaction)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 363) #define __NR_rt_sigprocmask 175
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 364) __SYSCALL(__NR_rt_sigprocmask, compat_sys_rt_sigprocmask)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 365) #define __NR_rt_sigpending 176
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 366) __SYSCALL(__NR_rt_sigpending, compat_sys_rt_sigpending)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 367) #define __NR_rt_sigtimedwait 177
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 368) __SYSCALL(__NR_rt_sigtimedwait, compat_sys_rt_sigtimedwait_time32)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 369) #define __NR_rt_sigqueueinfo 178
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 370) __SYSCALL(__NR_rt_sigqueueinfo, compat_sys_rt_sigqueueinfo)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 371) #define __NR_rt_sigsuspend 179
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 372) __SYSCALL(__NR_rt_sigsuspend, compat_sys_rt_sigsuspend)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 373) #define __NR_pread64 180
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 374) __SYSCALL(__NR_pread64, compat_sys_aarch32_pread64)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 375) #define __NR_pwrite64 181
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 376) __SYSCALL(__NR_pwrite64, compat_sys_aarch32_pwrite64)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 377) #define __NR_chown 182
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 378) __SYSCALL(__NR_chown, sys_chown16)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 379) #define __NR_getcwd 183
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 380) __SYSCALL(__NR_getcwd, sys_getcwd)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 381) #define __NR_capget 184
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 382) __SYSCALL(__NR_capget, sys_capget)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 383) #define __NR_capset 185
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 384) __SYSCALL(__NR_capset, sys_capset)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 385) #define __NR_sigaltstack 186
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 386) __SYSCALL(__NR_sigaltstack, compat_sys_sigaltstack)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 387) #define __NR_sendfile 187
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 388) __SYSCALL(__NR_sendfile, compat_sys_sendfile)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 389) 			/* 188 reserved */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 390) __SYSCALL(188, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 391) 			/* 189 reserved */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 392) __SYSCALL(189, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 393) #define __NR_vfork 190
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 394) __SYSCALL(__NR_vfork, sys_vfork)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 395) #define __NR_ugetrlimit 191	/* SuS compliant getrlimit */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 396) __SYSCALL(__NR_ugetrlimit, compat_sys_getrlimit)		/* SuS compliant getrlimit */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 397) #define __NR_mmap2 192
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 398) __SYSCALL(__NR_mmap2, compat_sys_aarch32_mmap2)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 399) #define __NR_truncate64 193
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 400) __SYSCALL(__NR_truncate64, compat_sys_aarch32_truncate64)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 401) #define __NR_ftruncate64 194
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 402) __SYSCALL(__NR_ftruncate64, compat_sys_aarch32_ftruncate64)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 403) #define __NR_stat64 195
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 404) __SYSCALL(__NR_stat64, sys_stat64)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 405) #define __NR_lstat64 196
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 406) __SYSCALL(__NR_lstat64, sys_lstat64)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 407) #define __NR_fstat64 197
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 408) __SYSCALL(__NR_fstat64, sys_fstat64)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 409) #define __NR_lchown32 198
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 410) __SYSCALL(__NR_lchown32, sys_lchown)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 411) #define __NR_getuid32 199
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 412) __SYSCALL(__NR_getuid32, sys_getuid)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 413) #define __NR_getgid32 200
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 414) __SYSCALL(__NR_getgid32, sys_getgid)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 415) #define __NR_geteuid32 201
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 416) __SYSCALL(__NR_geteuid32, sys_geteuid)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 417) #define __NR_getegid32 202
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 418) __SYSCALL(__NR_getegid32, sys_getegid)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 419) #define __NR_setreuid32 203
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 420) __SYSCALL(__NR_setreuid32, sys_setreuid)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 421) #define __NR_setregid32 204
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 422) __SYSCALL(__NR_setregid32, sys_setregid)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 423) #define __NR_getgroups32 205
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 424) __SYSCALL(__NR_getgroups32, sys_getgroups)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 425) #define __NR_setgroups32 206
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 426) __SYSCALL(__NR_setgroups32, sys_setgroups)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 427) #define __NR_fchown32 207
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 428) __SYSCALL(__NR_fchown32, sys_fchown)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 429) #define __NR_setresuid32 208
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 430) __SYSCALL(__NR_setresuid32, sys_setresuid)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 431) #define __NR_getresuid32 209
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 432) __SYSCALL(__NR_getresuid32, sys_getresuid)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 433) #define __NR_setresgid32 210
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 434) __SYSCALL(__NR_setresgid32, sys_setresgid)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 435) #define __NR_getresgid32 211
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 436) __SYSCALL(__NR_getresgid32, sys_getresgid)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 437) #define __NR_chown32 212
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 438) __SYSCALL(__NR_chown32, sys_chown)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 439) #define __NR_setuid32 213
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 440) __SYSCALL(__NR_setuid32, sys_setuid)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 441) #define __NR_setgid32 214
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 442) __SYSCALL(__NR_setgid32, sys_setgid)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 443) #define __NR_setfsuid32 215
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 444) __SYSCALL(__NR_setfsuid32, sys_setfsuid)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 445) #define __NR_setfsgid32 216
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 446) __SYSCALL(__NR_setfsgid32, sys_setfsgid)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 447) #define __NR_getdents64 217
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 448) __SYSCALL(__NR_getdents64, sys_getdents64)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 449) #define __NR_pivot_root 218
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 450) __SYSCALL(__NR_pivot_root, sys_pivot_root)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 451) #define __NR_mincore 219
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 452) __SYSCALL(__NR_mincore, sys_mincore)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 453) #define __NR_madvise 220
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 454) __SYSCALL(__NR_madvise, sys_madvise)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 455) #define __NR_fcntl64 221
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 456) __SYSCALL(__NR_fcntl64, compat_sys_fcntl64)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 457) 			/* 222 for tux */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 458) __SYSCALL(222, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 459) 			/* 223 is unused */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 460) __SYSCALL(223, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 461) #define __NR_gettid 224
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 462) __SYSCALL(__NR_gettid, sys_gettid)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 463) #define __NR_readahead 225
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 464) __SYSCALL(__NR_readahead, compat_sys_aarch32_readahead)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 465) #define __NR_setxattr 226
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 466) __SYSCALL(__NR_setxattr, sys_setxattr)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 467) #define __NR_lsetxattr 227
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 468) __SYSCALL(__NR_lsetxattr, sys_lsetxattr)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 469) #define __NR_fsetxattr 228
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 470) __SYSCALL(__NR_fsetxattr, sys_fsetxattr)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 471) #define __NR_getxattr 229
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 472) __SYSCALL(__NR_getxattr, sys_getxattr)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 473) #define __NR_lgetxattr 230
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 474) __SYSCALL(__NR_lgetxattr, sys_lgetxattr)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 475) #define __NR_fgetxattr 231
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 476) __SYSCALL(__NR_fgetxattr, sys_fgetxattr)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 477) #define __NR_listxattr 232
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 478) __SYSCALL(__NR_listxattr, sys_listxattr)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 479) #define __NR_llistxattr 233
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 480) __SYSCALL(__NR_llistxattr, sys_llistxattr)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 481) #define __NR_flistxattr 234
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 482) __SYSCALL(__NR_flistxattr, sys_flistxattr)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 483) #define __NR_removexattr 235
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 484) __SYSCALL(__NR_removexattr, sys_removexattr)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 485) #define __NR_lremovexattr 236
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 486) __SYSCALL(__NR_lremovexattr, sys_lremovexattr)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 487) #define __NR_fremovexattr 237
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 488) __SYSCALL(__NR_fremovexattr, sys_fremovexattr)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 489) #define __NR_tkill 238
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 490) __SYSCALL(__NR_tkill, sys_tkill)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 491) #define __NR_sendfile64 239
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 492) __SYSCALL(__NR_sendfile64, sys_sendfile64)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 493) #define __NR_futex 240
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 494) __SYSCALL(__NR_futex, sys_futex_time32)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 495) #define __NR_sched_setaffinity 241
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 496) __SYSCALL(__NR_sched_setaffinity, compat_sys_sched_setaffinity)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 497) #define __NR_sched_getaffinity 242
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 498) __SYSCALL(__NR_sched_getaffinity, compat_sys_sched_getaffinity)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 499) #define __NR_io_setup 243
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 500) __SYSCALL(__NR_io_setup, compat_sys_io_setup)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 501) #define __NR_io_destroy 244
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 502) __SYSCALL(__NR_io_destroy, sys_io_destroy)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 503) #define __NR_io_getevents 245
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 504) __SYSCALL(__NR_io_getevents, sys_io_getevents_time32)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 505) #define __NR_io_submit 246
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 506) __SYSCALL(__NR_io_submit, compat_sys_io_submit)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 507) #define __NR_io_cancel 247
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 508) __SYSCALL(__NR_io_cancel, sys_io_cancel)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 509) #define __NR_exit_group 248
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 510) __SYSCALL(__NR_exit_group, sys_exit_group)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 511) #define __NR_lookup_dcookie 249
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 512) __SYSCALL(__NR_lookup_dcookie, compat_sys_lookup_dcookie)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 513) #define __NR_epoll_create 250
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 514) __SYSCALL(__NR_epoll_create, sys_epoll_create)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 515) #define __NR_epoll_ctl 251
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 516) __SYSCALL(__NR_epoll_ctl, sys_epoll_ctl)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 517) #define __NR_epoll_wait 252
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 518) __SYSCALL(__NR_epoll_wait, sys_epoll_wait)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 519) #define __NR_remap_file_pages 253
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 520) __SYSCALL(__NR_remap_file_pages, sys_remap_file_pages)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 521) 			/* 254 for set_thread_area */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 522) __SYSCALL(254, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 523) 			/* 255 for get_thread_area */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 524) __SYSCALL(255, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 525) #define __NR_set_tid_address 256
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 526) __SYSCALL(__NR_set_tid_address, sys_set_tid_address)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 527) #define __NR_timer_create 257
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 528) __SYSCALL(__NR_timer_create, compat_sys_timer_create)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 529) #define __NR_timer_settime 258
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 530) __SYSCALL(__NR_timer_settime, sys_timer_settime32)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 531) #define __NR_timer_gettime 259
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 532) __SYSCALL(__NR_timer_gettime, sys_timer_gettime32)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 533) #define __NR_timer_getoverrun 260
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 534) __SYSCALL(__NR_timer_getoverrun, sys_timer_getoverrun)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 535) #define __NR_timer_delete 261
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 536) __SYSCALL(__NR_timer_delete, sys_timer_delete)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 537) #define __NR_clock_settime 262
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 538) __SYSCALL(__NR_clock_settime, sys_clock_settime32)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 539) #define __NR_clock_gettime 263
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 540) __SYSCALL(__NR_clock_gettime, sys_clock_gettime32)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 541) #define __NR_clock_getres 264
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 542) __SYSCALL(__NR_clock_getres, sys_clock_getres_time32)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 543) #define __NR_clock_nanosleep 265
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 544) __SYSCALL(__NR_clock_nanosleep, sys_clock_nanosleep_time32)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 545) #define __NR_statfs64 266
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 546) __SYSCALL(__NR_statfs64, compat_sys_aarch32_statfs64)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 547) #define __NR_fstatfs64 267
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 548) __SYSCALL(__NR_fstatfs64, compat_sys_aarch32_fstatfs64)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 549) #define __NR_tgkill 268
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 550) __SYSCALL(__NR_tgkill, sys_tgkill)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 551) #define __NR_utimes 269
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 552) __SYSCALL(__NR_utimes, sys_utimes_time32)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 553) #define __NR_arm_fadvise64_64 270
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 554) __SYSCALL(__NR_arm_fadvise64_64, compat_sys_aarch32_fadvise64_64)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 555) #define __NR_pciconfig_iobase 271
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 556) __SYSCALL(__NR_pciconfig_iobase, sys_pciconfig_iobase)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 557) #define __NR_pciconfig_read 272
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 558) __SYSCALL(__NR_pciconfig_read, sys_pciconfig_read)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 559) #define __NR_pciconfig_write 273
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 560) __SYSCALL(__NR_pciconfig_write, sys_pciconfig_write)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 561) #define __NR_mq_open 274
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 562) __SYSCALL(__NR_mq_open, compat_sys_mq_open)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 563) #define __NR_mq_unlink 275
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 564) __SYSCALL(__NR_mq_unlink, sys_mq_unlink)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 565) #define __NR_mq_timedsend 276
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 566) __SYSCALL(__NR_mq_timedsend, sys_mq_timedsend_time32)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 567) #define __NR_mq_timedreceive 277
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 568) __SYSCALL(__NR_mq_timedreceive, sys_mq_timedreceive_time32)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 569) #define __NR_mq_notify 278
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 570) __SYSCALL(__NR_mq_notify, compat_sys_mq_notify)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 571) #define __NR_mq_getsetattr 279
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 572) __SYSCALL(__NR_mq_getsetattr, compat_sys_mq_getsetattr)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 573) #define __NR_waitid 280
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 574) __SYSCALL(__NR_waitid, compat_sys_waitid)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 575) #define __NR_socket 281
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 576) __SYSCALL(__NR_socket, sys_socket)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 577) #define __NR_bind 282
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 578) __SYSCALL(__NR_bind, sys_bind)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 579) #define __NR_connect 283
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 580) __SYSCALL(__NR_connect, sys_connect)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 581) #define __NR_listen 284
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 582) __SYSCALL(__NR_listen, sys_listen)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 583) #define __NR_accept 285
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 584) __SYSCALL(__NR_accept, sys_accept)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 585) #define __NR_getsockname 286
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 586) __SYSCALL(__NR_getsockname, sys_getsockname)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 587) #define __NR_getpeername 287
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 588) __SYSCALL(__NR_getpeername, sys_getpeername)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 589) #define __NR_socketpair 288
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 590) __SYSCALL(__NR_socketpair, sys_socketpair)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 591) #define __NR_send 289
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 592) __SYSCALL(__NR_send, sys_send)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 593) #define __NR_sendto 290
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 594) __SYSCALL(__NR_sendto, sys_sendto)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 595) #define __NR_recv 291
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 596) __SYSCALL(__NR_recv, compat_sys_recv)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 597) #define __NR_recvfrom 292
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 598) __SYSCALL(__NR_recvfrom, compat_sys_recvfrom)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 599) #define __NR_shutdown 293
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 600) __SYSCALL(__NR_shutdown, sys_shutdown)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 601) #define __NR_setsockopt 294
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 602) __SYSCALL(__NR_setsockopt, sys_setsockopt)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 603) #define __NR_getsockopt 295
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 604) __SYSCALL(__NR_getsockopt, sys_getsockopt)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 605) #define __NR_sendmsg 296
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 606) __SYSCALL(__NR_sendmsg, compat_sys_sendmsg)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 607) #define __NR_recvmsg 297
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 608) __SYSCALL(__NR_recvmsg, compat_sys_recvmsg)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 609) #define __NR_semop 298
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 610) __SYSCALL(__NR_semop, sys_semop)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 611) #define __NR_semget 299
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 612) __SYSCALL(__NR_semget, sys_semget)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 613) #define __NR_semctl 300
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 614) __SYSCALL(__NR_semctl, compat_sys_old_semctl)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 615) #define __NR_msgsnd 301
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 616) __SYSCALL(__NR_msgsnd, compat_sys_msgsnd)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 617) #define __NR_msgrcv 302
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 618) __SYSCALL(__NR_msgrcv, compat_sys_msgrcv)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 619) #define __NR_msgget 303
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 620) __SYSCALL(__NR_msgget, sys_msgget)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 621) #define __NR_msgctl 304
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 622) __SYSCALL(__NR_msgctl, compat_sys_old_msgctl)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 623) #define __NR_shmat 305
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 624) __SYSCALL(__NR_shmat, compat_sys_shmat)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 625) #define __NR_shmdt 306
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 626) __SYSCALL(__NR_shmdt, sys_shmdt)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 627) #define __NR_shmget 307
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 628) __SYSCALL(__NR_shmget, sys_shmget)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 629) #define __NR_shmctl 308
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 630) __SYSCALL(__NR_shmctl, compat_sys_old_shmctl)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 631) #define __NR_add_key 309
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 632) __SYSCALL(__NR_add_key, sys_add_key)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 633) #define __NR_request_key 310
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 634) __SYSCALL(__NR_request_key, sys_request_key)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 635) #define __NR_keyctl 311
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 636) __SYSCALL(__NR_keyctl, compat_sys_keyctl)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 637) #define __NR_semtimedop 312
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 638) __SYSCALL(__NR_semtimedop, sys_semtimedop_time32)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 639) #define __NR_vserver 313
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 640) __SYSCALL(__NR_vserver, sys_ni_syscall)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 641) #define __NR_ioprio_set 314
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 642) __SYSCALL(__NR_ioprio_set, sys_ioprio_set)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 643) #define __NR_ioprio_get 315
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 644) __SYSCALL(__NR_ioprio_get, sys_ioprio_get)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 645) #define __NR_inotify_init 316
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 646) __SYSCALL(__NR_inotify_init, sys_inotify_init)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 647) #define __NR_inotify_add_watch 317
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 648) __SYSCALL(__NR_inotify_add_watch, sys_inotify_add_watch)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 649) #define __NR_inotify_rm_watch 318
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 650) __SYSCALL(__NR_inotify_rm_watch, sys_inotify_rm_watch)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 651) #define __NR_mbind 319
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 652) __SYSCALL(__NR_mbind, compat_sys_mbind)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 653) #define __NR_get_mempolicy 320
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 654) __SYSCALL(__NR_get_mempolicy, compat_sys_get_mempolicy)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 655) #define __NR_set_mempolicy 321
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 656) __SYSCALL(__NR_set_mempolicy, compat_sys_set_mempolicy)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 657) #define __NR_openat 322
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 658) __SYSCALL(__NR_openat, compat_sys_openat)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 659) #define __NR_mkdirat 323
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 660) __SYSCALL(__NR_mkdirat, sys_mkdirat)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 661) #define __NR_mknodat 324
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 662) __SYSCALL(__NR_mknodat, sys_mknodat)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 663) #define __NR_fchownat 325
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 664) __SYSCALL(__NR_fchownat, sys_fchownat)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 665) #define __NR_futimesat 326
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 666) __SYSCALL(__NR_futimesat, sys_futimesat_time32)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 667) #define __NR_fstatat64 327
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 668) __SYSCALL(__NR_fstatat64, sys_fstatat64)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 669) #define __NR_unlinkat 328
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 670) __SYSCALL(__NR_unlinkat, sys_unlinkat)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 671) #define __NR_renameat 329
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 672) __SYSCALL(__NR_renameat, sys_renameat)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 673) #define __NR_linkat 330
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 674) __SYSCALL(__NR_linkat, sys_linkat)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 675) #define __NR_symlinkat 331
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 676) __SYSCALL(__NR_symlinkat, sys_symlinkat)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 677) #define __NR_readlinkat 332
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 678) __SYSCALL(__NR_readlinkat, sys_readlinkat)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 679) #define __NR_fchmodat 333
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 680) __SYSCALL(__NR_fchmodat, sys_fchmodat)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 681) #define __NR_faccessat 334
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 682) __SYSCALL(__NR_faccessat, sys_faccessat)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 683) #define __NR_pselect6 335
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 684) __SYSCALL(__NR_pselect6, compat_sys_pselect6_time32)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 685) #define __NR_ppoll 336
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 686) __SYSCALL(__NR_ppoll, compat_sys_ppoll_time32)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 687) #define __NR_unshare 337
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 688) __SYSCALL(__NR_unshare, sys_unshare)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 689) #define __NR_set_robust_list 338
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 690) __SYSCALL(__NR_set_robust_list, compat_sys_set_robust_list)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 691) #define __NR_get_robust_list 339
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 692) __SYSCALL(__NR_get_robust_list, compat_sys_get_robust_list)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 693) #define __NR_splice 340
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 694) __SYSCALL(__NR_splice, sys_splice)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 695) #define __NR_sync_file_range2 341
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 696) __SYSCALL(__NR_sync_file_range2, compat_sys_aarch32_sync_file_range2)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 697) #define __NR_tee 342
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 698) __SYSCALL(__NR_tee, sys_tee)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 699) #define __NR_vmsplice 343
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 700) __SYSCALL(__NR_vmsplice, sys_vmsplice)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 701) #define __NR_move_pages 344
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 702) __SYSCALL(__NR_move_pages, compat_sys_move_pages)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 703) #define __NR_getcpu 345
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 704) __SYSCALL(__NR_getcpu, sys_getcpu)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 705) #define __NR_epoll_pwait 346
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 706) __SYSCALL(__NR_epoll_pwait, compat_sys_epoll_pwait)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 707) #define __NR_kexec_load 347
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 708) __SYSCALL(__NR_kexec_load, compat_sys_kexec_load)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 709) #define __NR_utimensat 348
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 710) __SYSCALL(__NR_utimensat, sys_utimensat_time32)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 711) #define __NR_signalfd 349
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 712) __SYSCALL(__NR_signalfd, compat_sys_signalfd)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 713) #define __NR_timerfd_create 350
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 714) __SYSCALL(__NR_timerfd_create, sys_timerfd_create)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 715) #define __NR_eventfd 351
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 716) __SYSCALL(__NR_eventfd, sys_eventfd)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 717) #define __NR_fallocate 352
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 718) __SYSCALL(__NR_fallocate, compat_sys_aarch32_fallocate)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 719) #define __NR_timerfd_settime 353
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 720) __SYSCALL(__NR_timerfd_settime, sys_timerfd_settime32)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 721) #define __NR_timerfd_gettime 354
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 722) __SYSCALL(__NR_timerfd_gettime, sys_timerfd_gettime32)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 723) #define __NR_signalfd4 355
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 724) __SYSCALL(__NR_signalfd4, compat_sys_signalfd4)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 725) #define __NR_eventfd2 356
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 726) __SYSCALL(__NR_eventfd2, sys_eventfd2)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 727) #define __NR_epoll_create1 357
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 728) __SYSCALL(__NR_epoll_create1, sys_epoll_create1)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 729) #define __NR_dup3 358
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 730) __SYSCALL(__NR_dup3, sys_dup3)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 731) #define __NR_pipe2 359
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 732) __SYSCALL(__NR_pipe2, sys_pipe2)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 733) #define __NR_inotify_init1 360
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 734) __SYSCALL(__NR_inotify_init1, sys_inotify_init1)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 735) #define __NR_preadv 361
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 736) __SYSCALL(__NR_preadv, compat_sys_preadv)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 737) #define __NR_pwritev 362
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 738) __SYSCALL(__NR_pwritev, compat_sys_pwritev)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 739) #define __NR_rt_tgsigqueueinfo 363
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 740) __SYSCALL(__NR_rt_tgsigqueueinfo, compat_sys_rt_tgsigqueueinfo)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 741) #define __NR_perf_event_open 364
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 742) __SYSCALL(__NR_perf_event_open, sys_perf_event_open)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 743) #define __NR_recvmmsg 365
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 744) __SYSCALL(__NR_recvmmsg, compat_sys_recvmmsg_time32)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 745) #define __NR_accept4 366
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 746) __SYSCALL(__NR_accept4, sys_accept4)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 747) #define __NR_fanotify_init 367
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 748) __SYSCALL(__NR_fanotify_init, sys_fanotify_init)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 749) #define __NR_fanotify_mark 368
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 750) __SYSCALL(__NR_fanotify_mark, compat_sys_fanotify_mark)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 751) #define __NR_prlimit64 369
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 752) __SYSCALL(__NR_prlimit64, sys_prlimit64)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 753) #define __NR_name_to_handle_at 370
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 754) __SYSCALL(__NR_name_to_handle_at, sys_name_to_handle_at)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 755) #define __NR_open_by_handle_at 371
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 756) __SYSCALL(__NR_open_by_handle_at, compat_sys_open_by_handle_at)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 757) #define __NR_clock_adjtime 372
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 758) __SYSCALL(__NR_clock_adjtime, sys_clock_adjtime32)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 759) #define __NR_syncfs 373
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 760) __SYSCALL(__NR_syncfs, sys_syncfs)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 761) #define __NR_sendmmsg 374
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 762) __SYSCALL(__NR_sendmmsg, compat_sys_sendmmsg)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 763) #define __NR_setns 375
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 764) __SYSCALL(__NR_setns, sys_setns)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 765) #define __NR_process_vm_readv 376
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 766) __SYSCALL(__NR_process_vm_readv, sys_process_vm_readv)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 767) #define __NR_process_vm_writev 377
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 768) __SYSCALL(__NR_process_vm_writev, sys_process_vm_writev)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 769) #define __NR_kcmp 378
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 770) __SYSCALL(__NR_kcmp, sys_kcmp)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 771) #define __NR_finit_module 379
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 772) __SYSCALL(__NR_finit_module, sys_finit_module)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 773) #define __NR_sched_setattr 380
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 774) __SYSCALL(__NR_sched_setattr, sys_sched_setattr)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 775) #define __NR_sched_getattr 381
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 776) __SYSCALL(__NR_sched_getattr, sys_sched_getattr)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 777) #define __NR_renameat2 382
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 778) __SYSCALL(__NR_renameat2, sys_renameat2)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 779) #define __NR_seccomp 383
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 780) __SYSCALL(__NR_seccomp, sys_seccomp)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 781) #define __NR_getrandom 384
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 782) __SYSCALL(__NR_getrandom, sys_getrandom)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 783) #define __NR_memfd_create 385
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 784) __SYSCALL(__NR_memfd_create, sys_memfd_create)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 785) #define __NR_bpf 386
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 786) __SYSCALL(__NR_bpf, sys_bpf)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 787) #define __NR_execveat 387
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 788) __SYSCALL(__NR_execveat, compat_sys_execveat)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 789) #define __NR_userfaultfd 388
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 790) __SYSCALL(__NR_userfaultfd, sys_userfaultfd)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 791) #define __NR_membarrier 389
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 792) __SYSCALL(__NR_membarrier, sys_membarrier)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 793) #define __NR_mlock2 390
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 794) __SYSCALL(__NR_mlock2, sys_mlock2)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 795) #define __NR_copy_file_range 391
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 796) __SYSCALL(__NR_copy_file_range, sys_copy_file_range)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 797) #define __NR_preadv2 392
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 798) __SYSCALL(__NR_preadv2, compat_sys_preadv2)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 799) #define __NR_pwritev2 393
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 800) __SYSCALL(__NR_pwritev2, compat_sys_pwritev2)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 801) #define __NR_pkey_mprotect 394
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 802) __SYSCALL(__NR_pkey_mprotect, sys_pkey_mprotect)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 803) #define __NR_pkey_alloc 395
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 804) __SYSCALL(__NR_pkey_alloc, sys_pkey_alloc)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 805) #define __NR_pkey_free 396
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 806) __SYSCALL(__NR_pkey_free, sys_pkey_free)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 807) #define __NR_statx 397
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 808) __SYSCALL(__NR_statx, sys_statx)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 809) #define __NR_rseq 398
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 810) __SYSCALL(__NR_rseq, sys_rseq)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 811) #define __NR_io_pgetevents 399
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 812) __SYSCALL(__NR_io_pgetevents, compat_sys_io_pgetevents)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 813) #define __NR_migrate_pages 400
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 814) __SYSCALL(__NR_migrate_pages, compat_sys_migrate_pages)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 815) #define __NR_kexec_file_load 401
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 816) __SYSCALL(__NR_kexec_file_load, sys_kexec_file_load)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 817) /* 402 is unused */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 818) #define __NR_clock_gettime64 403
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 819) __SYSCALL(__NR_clock_gettime64, sys_clock_gettime)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 820) #define __NR_clock_settime64 404
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 821) __SYSCALL(__NR_clock_settime64, sys_clock_settime)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 822) #define __NR_clock_adjtime64 405
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 823) __SYSCALL(__NR_clock_adjtime64, sys_clock_adjtime)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 824) #define __NR_clock_getres_time64 406
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 825) __SYSCALL(__NR_clock_getres_time64, sys_clock_getres)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 826) #define __NR_clock_nanosleep_time64 407
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 827) __SYSCALL(__NR_clock_nanosleep_time64, sys_clock_nanosleep)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 828) #define __NR_timer_gettime64 408
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 829) __SYSCALL(__NR_timer_gettime64, sys_timer_gettime)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 830) #define __NR_timer_settime64 409
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 831) __SYSCALL(__NR_timer_settime64, sys_timer_settime)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 832) #define __NR_timerfd_gettime64 410
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 833) __SYSCALL(__NR_timerfd_gettime64, sys_timerfd_gettime)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 834) #define __NR_timerfd_settime64 411
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 835) __SYSCALL(__NR_timerfd_settime64, sys_timerfd_settime)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 836) #define __NR_utimensat_time64 412
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 837) __SYSCALL(__NR_utimensat_time64, sys_utimensat)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 838) #define __NR_pselect6_time64 413
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 839) __SYSCALL(__NR_pselect6_time64, compat_sys_pselect6_time64)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 840) #define __NR_ppoll_time64 414
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 841) __SYSCALL(__NR_ppoll_time64, compat_sys_ppoll_time64)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 842) #define __NR_io_pgetevents_time64 416
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 843) __SYSCALL(__NR_io_pgetevents_time64, sys_io_pgetevents)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 844) #define __NR_recvmmsg_time64 417
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 845) __SYSCALL(__NR_recvmmsg_time64, compat_sys_recvmmsg_time64)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 846) #define __NR_mq_timedsend_time64 418
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 847) __SYSCALL(__NR_mq_timedsend_time64, sys_mq_timedsend)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 848) #define __NR_mq_timedreceive_time64 419
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 849) __SYSCALL(__NR_mq_timedreceive_time64, sys_mq_timedreceive)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 850) #define __NR_semtimedop_time64 420
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 851) __SYSCALL(__NR_semtimedop_time64, sys_semtimedop)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 852) #define __NR_rt_sigtimedwait_time64 421
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 853) __SYSCALL(__NR_rt_sigtimedwait_time64, compat_sys_rt_sigtimedwait_time64)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 854) #define __NR_futex_time64 422
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 855) __SYSCALL(__NR_futex_time64, sys_futex)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 856) #define __NR_sched_rr_get_interval_time64 423
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 857) __SYSCALL(__NR_sched_rr_get_interval_time64, sys_sched_rr_get_interval)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 858) #define __NR_pidfd_send_signal 424
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 859) __SYSCALL(__NR_pidfd_send_signal, sys_pidfd_send_signal)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 860) #define __NR_io_uring_setup 425
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 861) __SYSCALL(__NR_io_uring_setup, sys_io_uring_setup)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 862) #define __NR_io_uring_enter 426
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 863) __SYSCALL(__NR_io_uring_enter, sys_io_uring_enter)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 864) #define __NR_io_uring_register 427
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 865) __SYSCALL(__NR_io_uring_register, sys_io_uring_register)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 866) #define __NR_open_tree 428
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 867) __SYSCALL(__NR_open_tree, sys_open_tree)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 868) #define __NR_move_mount 429
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 869) __SYSCALL(__NR_move_mount, sys_move_mount)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 870) #define __NR_fsopen 430
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 871) __SYSCALL(__NR_fsopen, sys_fsopen)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 872) #define __NR_fsconfig 431
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 873) __SYSCALL(__NR_fsconfig, sys_fsconfig)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 874) #define __NR_fsmount 432
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 875) __SYSCALL(__NR_fsmount, sys_fsmount)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 876) #define __NR_fspick 433
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 877) __SYSCALL(__NR_fspick, sys_fspick)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 878) #define __NR_pidfd_open 434
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 879) __SYSCALL(__NR_pidfd_open, sys_pidfd_open)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 880) #define __NR_clone3 435
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 881) __SYSCALL(__NR_clone3, sys_clone3)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 882) #define __NR_close_range 436
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 883) __SYSCALL(__NR_close_range, sys_close_range)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 884) #define __NR_openat2 437
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 885) __SYSCALL(__NR_openat2, sys_openat2)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 886) #define __NR_pidfd_getfd 438
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 887) __SYSCALL(__NR_pidfd_getfd, sys_pidfd_getfd)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 888) #define __NR_faccessat2 439
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 889) __SYSCALL(__NR_faccessat2, sys_faccessat2)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 890) #define __NR_process_madvise 440
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 891) __SYSCALL(__NR_process_madvise, sys_process_madvise)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 892) #define __NR_process_mrelease 448
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 893) __SYSCALL(__NR_process_mrelease, sys_process_mrelease)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 894) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 895) /*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 896)  * Please add new compat syscalls above this comment and update
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 897)  * __NR_compat_syscalls in asm/unistd.h.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 898)  */