blob: d6fd6d9ced2474ab477b0becefbd5f695d256e96 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 2002, Greg Ungerer (gerg@snapgear.com)
3 *
4 * Based on older entry.S files, the following copyrights apply:
5 *
6 * Copyright (C) 1998 D. Jeff Dionne <jeff@lineo.ca>,
7 * Kenneth Albanowski <kjahds@kjahds.com>,
8 * Copyright (C) 2000 Lineo Inc. (www.lineo.com)
9 * Copyright (C) 1991, 1992 Linus Torvalds
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +020010 *
11 * Linux/m68k support by Hamish Macdonald
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 */
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/linkage.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +020016#ifndef CONFIG_MMU
17#define sys_mmap2 sys_mmap_pgoff
18#endif
19
20.section .rodata
Linus Torvalds1da177e2005-04-16 15:20:36 -070021ALIGN
22ENTRY(sys_call_table)
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +020023 .long sys_restart_syscall /* 0 - old "setup()" system call, used for restarting */
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 .long sys_exit
Al Viro20ecc912012-10-21 16:41:46 -040025 .long __sys_fork
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 .long sys_read
27 .long sys_write
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +020028 .long sys_open /* 5 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 .long sys_close
30 .long sys_waitpid
31 .long sys_creat
32 .long sys_link
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +020033 .long sys_unlink /* 10 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 .long sys_execve
35 .long sys_chdir
36 .long sys_time
37 .long sys_mknod
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +020038 .long sys_chmod /* 15 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 .long sys_chown16
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +020040 .long sys_ni_syscall /* old break syscall holder */
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 .long sys_stat
42 .long sys_lseek
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +020043 .long sys_getpid /* 20 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 .long sys_mount
45 .long sys_oldumount
46 .long sys_setuid16
47 .long sys_getuid16
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +020048 .long sys_stime /* 25 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 .long sys_ptrace
50 .long sys_alarm
51 .long sys_fstat
52 .long sys_pause
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +020053 .long sys_utime /* 30 */
54 .long sys_ni_syscall /* old stty syscall holder */
55 .long sys_ni_syscall /* old gtty syscall holder */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 .long sys_access
57 .long sys_nice
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +020058 .long sys_ni_syscall /* 35 - old ftime syscall holder */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 .long sys_sync
60 .long sys_kill
61 .long sys_rename
62 .long sys_mkdir
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +020063 .long sys_rmdir /* 40 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 .long sys_dup
65 .long sys_pipe
66 .long sys_times
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +020067 .long sys_ni_syscall /* old prof syscall holder */
68 .long sys_brk /* 45 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 .long sys_setgid16
70 .long sys_getgid16
71 .long sys_signal
72 .long sys_geteuid16
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +020073 .long sys_getegid16 /* 50 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 .long sys_acct
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +020075 .long sys_umount /* recycled never used phys() */
76 .long sys_ni_syscall /* old lock syscall holder */
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 .long sys_ioctl
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +020078 .long sys_fcntl /* 55 */
79 .long sys_ni_syscall /* old mpx syscall holder */
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 .long sys_setpgid
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +020081 .long sys_ni_syscall /* old ulimit syscall holder */
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 .long sys_ni_syscall
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +020083 .long sys_umask /* 60 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 .long sys_chroot
85 .long sys_ustat
86 .long sys_dup2
87 .long sys_getppid
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +020088 .long sys_getpgrp /* 65 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 .long sys_setsid
90 .long sys_sigaction
91 .long sys_sgetmask
92 .long sys_ssetmask
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +020093 .long sys_setreuid16 /* 70 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 .long sys_setregid16
95 .long sys_sigsuspend
96 .long sys_sigpending
97 .long sys_sethostname
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +020098 .long sys_setrlimit /* 75 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 .long sys_old_getrlimit
100 .long sys_getrusage
101 .long sys_gettimeofday
102 .long sys_settimeofday
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200103 .long sys_getgroups16 /* 80 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 .long sys_setgroups16
Christoph Hellwig5d0e5282010-03-10 15:21:13 -0800105 .long sys_old_select
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 .long sys_symlink
107 .long sys_lstat
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200108 .long sys_readlink /* 85 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 .long sys_uselib
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200110 .long sys_swapon
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 .long sys_reboot
Heiko Carstense55380e2009-01-14 14:13:55 +0100112 .long sys_old_readdir
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200113 .long sys_old_mmap /* 90 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 .long sys_munmap
115 .long sys_truncate
116 .long sys_ftruncate
117 .long sys_fchmod
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200118 .long sys_fchown16 /* 95 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 .long sys_getpriority
120 .long sys_setpriority
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200121 .long sys_ni_syscall /* old profil syscall holder */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 .long sys_statfs
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200123 .long sys_fstatfs /* 100 */
124 .long sys_ni_syscall /* ioperm for i386 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 .long sys_socketcall
126 .long sys_syslog
127 .long sys_setitimer
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200128 .long sys_getitimer /* 105 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 .long sys_newstat
130 .long sys_newlstat
131 .long sys_newfstat
132 .long sys_ni_syscall
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200133 .long sys_ni_syscall /* 110 - iopl for i386 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 .long sys_vhangup
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200135 .long sys_ni_syscall /* obsolete idle() syscall */
136 .long sys_ni_syscall /* vm86old for i386 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 .long sys_wait4
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200138 .long sys_swapoff /* 115 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 .long sys_sysinfo
140 .long sys_ipc
141 .long sys_fsync
142 .long sys_sigreturn
Al Viro20ecc912012-10-21 16:41:46 -0400143 .long __sys_clone /* 120 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 .long sys_setdomainname
145 .long sys_newuname
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200146 .long sys_cacheflush /* modify_ldt for i386 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 .long sys_adjtimex
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200148 .long sys_mprotect /* 125 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 .long sys_sigprocmask
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200150 .long sys_ni_syscall /* old "create_module" */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 .long sys_init_module
152 .long sys_delete_module
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200153 .long sys_ni_syscall /* 130 - old "get_kernel_syms" */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 .long sys_quotactl
155 .long sys_getpgid
156 .long sys_fchdir
157 .long sys_bdflush
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200158 .long sys_sysfs /* 135 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 .long sys_personality
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200160 .long sys_ni_syscall /* for afs_syscall */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 .long sys_setfsuid16
162 .long sys_setfsgid16
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200163 .long sys_llseek /* 140 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 .long sys_getdents
165 .long sys_select
166 .long sys_flock
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200167 .long sys_msync
168 .long sys_readv /* 145 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 .long sys_writev
170 .long sys_getsid
171 .long sys_fdatasync
172 .long sys_sysctl
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200173 .long sys_mlock /* 150 */
174 .long sys_munlock
175 .long sys_mlockall
176 .long sys_munlockall
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 .long sys_sched_setparam
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200178 .long sys_sched_getparam /* 155 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 .long sys_sched_setscheduler
180 .long sys_sched_getscheduler
181 .long sys_sched_yield
182 .long sys_sched_get_priority_max
183 .long sys_sched_get_priority_min /* 160 */
184 .long sys_sched_rr_get_interval
185 .long sys_nanosleep
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200186 .long sys_mremap
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 .long sys_setresuid16
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200188 .long sys_getresuid16 /* 165 */
189 .long sys_getpagesize
190 .long sys_ni_syscall /* old "query_module" */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 .long sys_poll
NeilBrownf5b94092011-08-26 18:03:11 -0400192 .long sys_ni_syscall /* old nfsservctl */
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200193 .long sys_setresgid16 /* 170 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 .long sys_getresgid16
195 .long sys_prctl
196 .long sys_rt_sigreturn
197 .long sys_rt_sigaction
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200198 .long sys_rt_sigprocmask /* 175 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 .long sys_rt_sigpending
200 .long sys_rt_sigtimedwait
201 .long sys_rt_sigqueueinfo
202 .long sys_rt_sigsuspend
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200203 .long sys_pread64 /* 180 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 .long sys_pwrite64
205 .long sys_lchown16
206 .long sys_getcwd
207 .long sys_capget
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200208 .long sys_capset /* 185 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 .long sys_sigaltstack
210 .long sys_sendfile
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200211 .long sys_ni_syscall /* streams1 */
212 .long sys_ni_syscall /* streams2 */
Al Viro20ecc912012-10-21 16:41:46 -0400213 .long __sys_vfork /* 190 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 .long sys_getrlimit
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200215 .long sys_mmap2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 .long sys_truncate64
217 .long sys_ftruncate64
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200218 .long sys_stat64 /* 195 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 .long sys_lstat64
220 .long sys_fstat64
221 .long sys_chown
222 .long sys_getuid
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200223 .long sys_getgid /* 200 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 .long sys_geteuid
225 .long sys_getegid
226 .long sys_setreuid
227 .long sys_setregid
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200228 .long sys_getgroups /* 205 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 .long sys_setgroups
230 .long sys_fchown
231 .long sys_setresuid
232 .long sys_getresuid
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200233 .long sys_setresgid /* 210 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 .long sys_getresgid
235 .long sys_lchown
236 .long sys_setuid
237 .long sys_setgid
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200238 .long sys_setfsuid /* 215 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 .long sys_setfsgid
240 .long sys_pivot_root
241 .long sys_ni_syscall
242 .long sys_ni_syscall
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200243 .long sys_getdents64 /* 220 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 .long sys_gettid
245 .long sys_tkill
246 .long sys_setxattr
247 .long sys_lsetxattr
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200248 .long sys_fsetxattr /* 225 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 .long sys_getxattr
250 .long sys_lgetxattr
251 .long sys_fgetxattr
252 .long sys_listxattr
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200253 .long sys_llistxattr /* 230 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 .long sys_flistxattr
255 .long sys_removexattr
256 .long sys_lremovexattr
257 .long sys_fremovexattr
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200258 .long sys_futex /* 235 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 .long sys_sendfile64
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200260 .long sys_mincore
261 .long sys_madvise
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 .long sys_fcntl64
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200263 .long sys_readahead /* 240 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 .long sys_io_setup
265 .long sys_io_destroy
266 .long sys_io_getevents
267 .long sys_io_submit
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200268 .long sys_io_cancel /* 245 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 .long sys_fadvise64
270 .long sys_exit_group
271 .long sys_lookup_dcookie
272 .long sys_epoll_create
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200273 .long sys_epoll_ctl /* 250 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 .long sys_epoll_wait
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200275 .long sys_remap_file_pages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 .long sys_set_tid_address
277 .long sys_timer_create
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200278 .long sys_timer_settime /* 255 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 .long sys_timer_gettime
280 .long sys_timer_getoverrun
281 .long sys_timer_delete
282 .long sys_clock_settime
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200283 .long sys_clock_gettime /* 260 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 .long sys_clock_getres
285 .long sys_clock_nanosleep
286 .long sys_statfs64
287 .long sys_fstatfs64
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200288 .long sys_tgkill /* 265 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 .long sys_utimes
290 .long sys_fadvise64_64
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200291 .long sys_mbind
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 .long sys_get_mempolicy
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200293 .long sys_set_mempolicy /* 270 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 .long sys_mq_open
295 .long sys_mq_unlink
296 .long sys_mq_timedsend
297 .long sys_mq_timedreceive
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200298 .long sys_mq_notify /* 275 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 .long sys_mq_getsetattr
300 .long sys_waitid
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200301 .long sys_ni_syscall /* for sys_vserver */
Geert Uytterhoevene0fafda2006-10-12 23:18:53 +0200302 .long sys_add_key
Geert Uytterhoevenc4245c92011-04-06 22:12:53 +0200303 .long sys_request_key /* 280 */
Geert Uytterhoevene0fafda2006-10-12 23:18:53 +0200304 .long sys_keyctl
305 .long sys_ioprio_set
306 .long sys_ioprio_get
307 .long sys_inotify_init
308 .long sys_inotify_add_watch /* 285 */
309 .long sys_inotify_rm_watch
310 .long sys_migrate_pages
311 .long sys_openat
312 .long sys_mkdirat
313 .long sys_mknodat /* 290 */
314 .long sys_fchownat
315 .long sys_futimesat
316 .long sys_fstatat64
317 .long sys_unlinkat
318 .long sys_renameat /* 295 */
319 .long sys_linkat
320 .long sys_symlinkat
321 .long sys_readlinkat
322 .long sys_fchmodat
323 .long sys_faccessat /* 300 */
Geert Uytterhoevend6d42bb2011-05-06 20:57:11 +0200324 .long sys_pselect6
325 .long sys_ppoll
Geert Uytterhoevene0fafda2006-10-12 23:18:53 +0200326 .long sys_unshare
327 .long sys_set_robust_list
328 .long sys_get_robust_list /* 305 */
329 .long sys_splice
330 .long sys_sync_file_range
331 .long sys_tee
332 .long sys_vmsplice
333 .long sys_move_pages /* 310 */
Geert Uytterhoevene8454982007-09-11 15:23:56 -0700334 .long sys_sched_setaffinity
335 .long sys_sched_getaffinity
336 .long sys_kexec_load
337 .long sys_getcpu
338 .long sys_epoll_pwait /* 315 */
339 .long sys_utimensat
340 .long sys_signalfd
Geert Uytterhoeven8727e282008-03-04 09:18:16 +0100341 .long sys_timerfd_create
Geert Uytterhoevene8454982007-09-11 15:23:56 -0700342 .long sys_eventfd
343 .long sys_fallocate /* 320 */
Geert Uytterhoeven8727e282008-03-04 09:18:16 +0100344 .long sys_timerfd_settime
345 .long sys_timerfd_gettime
Geert Uytterhoeven0e7d5bb2008-08-11 09:00:30 +0200346 .long sys_signalfd4
347 .long sys_eventfd2
348 .long sys_epoll_create1 /* 325 */
349 .long sys_dup3
350 .long sys_pipe2
351 .long sys_inotify_init1
Geert Uytterhoevencc7c0fa2009-04-09 22:23:51 +0200352 .long sys_preadv
353 .long sys_pwritev /* 330 */
Geert Uytterhoeven98484842009-08-21 22:03:54 +0200354 .long sys_rt_tgsigqueueinfo
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200355 .long sys_perf_event_open
Maxim Kuvyrkova58f7532009-12-06 10:08:14 -0800356 .long sys_get_thread_area
357 .long sys_set_thread_area
358 .long sys_atomic_cmpxchg_32 /* 335 */
359 .long sys_atomic_barrier
Geert Uytterhoevenedc805b2010-08-16 14:05:20 +0200360 .long sys_fanotify_init
361 .long sys_fanotify_mark
362 .long sys_prlimit64
Geert Uytterhoeven60d48c12011-04-12 22:24:45 +0200363 .long sys_name_to_handle_at /* 340 */
364 .long sys_open_by_handle_at
365 .long sys_clock_adjtime
366 .long sys_syncfs
Eric W. Biederman7b21fdd2011-05-27 19:28:27 -0700367 .long sys_setns
Geert Uytterhoeven5bf1e972011-11-15 22:22:49 +0100368 .long sys_process_vm_readv /* 345 */
369 .long sys_process_vm_writev
Geert Uytterhoeven8a745ee2012-09-23 11:03:00 +0200370 .long sys_kcmp
Geert Uytterhoevene7e29b42012-12-23 10:28:00 +0100371 .long sys_finit_module
Geert Uytterhoeven7247f552014-02-03 15:07:13 +0100372 .long sys_sched_setattr
373 .long sys_sched_getattr /* 350 */
Miklos Szeredicc79f002014-05-20 10:59:37 +0200374 .long sys_renameat2
Geert Uytterhoeven16d7b8b2014-08-11 21:41:41 +0200375 .long sys_getrandom
Geert Uytterhoeven4ed78002014-08-11 21:42:49 +0200376 .long sys_memfd_create
Geert Uytterhoevenf7bbd12a2014-10-09 20:30:06 +0200377 .long sys_bpf
Geert Uytterhoevenf27bd5b2014-12-21 11:51:22 +0100378 .long sys_execveat /* 355 */
Geert Uytterhoeven5b3f33e2015-09-06 11:59:27 +0200379 .long sys_socket
380 .long sys_socketpair
381 .long sys_bind
382 .long sys_connect
383 .long sys_listen /* 360 */
384 .long sys_accept4
385 .long sys_getsockopt
386 .long sys_setsockopt
387 .long sys_getsockname
388 .long sys_getpeername /* 365 */
389 .long sys_sendto
390 .long sys_sendmsg
391 .long sys_recvfrom
392 .long sys_recvmsg
393 .long sys_shutdown /* 370 */
394 .long sys_recvmmsg
395 .long sys_sendmmsg
Geert Uytterhoevenb92858f2015-09-06 12:01:40 +0200396 .long sys_userfaultfd
Geert Uytterhoeven7f843da2015-09-13 11:49:13 +0200397 .long sys_membarrier
Geert Uytterhoeven21d380e2015-11-09 10:53:26 +0100398 .long sys_mlock2 /* 375 */
Geert Uytterhoeven78832a82016-01-15 14:31:30 +0100399 .long sys_copy_file_range
Geert Uytterhoeven0eb2c802016-03-21 11:29:12 +0100400 .long sys_preadv2
401 .long sys_pwritev2