xref: /netbsd-src/sys/compat/linux/arch/amd64/linux_syscalls.c (revision f905d8d65a219cefc3d70bbe4b4489f134576709)
1 /* $NetBSD: linux_syscalls.c,v 1.84 2024/09/28 19:36:19 christos Exp $ */
2 
3 /*
4  * System call names.
5  *
6  * DO NOT EDIT-- this file is automatically generated.
7  * created from	NetBSD: syscalls.master,v 1.75 2024/09/28 19:35:55 christos Exp
8  */
9 
10 #include <sys/cdefs.h>
11 __KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.84 2024/09/28 19:36:19 christos Exp $");
12 
13 #if defined(_KERNEL_OPT)
14 #if defined(_KERNEL_OPT)
15 #include "opt_sysv.h"
16 #include "opt_compat_43.h"
17 #include "opt_compat_netbsd.h"
18 #endif
19 #include <sys/param.h>
20 #include <sys/poll.h>
21 #include <sys/systm.h>
22 #include <sys/signal.h>
23 #include <sys/mount.h>
24 #include <sys/syscallargs.h>
25 #include <sys/time.h>
26 #include <compat/sys/time.h>
27 #include <compat/linux/common/linux_types.h>
28 #include <compat/linux/common/linux_misc.h>
29 #include <compat/linux/common/linux_mmap.h>
30 #include <compat/linux/common/linux_ipc.h>
31 #include <compat/linux/common/linux_msg.h>
32 #include <compat/linux/common/linux_sched.h>
33 #include <compat/linux/common/linux_sem.h>
34 #include <compat/linux/common/linux_shm.h>
35 #include <compat/linux/common/linux_signal.h>
36 #include <compat/linux/common/linux_siginfo.h>
37 #include <compat/linux/common/linux_mqueue.h>
38 #include <compat/linux/common/linux_machdep.h>
39 #include <compat/linux/common/linux_sched.h>
40 #include <compat/linux/linux_syscallargs.h>
41 #else /* _KERNEL_OPT */
42 #include <sys/null.h>
43 #endif /* _KERNEL_OPT */
44 
45 const char *const linux_syscallnames[] = {
46 	/*   0 */	"read",
47 	/*   1 */	"write",
48 	/*   2 */	"open",
49 	/*   3 */	"close",
50 	/*   4 */	"stat64",
51 	/*   5 */	"fstat64",
52 	/*   6 */	"lstat64",
53 	/*   7 */	"poll",
54 	/*   8 */	"lseek",
55 	/*   9 */	"mmap",
56 	/*  10 */	"mprotect",
57 	/*  11 */	"munmap",
58 	/*  12 */	"brk",
59 	/*  13 */	"rt_sigaction",
60 	/*  14 */	"rt_sigprocmask",
61 	/*  15 */	"rt_sigreturn",
62 	/*  16 */	"ioctl",
63 	/*  17 */	"pread",
64 	/*  18 */	"pwrite",
65 	/*  19 */	"readv",
66 	/*  20 */	"writev",
67 	/*  21 */	"access",
68 	/*  22 */	"pipe",
69 	/*  23 */	"select",
70 	/*  24 */	"sched_yield",
71 	/*  25 */	"mremap",
72 	/*  26 */	"__msync13",
73 	/*  27 */	"mincore",
74 	/*  28 */	"madvise",
75 #ifdef SYSVSHM
76 	/*  29 */	"shmget",
77 	/*  30 */	"shmat",
78 	/*  31 */	"shmctl",
79 #else
80 	/*  29 */	"#29 (unimplemented shmget)",
81 	/*  30 */	"#30 (unimplemented shmat)",
82 	/*  31 */	"#31 (unimplemented shmctl)",
83 #endif
84 	/*  32 */	"dup",
85 	/*  33 */	"dup2",
86 	/*  34 */	"pause",
87 	/*  35 */	"nanosleep",
88 	/*  36 */	"getitimer",
89 	/*  37 */	"alarm",
90 	/*  38 */	"setitimer",
91 	/*  39 */	"getpid",
92 	/*  40 */	"#40 (unimplemented sendfile)",
93 	/*  41 */	"socket",
94 	/*  42 */	"connect",
95 	/*  43 */	"oaccept",
96 	/*  44 */	"sendto",
97 	/*  45 */	"recvfrom",
98 	/*  46 */	"sendmsg",
99 	/*  47 */	"recvmsg",
100 	/*  48 */	"shutdown",
101 	/*  49 */	"bind",
102 	/*  50 */	"listen",
103 	/*  51 */	"getsockname",
104 	/*  52 */	"getpeername",
105 	/*  53 */	"socketpair",
106 	/*  54 */	"setsockopt",
107 	/*  55 */	"getsockopt",
108 	/*  56 */	"clone",
109 	/*  57 */	"fork",
110 	/*  58 */	"__vfork14",
111 	/*  59 */	"execve",
112 	/*  60 */	"exit",
113 	/*  61 */	"wait4",
114 	/*  62 */	"kill",
115 	/*  63 */	"uname",
116 #ifdef SYSVSEM
117 	/*  64 */	"semget",
118 	/*  65 */	"semop",
119 	/*  66 */	"semctl",
120 #else
121 	/*  64 */	"#64 (unimplemented semget)",
122 	/*  65 */	"#65 (unimplemented semop)",
123 	/*  66 */	"#66 (unimplemented semctl)",
124 #endif
125 #ifdef SYSVSHM
126 	/*  67 */	"shmdt",
127 #else
128 	/*  67 */	"#67 (unimplemented shmdt)",
129 #endif
130 #ifdef SYSVMSG
131 	/*  68 */	"msgget",
132 	/*  69 */	"msgsnd",
133 	/*  70 */	"msgrcv",
134 	/*  71 */	"msgctl",
135 #else
136 	/*  68 */	"#68 (unimplemented msgget)",
137 	/*  69 */	"#69 (unimplemented msgsnd)",
138 	/*  70 */	"#70 (unimplemented msgrcv)",
139 	/*  71 */	"#71 (unimplemented msgctl)",
140 #endif
141 	/*  72 */	"fcntl",
142 	/*  73 */	"flock",
143 	/*  74 */	"fsync",
144 	/*  75 */	"fdatasync",
145 	/*  76 */	"truncate64",
146 	/*  77 */	"ftruncate64",
147 	/*  78 */	"getdents",
148 	/*  79 */	"__getcwd",
149 	/*  80 */	"chdir",
150 	/*  81 */	"fchdir",
151 	/*  82 */	"__posix_rename",
152 	/*  83 */	"mkdir",
153 	/*  84 */	"rmdir",
154 	/*  85 */	"creat",
155 	/*  86 */	"link",
156 	/*  87 */	"unlink",
157 	/*  88 */	"symlink",
158 	/*  89 */	"readlink",
159 	/*  90 */	"chmod",
160 	/*  91 */	"fchmod",
161 	/*  92 */	"__posix_chown",
162 	/*  93 */	"__posix_fchown",
163 	/*  94 */	"__posix_lchown",
164 	/*  95 */	"umask",
165 	/*  96 */	"gettimeofday",
166 	/*  97 */	"getrlimit",
167 	/*  98 */	"getrusage",
168 	/*  99 */	"sysinfo",
169 	/* 100 */	"times",
170 	/* 101 */	"ptrace",
171 	/* 102 */	"getuid",
172 	/* 103 */	"#103 (unimplemented syslog)",
173 	/* 104 */	"getgid",
174 	/* 105 */	"setuid",
175 	/* 106 */	"setgid",
176 	/* 107 */	"geteuid",
177 	/* 108 */	"getegid",
178 	/* 109 */	"setpgid",
179 	/* 110 */	"getppid",
180 	/* 111 */	"getpgrp",
181 	/* 112 */	"setsid",
182 	/* 113 */	"setreuid",
183 	/* 114 */	"setregid",
184 	/* 115 */	"getgroups",
185 	/* 116 */	"setgroups",
186 	/* 117 */	"setresuid",
187 	/* 118 */	"getresuid",
188 	/* 119 */	"setresgid",
189 	/* 120 */	"getresgid",
190 	/* 121 */	"getpgid",
191 	/* 122 */	"setfsuid",
192 	/* 123 */	"setfsgid",
193 	/* 124 */	"getsid",
194 	/* 125 */	"#125 (unimplemented capget)",
195 	/* 126 */	"#126 (unimplemented capset)",
196 	/* 127 */	"rt_sigpending",
197 	/* 128 */	"rt_sigtimedwait",
198 	/* 129 */	"rt_queueinfo",
199 	/* 130 */	"rt_sigsuspend",
200 	/* 131 */	"sigaltstack",
201 	/* 132 */	"utime",
202 	/* 133 */	"mknod",
203 #ifdef EXEC_AOUT
204 	/* 134 */	"uselib",
205 #else
206 	/* 134 */	"#134 (unimplemented sys_uselib)",
207 #endif
208 	/* 135 */	"personality",
209 	/* 136 */	"#136 (unimplemented ustat)",
210 	/* 137 */	"statfs",
211 	/* 138 */	"fstatfs",
212 	/* 139 */	"#139 (unimplemented sysfs)",
213 	/* 140 */	"getpriority",
214 	/* 141 */	"setpriority",
215 	/* 142 */	"sched_setparam",
216 	/* 143 */	"sched_getparam",
217 	/* 144 */	"sched_setscheduler",
218 	/* 145 */	"sched_getscheduler",
219 	/* 146 */	"sched_get_priority_max",
220 	/* 147 */	"sched_get_priority_min",
221 	/* 148 */	"#148 (unimplemented sys_sched_rr_get_interval)",
222 	/* 149 */	"mlock",
223 	/* 150 */	"munlock",
224 	/* 151 */	"mlockall",
225 	/* 152 */	"munlockall",
226 	/* 153 */	"#153 (unimplemented vhangup)",
227 	/* 154 */	"modify_ldt",
228 	/* 155 */	"#155 (unimplemented pivot_root)",
229 	/* 156 */	"__sysctl",
230 	/* 157 */	"#157 (unimplemented prctl)",
231 	/* 158 */	"arch_prctl",
232 	/* 159 */	"#159 (unimplemented adjtimex)",
233 	/* 160 */	"setrlimit",
234 	/* 161 */	"chroot",
235 	/* 162 */	"sync",
236 	/* 163 */	"acct",
237 	/* 164 */	"settimeofday",
238 	/* 165 */	"#165 (unimplemented mount)",
239 	/* 166 */	"#166 (unimplemented umount2)",
240 	/* 167 */	"swapon",
241 	/* 168 */	"swapoff",
242 	/* 169 */	"reboot",
243 	/* 170 */	"sethostname",
244 	/* 171 */	"setdomainname",
245 	/* 172 */	"iopl",
246 	/* 173 */	"ioperm",
247 	/* 174 */	"#174 (unimplemented create_module)",
248 	/* 175 */	"#175 (unimplemented init_module)",
249 	/* 176 */	"#176 (unimplemented delete_module)",
250 	/* 177 */	"#177 (unimplemented get_kernel_syms)",
251 	/* 178 */	"#178 (unimplemented query_module)",
252 	/* 179 */	"#179 (unimplemented quotactl)",
253 	/* 180 */	"#180 (unimplemented nfsservctl)",
254 	/* 181 */	"#181 (unimplemented getpmsg)",
255 	/* 182 */	"#182 (unimplemented putpmsg)",
256 	/* 183 */	"#183 (unimplemented afs_syscall)",
257 	/* 184 */	"#184 (unimplemented tuxcall)",
258 	/* 185 */	"#185 (unimplemented security)",
259 	/* 186 */	"gettid",
260 	/* 187 */	"readahead",
261 	/* 188 */	"setxattr",
262 	/* 189 */	"lsetxattr",
263 	/* 190 */	"fsetxattr",
264 	/* 191 */	"getxattr",
265 	/* 192 */	"lgetxattr",
266 	/* 193 */	"fgetxattr",
267 	/* 194 */	"listxattr",
268 	/* 195 */	"llistxattr",
269 	/* 196 */	"flistxattr",
270 	/* 197 */	"removexattr",
271 	/* 198 */	"lremovexattr",
272 	/* 199 */	"fremovexattr",
273 	/* 200 */	"tkill",
274 	/* 201 */	"time",
275 	/* 202 */	"futex",
276 	/* 203 */	"sched_setaffinity",
277 	/* 204 */	"sched_getaffinity",
278 	/* 205 */	"#205 (unimplemented set_thread_area)",
279 	/* 206 */	"#206 (unimplemented io_setup)",
280 	/* 207 */	"#207 (unimplemented io_destroy)",
281 	/* 208 */	"#208 (unimplemented io_getevents)",
282 	/* 209 */	"#209 (unimplemented io_submit)",
283 	/* 210 */	"#210 (unimplemented io_cancel)",
284 	/* 211 */	"#211 (unimplemented get_thread_area)",
285 	/* 212 */	"#212 (unimplemented lookup_dcookie)",
286 	/* 213 */	"epoll_create",
287 	/* 214 */	"#214 (unimplemented epoll_ctl_old)",
288 	/* 215 */	"#215 (unimplemented epoll_wait_old)",
289 	/* 216 */	"#216 (unimplemented remap_file_pages)",
290 	/* 217 */	"getdents64",
291 	/* 218 */	"set_tid_address",
292 	/* 219 */	"#219 (unimplemented restart_syscall)",
293 	/* 220 */	"#220 (unimplemented semtimedop)",
294 	/* 221 */	"fadvise64",
295 	/* 222 */	"timer_create",
296 	/* 223 */	"timer_settime",
297 	/* 224 */	"timer_gettime",
298 	/* 225 */	"timer_getoverrun",
299 	/* 226 */	"timer_delete",
300 	/* 227 */	"clock_settime",
301 	/* 228 */	"clock_gettime",
302 	/* 229 */	"clock_getres",
303 	/* 230 */	"clock_nanosleep",
304 	/* 231 */	"exit_group",
305 	/* 232 */	"epoll_wait",
306 	/* 233 */	"epoll_ctl",
307 	/* 234 */	"tgkill",
308 	/* 235 */	"utimes",
309 	/* 236 */	"#236 (unimplemented vserver)",
310 	/* 237 */	"#237 (unimplemented mbind)",
311 	/* 238 */	"#238 (unimplemented set_mempolicy)",
312 	/* 239 */	"#239 (unimplemented get_mempolicy)",
313 	/* 240 */	"mq_open",
314 	/* 241 */	"mq_unlink",
315 	/* 242 */	"mq_timedsend",
316 	/* 243 */	"mq_timedreceive",
317 	/* 244 */	"mq_notify",
318 	/* 245 */	"mq_getsetattr",
319 	/* 246 */	"#246 (unimplemented kexec_load)",
320 	/* 247 */	"waitid",
321 	/* 248 */	"#248 (unimplemented add_key)",
322 	/* 249 */	"#249 (unimplemented request_key)",
323 	/* 250 */	"#250 (unimplemented keyctl)",
324 	/* 251 */	"#251 (unimplemented ioprio_set)",
325 	/* 252 */	"#252 (unimplemented ioprio_get)",
326 	/* 253 */	"inotify_init",
327 	/* 254 */	"inotify_add_watch",
328 	/* 255 */	"inotify_rm_watch",
329 	/* 256 */	"#256 (unimplemented migrate_pages)",
330 	/* 257 */	"openat",
331 	/* 258 */	"mkdirat",
332 	/* 259 */	"mknodat",
333 	/* 260 */	"fchownat",
334 	/* 261 */	"#261 (unimplemented futimesat)",
335 	/* 262 */	"fstatat64",
336 	/* 263 */	"unlinkat",
337 	/* 264 */	"renameat",
338 	/* 265 */	"linkat",
339 	/* 266 */	"symlinkat",
340 	/* 267 */	"readlinkat",
341 	/* 268 */	"fchmodat",
342 	/* 269 */	"faccessat",
343 	/* 270 */	"pselect6",
344 	/* 271 */	"ppoll",
345 	/* 272 */	"#272 (unimplemented unshare)",
346 	/* 273 */	"__futex_set_robust_list",
347 	/* 274 */	"__futex_get_robust_list",
348 	/* 275 */	"#275 (unimplemented splice)",
349 	/* 276 */	"#276 (unimplemented tee)",
350 	/* 277 */	"sync_file_range",
351 	/* 278 */	"#278 (unimplemented vmsplice)",
352 	/* 279 */	"#279 (unimplemented move_pages)",
353 	/* 280 */	"utimensat",
354 	/* 281 */	"epoll_pwait",
355 	/* 282 */	"#282 (unimplemented signalfd)",
356 	/* 283 */	"timerfd_create",
357 	/* 284 */	"eventfd",
358 	/* 285 */	"fallocate",
359 	/* 286 */	"timerfd_settime",
360 	/* 287 */	"timerfd_gettime",
361 	/* 288 */	"accept4",
362 	/* 289 */	"#289 (unimplemented signalfd4)",
363 	/* 290 */	"eventfd2",
364 	/* 291 */	"epoll_create1",
365 	/* 292 */	"dup3",
366 	/* 293 */	"pipe2",
367 	/* 294 */	"inotify_init1",
368 	/* 295 */	"preadv",
369 	/* 296 */	"pwritev",
370 	/* 297 */	"#297 (unimplemented rt_tgsigqueueinfo)",
371 	/* 298 */	"#298 (unimplemented perf_counter_open)",
372 	/* 299 */	"recvmmsg",
373 	/* 300 */	"#300 (unimplemented fanotify_init)",
374 	/* 301 */	"#301 (unimplemented fanotify_mark)",
375 	/* 302 */	"prlimit64",
376 	/* 303 */	"#303 (unimplemented name_to_handle_at)",
377 	/* 304 */	"#304 (unimplemented open_by_handle_at)",
378 	/* 305 */	"#305 (unimplemented clock_adjtime)",
379 	/* 306 */	"syncfs",
380 	/* 307 */	"sendmmsg",
381 	/* 308 */	"#308 (unimplemented setns)",
382 	/* 309 */	"getcpu",
383 	/* 310 */	"#310 (unimplemented process_vm_readv)",
384 	/* 311 */	"#311 (unimplemented process_vm_writev)",
385 	/* 312 */	"#312 (unimplemented kcmp)",
386 	/* 313 */	"#313 (unimplemented finit_module)",
387 	/* 314 */	"#314 (unimplemented sched_setattr)",
388 	/* 315 */	"#315 (unimplemented sched_getattr)",
389 	/* 316 */	"renameat2",
390 	/* 317 */	"#317 (unimplemented seccomp)",
391 	/* 318 */	"getrandom",
392 	/* 319 */	"memfd_create",
393 	/* 320 */	"#320 (unimplemented kexec_file_load)",
394 	/* 321 */	"#321 (unimplemented bpf)",
395 	/* 322 */	"#322 (unimplemented execveat)",
396 	/* 323 */	"#323 (unimplemented userfaultfd)",
397 	/* 324 */	"#324 (unimplemented membarrier)",
398 	/* 325 */	"#325 (unimplemented mlock2)",
399 	/* 326 */	"copy_file_range",
400 	/* 327 */	"#327 (unimplemented preadv2)",
401 	/* 328 */	"#328 (unimplemented pwritev2)",
402 	/* 329 */	"#329 (unimplemented pkey_mprotect)",
403 	/* 330 */	"#330 (unimplemented pkey_alloc)",
404 	/* 331 */	"#331 (unimplemented pkey_free)",
405 	/* 332 */	"statx",
406 	/* 333 */	"#333 (unimplemented io_pgetevents)",
407 	/* 334 */	"#334 (unimplemented rseq)",
408 	/* 335 */	"#335 (unimplemented)",
409 	/* 336 */	"#336 (unimplemented)",
410 	/* 337 */	"#337 (unimplemented)",
411 	/* 338 */	"#338 (unimplemented)",
412 	/* 339 */	"#339 (unimplemented)",
413 	/* 340 */	"#340 (unimplemented)",
414 	/* 341 */	"#341 (unimplemented)",
415 	/* 342 */	"#342 (unimplemented)",
416 	/* 343 */	"#343 (unimplemented)",
417 	/* 344 */	"#344 (unimplemented)",
418 	/* 345 */	"#345 (unimplemented)",
419 	/* 346 */	"#346 (unimplemented)",
420 	/* 347 */	"#347 (unimplemented)",
421 	/* 348 */	"#348 (unimplemented)",
422 	/* 349 */	"#349 (unimplemented)",
423 	/* 350 */	"#350 (unimplemented)",
424 	/* 351 */	"#351 (unimplemented)",
425 	/* 352 */	"#352 (unimplemented)",
426 	/* 353 */	"#353 (unimplemented)",
427 	/* 354 */	"#354 (unimplemented)",
428 	/* 355 */	"#355 (unimplemented)",
429 	/* 356 */	"#356 (unimplemented)",
430 	/* 357 */	"#357 (unimplemented)",
431 	/* 358 */	"#358 (unimplemented)",
432 	/* 359 */	"#359 (unimplemented)",
433 	/* 360 */	"#360 (unimplemented)",
434 	/* 361 */	"#361 (unimplemented)",
435 	/* 362 */	"#362 (unimplemented)",
436 	/* 363 */	"#363 (unimplemented)",
437 	/* 364 */	"#364 (unimplemented)",
438 	/* 365 */	"#365 (unimplemented)",
439 	/* 366 */	"#366 (unimplemented)",
440 	/* 367 */	"#367 (unimplemented)",
441 	/* 368 */	"#368 (unimplemented)",
442 	/* 369 */	"#369 (unimplemented)",
443 	/* 370 */	"#370 (unimplemented)",
444 	/* 371 */	"#371 (unimplemented)",
445 	/* 372 */	"#372 (unimplemented)",
446 	/* 373 */	"#373 (unimplemented)",
447 	/* 374 */	"#374 (unimplemented)",
448 	/* 375 */	"#375 (unimplemented)",
449 	/* 376 */	"#376 (unimplemented)",
450 	/* 377 */	"#377 (unimplemented)",
451 	/* 378 */	"#378 (unimplemented)",
452 	/* 379 */	"#379 (unimplemented)",
453 	/* 380 */	"#380 (unimplemented)",
454 	/* 381 */	"#381 (unimplemented)",
455 	/* 382 */	"#382 (unimplemented)",
456 	/* 383 */	"#383 (unimplemented)",
457 	/* 384 */	"#384 (unimplemented)",
458 	/* 385 */	"#385 (unimplemented)",
459 	/* 386 */	"#386 (unimplemented)",
460 	/* 387 */	"#387 (unimplemented)",
461 	/* 388 */	"#388 (unimplemented)",
462 	/* 389 */	"#389 (unimplemented)",
463 	/* 390 */	"#390 (unimplemented)",
464 	/* 391 */	"#391 (unimplemented)",
465 	/* 392 */	"#392 (unimplemented)",
466 	/* 393 */	"#393 (unimplemented)",
467 	/* 394 */	"#394 (unimplemented)",
468 	/* 395 */	"#395 (unimplemented)",
469 	/* 396 */	"#396 (unimplemented)",
470 	/* 397 */	"#397 (unimplemented)",
471 	/* 398 */	"#398 (unimplemented)",
472 	/* 399 */	"#399 (unimplemented)",
473 	/* 400 */	"#400 (unimplemented)",
474 	/* 401 */	"#401 (unimplemented)",
475 	/* 402 */	"#402 (unimplemented)",
476 	/* 403 */	"#403 (unimplemented)",
477 	/* 404 */	"#404 (unimplemented)",
478 	/* 405 */	"#405 (unimplemented)",
479 	/* 406 */	"#406 (unimplemented)",
480 	/* 407 */	"#407 (unimplemented)",
481 	/* 408 */	"#408 (unimplemented)",
482 	/* 409 */	"#409 (unimplemented)",
483 	/* 410 */	"#410 (unimplemented)",
484 	/* 411 */	"#411 (unimplemented)",
485 	/* 412 */	"#412 (unimplemented)",
486 	/* 413 */	"#413 (unimplemented)",
487 	/* 414 */	"#414 (unimplemented)",
488 	/* 415 */	"#415 (unimplemented)",
489 	/* 416 */	"#416 (unimplemented)",
490 	/* 417 */	"#417 (unimplemented)",
491 	/* 418 */	"#418 (unimplemented)",
492 	/* 419 */	"#419 (unimplemented)",
493 	/* 420 */	"#420 (unimplemented)",
494 	/* 421 */	"#421 (unimplemented)",
495 	/* 422 */	"#422 (unimplemented)",
496 	/* 423 */	"#423 (unimplemented)",
497 	/* 424 */	"#424 (unimplemented pidfd_send_signal)",
498 	/* 425 */	"#425 (unimplemented io_uring_setup)",
499 	/* 426 */	"#426 (unimplemented io_uring_enter)",
500 	/* 427 */	"#427 (unimplemented io_uring_register)",
501 	/* 428 */	"#428 (unimplemented open_tree)",
502 	/* 429 */	"#429 (unimplemented move_mount)",
503 	/* 430 */	"#430 (unimplemented fsopen)",
504 	/* 431 */	"#431 (unimplemented fsconfig)",
505 	/* 432 */	"#432 (unimplemented fsmount)",
506 	/* 433 */	"#433 (unimplemented fspick)",
507 	/* 434 */	"#434 (unimplemented pidfd_open)",
508 	/* 435 */	"clone3",
509 	/* 436 */	"close_range",
510 	/* 437 */	"#437 (unimplemented openat2)",
511 	/* 438 */	"#438 (unimplemented pidfd_getfd)",
512 	/* 439 */	"faccessat2",
513 	/* 440 */	"#440 (unimplemented process_madvise)",
514 	/* 441 */	"epoll_pwait2",
515 	/* 442 */	"#442 (unimplemented mount_setattr)",
516 	/* 443 */	"#443 (unimplemented quotactl_fd)",
517 	/* 444 */	"#444 (unimplemented landlock_create_ruleset)",
518 	/* 445 */	"#445 (unimplemented landlock_add_rule)",
519 	/* 446 */	"#446 (unimplemented landlock_restrict_self)",
520 	/* 447 */	"#447 (unimplemented memfd_secret)",
521 	/* 448 */	"#448 (unimplemented process_mrelease)",
522 	/* 449 */	"#449 (unimplemented futex_waitv)",
523 	/* 450 */	"#450 (unimplemented set_mempolicy_home_node)",
524 	/* 451 */	"nosys",
525 	/* 452 */	"# filler",
526 	/* 453 */	"# filler",
527 	/* 454 */	"# filler",
528 	/* 455 */	"# filler",
529 	/* 456 */	"# filler",
530 	/* 457 */	"# filler",
531 	/* 458 */	"# filler",
532 	/* 459 */	"# filler",
533 	/* 460 */	"# filler",
534 	/* 461 */	"# filler",
535 	/* 462 */	"# filler",
536 	/* 463 */	"# filler",
537 	/* 464 */	"# filler",
538 	/* 465 */	"# filler",
539 	/* 466 */	"# filler",
540 	/* 467 */	"# filler",
541 	/* 468 */	"# filler",
542 	/* 469 */	"# filler",
543 	/* 470 */	"# filler",
544 	/* 471 */	"# filler",
545 	/* 472 */	"# filler",
546 	/* 473 */	"# filler",
547 	/* 474 */	"# filler",
548 	/* 475 */	"# filler",
549 	/* 476 */	"# filler",
550 	/* 477 */	"# filler",
551 	/* 478 */	"# filler",
552 	/* 479 */	"# filler",
553 	/* 480 */	"# filler",
554 	/* 481 */	"# filler",
555 	/* 482 */	"# filler",
556 	/* 483 */	"# filler",
557 	/* 484 */	"# filler",
558 	/* 485 */	"# filler",
559 	/* 486 */	"# filler",
560 	/* 487 */	"# filler",
561 	/* 488 */	"# filler",
562 	/* 489 */	"# filler",
563 	/* 490 */	"# filler",
564 	/* 491 */	"# filler",
565 	/* 492 */	"# filler",
566 	/* 493 */	"# filler",
567 	/* 494 */	"# filler",
568 	/* 495 */	"# filler",
569 	/* 496 */	"# filler",
570 	/* 497 */	"# filler",
571 	/* 498 */	"# filler",
572 	/* 499 */	"# filler",
573 	/* 500 */	"# filler",
574 	/* 501 */	"# filler",
575 	/* 502 */	"# filler",
576 	/* 503 */	"# filler",
577 	/* 504 */	"# filler",
578 	/* 505 */	"# filler",
579 	/* 506 */	"# filler",
580 	/* 507 */	"# filler",
581 	/* 508 */	"# filler",
582 	/* 509 */	"# filler",
583 	/* 510 */	"# filler",
584 	/* 511 */	"# filler",
585 };
586 
587 
588 /* libc style syscall names */
589 const char *const altlinux_syscallnames[] = {
590 	/*   0 */	NULL, /* read */
591 	/*   1 */	NULL, /* write */
592 	/*   2 */	NULL, /* open */
593 	/*   3 */	NULL, /* close */
594 	/*   4 */	NULL, /* stat64 */
595 	/*   5 */	NULL, /* fstat64 */
596 	/*   6 */	NULL, /* lstat64 */
597 	/*   7 */	NULL, /* poll */
598 	/*   8 */	NULL, /* lseek */
599 	/*   9 */	NULL, /* mmap */
600 	/*  10 */	NULL, /* mprotect */
601 	/*  11 */	NULL, /* munmap */
602 	/*  12 */	NULL, /* brk */
603 	/*  13 */	NULL, /* rt_sigaction */
604 	/*  14 */	NULL, /* rt_sigprocmask */
605 	/*  15 */	NULL, /* rt_sigreturn */
606 	/*  16 */	NULL, /* ioctl */
607 	/*  17 */	NULL, /* pread */
608 	/*  18 */	NULL, /* pwrite */
609 	/*  19 */	NULL, /* readv */
610 	/*  20 */	NULL, /* writev */
611 	/*  21 */	NULL, /* access */
612 	/*  22 */	NULL, /* pipe */
613 	/*  23 */	NULL, /* select */
614 	/*  24 */	NULL, /* sched_yield */
615 	/*  25 */	NULL, /* mremap */
616 	/*  26 */	"msync",
617 	/*  27 */	NULL, /* mincore */
618 	/*  28 */	NULL, /* madvise */
619 #ifdef SYSVSHM
620 	/*  29 */	NULL, /* shmget */
621 	/*  30 */	NULL, /* shmat */
622 	/*  31 */	NULL, /* shmctl */
623 #else
624 	/*  29 */	NULL, /* unimplemented shmget */
625 	/*  30 */	NULL, /* unimplemented shmat */
626 	/*  31 */	NULL, /* unimplemented shmctl */
627 #endif
628 	/*  32 */	NULL, /* dup */
629 	/*  33 */	NULL, /* dup2 */
630 	/*  34 */	NULL, /* pause */
631 	/*  35 */	NULL, /* nanosleep */
632 	/*  36 */	NULL, /* getitimer */
633 	/*  37 */	NULL, /* alarm */
634 	/*  38 */	NULL, /* setitimer */
635 	/*  39 */	NULL, /* getpid */
636 	/*  40 */	NULL, /* unimplemented sendfile */
637 	/*  41 */	NULL, /* socket */
638 	/*  42 */	NULL, /* connect */
639 	/*  43 */	"accept",
640 	/*  44 */	NULL, /* sendto */
641 	/*  45 */	NULL, /* recvfrom */
642 	/*  46 */	NULL, /* sendmsg */
643 	/*  47 */	NULL, /* recvmsg */
644 	/*  48 */	NULL, /* shutdown */
645 	/*  49 */	NULL, /* bind */
646 	/*  50 */	NULL, /* listen */
647 	/*  51 */	NULL, /* getsockname */
648 	/*  52 */	NULL, /* getpeername */
649 	/*  53 */	NULL, /* socketpair */
650 	/*  54 */	NULL, /* setsockopt */
651 	/*  55 */	NULL, /* getsockopt */
652 	/*  56 */	NULL, /* clone */
653 	/*  57 */	NULL, /* fork */
654 	/*  58 */	"vfork",
655 	/*  59 */	NULL, /* execve */
656 	/*  60 */	NULL, /* exit */
657 	/*  61 */	NULL, /* wait4 */
658 	/*  62 */	NULL, /* kill */
659 	/*  63 */	NULL, /* uname */
660 #ifdef SYSVSEM
661 	/*  64 */	NULL, /* semget */
662 	/*  65 */	NULL, /* semop */
663 	/*  66 */	NULL, /* semctl */
664 #else
665 	/*  64 */	NULL, /* unimplemented semget */
666 	/*  65 */	NULL, /* unimplemented semop */
667 	/*  66 */	NULL, /* unimplemented semctl */
668 #endif
669 #ifdef SYSVSHM
670 	/*  67 */	NULL, /* shmdt */
671 #else
672 	/*  67 */	NULL, /* unimplemented shmdt */
673 #endif
674 #ifdef SYSVMSG
675 	/*  68 */	NULL, /* msgget */
676 	/*  69 */	NULL, /* msgsnd */
677 	/*  70 */	NULL, /* msgrcv */
678 	/*  71 */	NULL, /* msgctl */
679 #else
680 	/*  68 */	NULL, /* unimplemented msgget */
681 	/*  69 */	NULL, /* unimplemented msgsnd */
682 	/*  70 */	NULL, /* unimplemented msgrcv */
683 	/*  71 */	NULL, /* unimplemented msgctl */
684 #endif
685 	/*  72 */	NULL, /* fcntl */
686 	/*  73 */	NULL, /* flock */
687 	/*  74 */	NULL, /* fsync */
688 	/*  75 */	NULL, /* fdatasync */
689 	/*  76 */	NULL, /* truncate64 */
690 	/*  77 */	NULL, /* ftruncate64 */
691 	/*  78 */	NULL, /* getdents */
692 	/*  79 */	NULL, /* __getcwd */
693 	/*  80 */	NULL, /* chdir */
694 	/*  81 */	NULL, /* fchdir */
695 	/*  82 */	NULL, /* __posix_rename */
696 	/*  83 */	NULL, /* mkdir */
697 	/*  84 */	NULL, /* rmdir */
698 	/*  85 */	NULL, /* creat */
699 	/*  86 */	NULL, /* link */
700 	/*  87 */	NULL, /* unlink */
701 	/*  88 */	NULL, /* symlink */
702 	/*  89 */	NULL, /* readlink */
703 	/*  90 */	NULL, /* chmod */
704 	/*  91 */	NULL, /* fchmod */
705 	/*  92 */	NULL, /* __posix_chown */
706 	/*  93 */	NULL, /* __posix_fchown */
707 	/*  94 */	NULL, /* __posix_lchown */
708 	/*  95 */	NULL, /* umask */
709 	/*  96 */	NULL, /* gettimeofday */
710 	/*  97 */	NULL, /* getrlimit */
711 	/*  98 */	NULL, /* getrusage */
712 	/*  99 */	NULL, /* sysinfo */
713 	/* 100 */	NULL, /* times */
714 	/* 101 */	NULL, /* ptrace */
715 	/* 102 */	NULL, /* getuid */
716 	/* 103 */	NULL, /* unimplemented syslog */
717 	/* 104 */	NULL, /* getgid */
718 	/* 105 */	NULL, /* setuid */
719 	/* 106 */	NULL, /* setgid */
720 	/* 107 */	NULL, /* geteuid */
721 	/* 108 */	NULL, /* getegid */
722 	/* 109 */	NULL, /* setpgid */
723 	/* 110 */	NULL, /* getppid */
724 	/* 111 */	NULL, /* getpgrp */
725 	/* 112 */	NULL, /* setsid */
726 	/* 113 */	NULL, /* setreuid */
727 	/* 114 */	NULL, /* setregid */
728 	/* 115 */	NULL, /* getgroups */
729 	/* 116 */	NULL, /* setgroups */
730 	/* 117 */	NULL, /* setresuid */
731 	/* 118 */	NULL, /* getresuid */
732 	/* 119 */	NULL, /* setresgid */
733 	/* 120 */	NULL, /* getresgid */
734 	/* 121 */	NULL, /* getpgid */
735 	/* 122 */	NULL, /* setfsuid */
736 	/* 123 */	NULL, /* setfsgid */
737 	/* 124 */	NULL, /* getsid */
738 	/* 125 */	NULL, /* unimplemented capget */
739 	/* 126 */	NULL, /* unimplemented capset */
740 	/* 127 */	NULL, /* rt_sigpending */
741 	/* 128 */	NULL, /* rt_sigtimedwait */
742 	/* 129 */	NULL, /* rt_queueinfo */
743 	/* 130 */	NULL, /* rt_sigsuspend */
744 	/* 131 */	NULL, /* sigaltstack */
745 	/* 132 */	NULL, /* utime */
746 	/* 133 */	NULL, /* mknod */
747 #ifdef EXEC_AOUT
748 	/* 134 */	NULL, /* uselib */
749 #else
750 	/* 134 */	NULL, /* unimplemented sys_uselib */
751 #endif
752 	/* 135 */	NULL, /* personality */
753 	/* 136 */	NULL, /* unimplemented ustat */
754 	/* 137 */	NULL, /* statfs */
755 	/* 138 */	NULL, /* fstatfs */
756 	/* 139 */	NULL, /* unimplemented sysfs */
757 	/* 140 */	NULL, /* getpriority */
758 	/* 141 */	NULL, /* setpriority */
759 	/* 142 */	NULL, /* sched_setparam */
760 	/* 143 */	NULL, /* sched_getparam */
761 	/* 144 */	NULL, /* sched_setscheduler */
762 	/* 145 */	NULL, /* sched_getscheduler */
763 	/* 146 */	NULL, /* sched_get_priority_max */
764 	/* 147 */	NULL, /* sched_get_priority_min */
765 	/* 148 */	NULL, /* unimplemented sys_sched_rr_get_interval */
766 	/* 149 */	NULL, /* mlock */
767 	/* 150 */	NULL, /* munlock */
768 	/* 151 */	NULL, /* mlockall */
769 	/* 152 */	NULL, /* munlockall */
770 	/* 153 */	NULL, /* unimplemented vhangup */
771 	/* 154 */	NULL, /* modify_ldt */
772 	/* 155 */	NULL, /* unimplemented pivot_root */
773 	/* 156 */	NULL, /* __sysctl */
774 	/* 157 */	NULL, /* unimplemented prctl */
775 	/* 158 */	NULL, /* arch_prctl */
776 	/* 159 */	NULL, /* unimplemented adjtimex */
777 	/* 160 */	NULL, /* setrlimit */
778 	/* 161 */	NULL, /* chroot */
779 	/* 162 */	NULL, /* sync */
780 	/* 163 */	NULL, /* acct */
781 	/* 164 */	NULL, /* settimeofday */
782 	/* 165 */	NULL, /* unimplemented mount */
783 	/* 166 */	NULL, /* unimplemented umount2 */
784 	/* 167 */	NULL, /* swapon */
785 	/* 168 */	NULL, /* swapoff */
786 	/* 169 */	NULL, /* reboot */
787 	/* 170 */	NULL, /* sethostname */
788 	/* 171 */	NULL, /* setdomainname */
789 	/* 172 */	NULL, /* iopl */
790 	/* 173 */	NULL, /* ioperm */
791 	/* 174 */	NULL, /* unimplemented create_module */
792 	/* 175 */	NULL, /* unimplemented init_module */
793 	/* 176 */	NULL, /* unimplemented delete_module */
794 	/* 177 */	NULL, /* unimplemented get_kernel_syms */
795 	/* 178 */	NULL, /* unimplemented query_module */
796 	/* 179 */	NULL, /* unimplemented quotactl */
797 	/* 180 */	NULL, /* unimplemented nfsservctl */
798 	/* 181 */	NULL, /* unimplemented getpmsg */
799 	/* 182 */	NULL, /* unimplemented putpmsg */
800 	/* 183 */	NULL, /* unimplemented afs_syscall */
801 	/* 184 */	NULL, /* unimplemented tuxcall */
802 	/* 185 */	NULL, /* unimplemented security */
803 	/* 186 */	NULL, /* gettid */
804 	/* 187 */	NULL, /* readahead */
805 	/* 188 */	NULL, /* setxattr */
806 	/* 189 */	NULL, /* lsetxattr */
807 	/* 190 */	NULL, /* fsetxattr */
808 	/* 191 */	NULL, /* getxattr */
809 	/* 192 */	NULL, /* lgetxattr */
810 	/* 193 */	NULL, /* fgetxattr */
811 	/* 194 */	NULL, /* listxattr */
812 	/* 195 */	NULL, /* llistxattr */
813 	/* 196 */	NULL, /* flistxattr */
814 	/* 197 */	NULL, /* removexattr */
815 	/* 198 */	NULL, /* lremovexattr */
816 	/* 199 */	NULL, /* fremovexattr */
817 	/* 200 */	NULL, /* tkill */
818 	/* 201 */	NULL, /* time */
819 	/* 202 */	NULL, /* futex */
820 	/* 203 */	NULL, /* sched_setaffinity */
821 	/* 204 */	NULL, /* sched_getaffinity */
822 	/* 205 */	NULL, /* unimplemented set_thread_area */
823 	/* 206 */	NULL, /* unimplemented io_setup */
824 	/* 207 */	NULL, /* unimplemented io_destroy */
825 	/* 208 */	NULL, /* unimplemented io_getevents */
826 	/* 209 */	NULL, /* unimplemented io_submit */
827 	/* 210 */	NULL, /* unimplemented io_cancel */
828 	/* 211 */	NULL, /* unimplemented get_thread_area */
829 	/* 212 */	NULL, /* unimplemented lookup_dcookie */
830 	/* 213 */	NULL, /* epoll_create */
831 	/* 214 */	NULL, /* unimplemented epoll_ctl_old */
832 	/* 215 */	NULL, /* unimplemented epoll_wait_old */
833 	/* 216 */	NULL, /* unimplemented remap_file_pages */
834 	/* 217 */	NULL, /* getdents64 */
835 	/* 218 */	NULL, /* set_tid_address */
836 	/* 219 */	NULL, /* unimplemented restart_syscall */
837 	/* 220 */	NULL, /* unimplemented semtimedop */
838 	/* 221 */	NULL, /* fadvise64 */
839 	/* 222 */	NULL, /* timer_create */
840 	/* 223 */	NULL, /* timer_settime */
841 	/* 224 */	NULL, /* timer_gettime */
842 	/* 225 */	NULL, /* timer_getoverrun */
843 	/* 226 */	NULL, /* timer_delete */
844 	/* 227 */	NULL, /* clock_settime */
845 	/* 228 */	NULL, /* clock_gettime */
846 	/* 229 */	NULL, /* clock_getres */
847 	/* 230 */	NULL, /* clock_nanosleep */
848 	/* 231 */	NULL, /* exit_group */
849 	/* 232 */	NULL, /* epoll_wait */
850 	/* 233 */	NULL, /* epoll_ctl */
851 	/* 234 */	NULL, /* tgkill */
852 	/* 235 */	NULL, /* utimes */
853 	/* 236 */	NULL, /* unimplemented vserver */
854 	/* 237 */	NULL, /* unimplemented mbind */
855 	/* 238 */	NULL, /* unimplemented set_mempolicy */
856 	/* 239 */	NULL, /* unimplemented get_mempolicy */
857 	/* 240 */	NULL, /* mq_open */
858 	/* 241 */	NULL, /* mq_unlink */
859 	/* 242 */	NULL, /* mq_timedsend */
860 	/* 243 */	NULL, /* mq_timedreceive */
861 	/* 244 */	NULL, /* mq_notify */
862 	/* 245 */	NULL, /* mq_getsetattr */
863 	/* 246 */	NULL, /* unimplemented kexec_load */
864 	/* 247 */	NULL, /* waitid */
865 	/* 248 */	NULL, /* unimplemented add_key */
866 	/* 249 */	NULL, /* unimplemented request_key */
867 	/* 250 */	NULL, /* unimplemented keyctl */
868 	/* 251 */	NULL, /* unimplemented ioprio_set */
869 	/* 252 */	NULL, /* unimplemented ioprio_get */
870 	/* 253 */	NULL, /* inotify_init */
871 	/* 254 */	NULL, /* inotify_add_watch */
872 	/* 255 */	NULL, /* inotify_rm_watch */
873 	/* 256 */	NULL, /* unimplemented migrate_pages */
874 	/* 257 */	NULL, /* openat */
875 	/* 258 */	NULL, /* mkdirat */
876 	/* 259 */	NULL, /* mknodat */
877 	/* 260 */	NULL, /* fchownat */
878 	/* 261 */	NULL, /* unimplemented futimesat */
879 	/* 262 */	NULL, /* fstatat64 */
880 	/* 263 */	NULL, /* unlinkat */
881 	/* 264 */	NULL, /* renameat */
882 	/* 265 */	NULL, /* linkat */
883 	/* 266 */	NULL, /* symlinkat */
884 	/* 267 */	NULL, /* readlinkat */
885 	/* 268 */	NULL, /* fchmodat */
886 	/* 269 */	NULL, /* faccessat */
887 	/* 270 */	NULL, /* pselect6 */
888 	/* 271 */	NULL, /* ppoll */
889 	/* 272 */	NULL, /* unimplemented unshare */
890 	/* 273 */	NULL, /* __futex_set_robust_list */
891 	/* 274 */	NULL, /* __futex_get_robust_list */
892 	/* 275 */	NULL, /* unimplemented splice */
893 	/* 276 */	NULL, /* unimplemented tee */
894 	/* 277 */	NULL, /* sync_file_range */
895 	/* 278 */	NULL, /* unimplemented vmsplice */
896 	/* 279 */	NULL, /* unimplemented move_pages */
897 	/* 280 */	NULL, /* utimensat */
898 	/* 281 */	NULL, /* epoll_pwait */
899 	/* 282 */	NULL, /* unimplemented signalfd */
900 	/* 283 */	NULL, /* timerfd_create */
901 	/* 284 */	NULL, /* eventfd */
902 	/* 285 */	NULL, /* fallocate */
903 	/* 286 */	NULL, /* timerfd_settime */
904 	/* 287 */	NULL, /* timerfd_gettime */
905 	/* 288 */	NULL, /* accept4 */
906 	/* 289 */	NULL, /* unimplemented signalfd4 */
907 	/* 290 */	NULL, /* eventfd2 */
908 	/* 291 */	NULL, /* epoll_create1 */
909 	/* 292 */	NULL, /* dup3 */
910 	/* 293 */	NULL, /* pipe2 */
911 	/* 294 */	NULL, /* inotify_init1 */
912 	/* 295 */	NULL, /* preadv */
913 	/* 296 */	NULL, /* pwritev */
914 	/* 297 */	NULL, /* unimplemented rt_tgsigqueueinfo */
915 	/* 298 */	NULL, /* unimplemented perf_counter_open */
916 	/* 299 */	NULL, /* recvmmsg */
917 	/* 300 */	NULL, /* unimplemented fanotify_init */
918 	/* 301 */	NULL, /* unimplemented fanotify_mark */
919 	/* 302 */	NULL, /* prlimit64 */
920 	/* 303 */	NULL, /* unimplemented name_to_handle_at */
921 	/* 304 */	NULL, /* unimplemented open_by_handle_at */
922 	/* 305 */	NULL, /* unimplemented clock_adjtime */
923 	/* 306 */	NULL, /* syncfs */
924 	/* 307 */	NULL, /* sendmmsg */
925 	/* 308 */	NULL, /* unimplemented setns */
926 	/* 309 */	NULL, /* getcpu */
927 	/* 310 */	NULL, /* unimplemented process_vm_readv */
928 	/* 311 */	NULL, /* unimplemented process_vm_writev */
929 	/* 312 */	NULL, /* unimplemented kcmp */
930 	/* 313 */	NULL, /* unimplemented finit_module */
931 	/* 314 */	NULL, /* unimplemented sched_setattr */
932 	/* 315 */	NULL, /* unimplemented sched_getattr */
933 	/* 316 */	NULL, /* renameat2 */
934 	/* 317 */	NULL, /* unimplemented seccomp */
935 	/* 318 */	NULL, /* getrandom */
936 	/* 319 */	NULL, /* memfd_create */
937 	/* 320 */	NULL, /* unimplemented kexec_file_load */
938 	/* 321 */	NULL, /* unimplemented bpf */
939 	/* 322 */	NULL, /* unimplemented execveat */
940 	/* 323 */	NULL, /* unimplemented userfaultfd */
941 	/* 324 */	NULL, /* unimplemented membarrier */
942 	/* 325 */	NULL, /* unimplemented mlock2 */
943 	/* 326 */	NULL, /* copy_file_range */
944 	/* 327 */	NULL, /* unimplemented preadv2 */
945 	/* 328 */	NULL, /* unimplemented pwritev2 */
946 	/* 329 */	NULL, /* unimplemented pkey_mprotect */
947 	/* 330 */	NULL, /* unimplemented pkey_alloc */
948 	/* 331 */	NULL, /* unimplemented pkey_free */
949 	/* 332 */	NULL, /* statx */
950 	/* 333 */	NULL, /* unimplemented io_pgetevents */
951 	/* 334 */	NULL, /* unimplemented rseq */
952 	/* 335 */	NULL, /* unimplemented */
953 	/* 336 */	NULL, /* unimplemented */
954 	/* 337 */	NULL, /* unimplemented */
955 	/* 338 */	NULL, /* unimplemented */
956 	/* 339 */	NULL, /* unimplemented */
957 	/* 340 */	NULL, /* unimplemented */
958 	/* 341 */	NULL, /* unimplemented */
959 	/* 342 */	NULL, /* unimplemented */
960 	/* 343 */	NULL, /* unimplemented */
961 	/* 344 */	NULL, /* unimplemented */
962 	/* 345 */	NULL, /* unimplemented */
963 	/* 346 */	NULL, /* unimplemented */
964 	/* 347 */	NULL, /* unimplemented */
965 	/* 348 */	NULL, /* unimplemented */
966 	/* 349 */	NULL, /* unimplemented */
967 	/* 350 */	NULL, /* unimplemented */
968 	/* 351 */	NULL, /* unimplemented */
969 	/* 352 */	NULL, /* unimplemented */
970 	/* 353 */	NULL, /* unimplemented */
971 	/* 354 */	NULL, /* unimplemented */
972 	/* 355 */	NULL, /* unimplemented */
973 	/* 356 */	NULL, /* unimplemented */
974 	/* 357 */	NULL, /* unimplemented */
975 	/* 358 */	NULL, /* unimplemented */
976 	/* 359 */	NULL, /* unimplemented */
977 	/* 360 */	NULL, /* unimplemented */
978 	/* 361 */	NULL, /* unimplemented */
979 	/* 362 */	NULL, /* unimplemented */
980 	/* 363 */	NULL, /* unimplemented */
981 	/* 364 */	NULL, /* unimplemented */
982 	/* 365 */	NULL, /* unimplemented */
983 	/* 366 */	NULL, /* unimplemented */
984 	/* 367 */	NULL, /* unimplemented */
985 	/* 368 */	NULL, /* unimplemented */
986 	/* 369 */	NULL, /* unimplemented */
987 	/* 370 */	NULL, /* unimplemented */
988 	/* 371 */	NULL, /* unimplemented */
989 	/* 372 */	NULL, /* unimplemented */
990 	/* 373 */	NULL, /* unimplemented */
991 	/* 374 */	NULL, /* unimplemented */
992 	/* 375 */	NULL, /* unimplemented */
993 	/* 376 */	NULL, /* unimplemented */
994 	/* 377 */	NULL, /* unimplemented */
995 	/* 378 */	NULL, /* unimplemented */
996 	/* 379 */	NULL, /* unimplemented */
997 	/* 380 */	NULL, /* unimplemented */
998 	/* 381 */	NULL, /* unimplemented */
999 	/* 382 */	NULL, /* unimplemented */
1000 	/* 383 */	NULL, /* unimplemented */
1001 	/* 384 */	NULL, /* unimplemented */
1002 	/* 385 */	NULL, /* unimplemented */
1003 	/* 386 */	NULL, /* unimplemented */
1004 	/* 387 */	NULL, /* unimplemented */
1005 	/* 388 */	NULL, /* unimplemented */
1006 	/* 389 */	NULL, /* unimplemented */
1007 	/* 390 */	NULL, /* unimplemented */
1008 	/* 391 */	NULL, /* unimplemented */
1009 	/* 392 */	NULL, /* unimplemented */
1010 	/* 393 */	NULL, /* unimplemented */
1011 	/* 394 */	NULL, /* unimplemented */
1012 	/* 395 */	NULL, /* unimplemented */
1013 	/* 396 */	NULL, /* unimplemented */
1014 	/* 397 */	NULL, /* unimplemented */
1015 	/* 398 */	NULL, /* unimplemented */
1016 	/* 399 */	NULL, /* unimplemented */
1017 	/* 400 */	NULL, /* unimplemented */
1018 	/* 401 */	NULL, /* unimplemented */
1019 	/* 402 */	NULL, /* unimplemented */
1020 	/* 403 */	NULL, /* unimplemented */
1021 	/* 404 */	NULL, /* unimplemented */
1022 	/* 405 */	NULL, /* unimplemented */
1023 	/* 406 */	NULL, /* unimplemented */
1024 	/* 407 */	NULL, /* unimplemented */
1025 	/* 408 */	NULL, /* unimplemented */
1026 	/* 409 */	NULL, /* unimplemented */
1027 	/* 410 */	NULL, /* unimplemented */
1028 	/* 411 */	NULL, /* unimplemented */
1029 	/* 412 */	NULL, /* unimplemented */
1030 	/* 413 */	NULL, /* unimplemented */
1031 	/* 414 */	NULL, /* unimplemented */
1032 	/* 415 */	NULL, /* unimplemented */
1033 	/* 416 */	NULL, /* unimplemented */
1034 	/* 417 */	NULL, /* unimplemented */
1035 	/* 418 */	NULL, /* unimplemented */
1036 	/* 419 */	NULL, /* unimplemented */
1037 	/* 420 */	NULL, /* unimplemented */
1038 	/* 421 */	NULL, /* unimplemented */
1039 	/* 422 */	NULL, /* unimplemented */
1040 	/* 423 */	NULL, /* unimplemented */
1041 	/* 424 */	NULL, /* unimplemented pidfd_send_signal */
1042 	/* 425 */	NULL, /* unimplemented io_uring_setup */
1043 	/* 426 */	NULL, /* unimplemented io_uring_enter */
1044 	/* 427 */	NULL, /* unimplemented io_uring_register */
1045 	/* 428 */	NULL, /* unimplemented open_tree */
1046 	/* 429 */	NULL, /* unimplemented move_mount */
1047 	/* 430 */	NULL, /* unimplemented fsopen */
1048 	/* 431 */	NULL, /* unimplemented fsconfig */
1049 	/* 432 */	NULL, /* unimplemented fsmount */
1050 	/* 433 */	NULL, /* unimplemented fspick */
1051 	/* 434 */	NULL, /* unimplemented pidfd_open */
1052 	/* 435 */	NULL, /* clone3 */
1053 	/* 436 */	NULL, /* close_range */
1054 	/* 437 */	NULL, /* unimplemented openat2 */
1055 	/* 438 */	NULL, /* unimplemented pidfd_getfd */
1056 	/* 439 */	NULL, /* faccessat2 */
1057 	/* 440 */	NULL, /* unimplemented process_madvise */
1058 	/* 441 */	NULL, /* epoll_pwait2 */
1059 	/* 442 */	NULL, /* unimplemented mount_setattr */
1060 	/* 443 */	NULL, /* unimplemented quotactl_fd */
1061 	/* 444 */	NULL, /* unimplemented landlock_create_ruleset */
1062 	/* 445 */	NULL, /* unimplemented landlock_add_rule */
1063 	/* 446 */	NULL, /* unimplemented landlock_restrict_self */
1064 	/* 447 */	NULL, /* unimplemented memfd_secret */
1065 	/* 448 */	NULL, /* unimplemented process_mrelease */
1066 	/* 449 */	NULL, /* unimplemented futex_waitv */
1067 	/* 450 */	NULL, /* unimplemented set_mempolicy_home_node */
1068 	/* 451 */	NULL, /* nosys */
1069 	/* 452 */	NULL, /* filler */
1070 	/* 453 */	NULL, /* filler */
1071 	/* 454 */	NULL, /* filler */
1072 	/* 455 */	NULL, /* filler */
1073 	/* 456 */	NULL, /* filler */
1074 	/* 457 */	NULL, /* filler */
1075 	/* 458 */	NULL, /* filler */
1076 	/* 459 */	NULL, /* filler */
1077 	/* 460 */	NULL, /* filler */
1078 	/* 461 */	NULL, /* filler */
1079 	/* 462 */	NULL, /* filler */
1080 	/* 463 */	NULL, /* filler */
1081 	/* 464 */	NULL, /* filler */
1082 	/* 465 */	NULL, /* filler */
1083 	/* 466 */	NULL, /* filler */
1084 	/* 467 */	NULL, /* filler */
1085 	/* 468 */	NULL, /* filler */
1086 	/* 469 */	NULL, /* filler */
1087 	/* 470 */	NULL, /* filler */
1088 	/* 471 */	NULL, /* filler */
1089 	/* 472 */	NULL, /* filler */
1090 	/* 473 */	NULL, /* filler */
1091 	/* 474 */	NULL, /* filler */
1092 	/* 475 */	NULL, /* filler */
1093 	/* 476 */	NULL, /* filler */
1094 	/* 477 */	NULL, /* filler */
1095 	/* 478 */	NULL, /* filler */
1096 	/* 479 */	NULL, /* filler */
1097 	/* 480 */	NULL, /* filler */
1098 	/* 481 */	NULL, /* filler */
1099 	/* 482 */	NULL, /* filler */
1100 	/* 483 */	NULL, /* filler */
1101 	/* 484 */	NULL, /* filler */
1102 	/* 485 */	NULL, /* filler */
1103 	/* 486 */	NULL, /* filler */
1104 	/* 487 */	NULL, /* filler */
1105 	/* 488 */	NULL, /* filler */
1106 	/* 489 */	NULL, /* filler */
1107 	/* 490 */	NULL, /* filler */
1108 	/* 491 */	NULL, /* filler */
1109 	/* 492 */	NULL, /* filler */
1110 	/* 493 */	NULL, /* filler */
1111 	/* 494 */	NULL, /* filler */
1112 	/* 495 */	NULL, /* filler */
1113 	/* 496 */	NULL, /* filler */
1114 	/* 497 */	NULL, /* filler */
1115 	/* 498 */	NULL, /* filler */
1116 	/* 499 */	NULL, /* filler */
1117 	/* 500 */	NULL, /* filler */
1118 	/* 501 */	NULL, /* filler */
1119 	/* 502 */	NULL, /* filler */
1120 	/* 503 */	NULL, /* filler */
1121 	/* 504 */	NULL, /* filler */
1122 	/* 505 */	NULL, /* filler */
1123 	/* 506 */	NULL, /* filler */
1124 	/* 507 */	NULL, /* filler */
1125 	/* 508 */	NULL, /* filler */
1126 	/* 509 */	NULL, /* filler */
1127 	/* 510 */	NULL, /* filler */
1128 	/* 511 */	NULL, /* filler */
1129 };
1130