Skip to main content

syscall_numbers/
loongarch64.rs

1#![allow(non_upper_case_globals)]
2
3use core::ffi::c_long;
4
5/// Returns `true` if `number` is a valid system call number.
6#[must_use]
7pub fn is_valid_sys_call_number(number: c_long) -> bool {
8    crate::is_valid_sys_call_number(SYS_CALL_NAME, SYS_CALL_BASE_INDEX, number)
9}
10
11/// Returns the name of a system call, given its number.
12#[must_use]
13pub fn sys_call_name(number: c_long) -> Option<&'static str> {
14    crate::sys_call_name(SYS_CALL_NAME, SYS_CALL_BASE_INDEX, number)
15}
16
17pub const SYS_io_setup: c_long = 0x0;
18pub const SYS_io_destroy: c_long = 0x1;
19pub const SYS_io_submit: c_long = 0x2;
20pub const SYS_io_cancel: c_long = 0x3;
21pub const SYS_io_getevents: c_long = 0x4;
22pub const SYS_setxattr: c_long = 0x5;
23pub const SYS_lsetxattr: c_long = 0x6;
24pub const SYS_fsetxattr: c_long = 0x7;
25pub const SYS_getxattr: c_long = 0x8;
26pub const SYS_lgetxattr: c_long = 0x9;
27pub const SYS_fgetxattr: c_long = 0xa;
28pub const SYS_listxattr: c_long = 0xb;
29pub const SYS_llistxattr: c_long = 0xc;
30pub const SYS_flistxattr: c_long = 0xd;
31pub const SYS_removexattr: c_long = 0xe;
32pub const SYS_lremovexattr: c_long = 0xf;
33pub const SYS_fremovexattr: c_long = 0x10;
34pub const SYS_getcwd: c_long = 0x11;
35pub const SYS_lookup_dcookie: c_long = 0x12;
36pub const SYS_eventfd2: c_long = 0x13;
37pub const SYS_epoll_create1: c_long = 0x14;
38pub const SYS_epoll_ctl: c_long = 0x15;
39pub const SYS_epoll_pwait: c_long = 0x16;
40pub const SYS_dup: c_long = 0x17;
41pub const SYS_dup3: c_long = 0x18;
42pub const SYS_inotify_init1: c_long = 0x1a;
43pub const SYS_inotify_add_watch: c_long = 0x1b;
44pub const SYS_inotify_rm_watch: c_long = 0x1c;
45pub const SYS_ioctl: c_long = 0x1d;
46pub const SYS_ioprio_set: c_long = 0x1e;
47pub const SYS_ioprio_get: c_long = 0x1f;
48pub const SYS_flock: c_long = 0x20;
49pub const SYS_mknodat: c_long = 0x21;
50pub const SYS_mkdirat: c_long = 0x22;
51pub const SYS_unlinkat: c_long = 0x23;
52pub const SYS_symlinkat: c_long = 0x24;
53pub const SYS_linkat: c_long = 0x25;
54pub const SYS_umount2: c_long = 0x27;
55pub const SYS_mount: c_long = 0x28;
56pub const SYS_pivot_root: c_long = 0x29;
57pub const SYS_nfsservctl: c_long = 0x2a;
58pub const SYS_fallocate: c_long = 0x2f;
59pub const SYS_faccessat: c_long = 0x30;
60pub const SYS_chdir: c_long = 0x31;
61pub const SYS_fchdir: c_long = 0x32;
62pub const SYS_chroot: c_long = 0x33;
63pub const SYS_fchmod: c_long = 0x34;
64pub const SYS_fchmodat: c_long = 0x35;
65pub const SYS_fchownat: c_long = 0x36;
66pub const SYS_fchown: c_long = 0x37;
67pub const SYS_openat: c_long = 0x38;
68pub const SYS_close: c_long = 0x39;
69pub const SYS_vhangup: c_long = 0x3a;
70pub const SYS_pipe2: c_long = 0x3b;
71pub const SYS_quotactl: c_long = 0x3c;
72pub const SYS_getdents64: c_long = 0x3d;
73pub const SYS_read: c_long = 0x3f;
74pub const SYS_write: c_long = 0x40;
75pub const SYS_readv: c_long = 0x41;
76pub const SYS_writev: c_long = 0x42;
77pub const SYS_pread64: c_long = 0x43;
78pub const SYS_pwrite64: c_long = 0x44;
79pub const SYS_preadv: c_long = 0x45;
80pub const SYS_pwritev: c_long = 0x46;
81pub const SYS_pselect6: c_long = 0x48;
82pub const SYS_ppoll: c_long = 0x49;
83pub const SYS_signalfd4: c_long = 0x4a;
84pub const SYS_vmsplice: c_long = 0x4b;
85pub const SYS_splice: c_long = 0x4c;
86pub const SYS_tee: c_long = 0x4d;
87pub const SYS_readlinkat: c_long = 0x4e;
88pub const SYS_sync: c_long = 0x51;
89pub const SYS_fsync: c_long = 0x52;
90pub const SYS_fdatasync: c_long = 0x53;
91pub const SYS_sync_file_range: c_long = 0x54;
92pub const SYS_timerfd_create: c_long = 0x55;
93pub const SYS_timerfd_settime: c_long = 0x56;
94pub const SYS_timerfd_gettime: c_long = 0x57;
95pub const SYS_utimensat: c_long = 0x58;
96pub const SYS_acct: c_long = 0x59;
97pub const SYS_capget: c_long = 0x5a;
98pub const SYS_capset: c_long = 0x5b;
99pub const SYS_personality: c_long = 0x5c;
100pub const SYS_exit: c_long = 0x5d;
101pub const SYS_exit_group: c_long = 0x5e;
102pub const SYS_waitid: c_long = 0x5f;
103pub const SYS_set_tid_address: c_long = 0x60;
104pub const SYS_unshare: c_long = 0x61;
105pub const SYS_futex: c_long = 0x62;
106pub const SYS_set_robust_list: c_long = 0x63;
107pub const SYS_get_robust_list: c_long = 0x64;
108pub const SYS_nanosleep: c_long = 0x65;
109pub const SYS_getitimer: c_long = 0x66;
110pub const SYS_setitimer: c_long = 0x67;
111pub const SYS_kexec_load: c_long = 0x68;
112pub const SYS_init_module: c_long = 0x69;
113pub const SYS_delete_module: c_long = 0x6a;
114pub const SYS_timer_create: c_long = 0x6b;
115pub const SYS_timer_gettime: c_long = 0x6c;
116pub const SYS_timer_getoverrun: c_long = 0x6d;
117pub const SYS_timer_settime: c_long = 0x6e;
118pub const SYS_timer_delete: c_long = 0x6f;
119pub const SYS_clock_settime: c_long = 0x70;
120pub const SYS_clock_gettime: c_long = 0x71;
121pub const SYS_clock_getres: c_long = 0x72;
122pub const SYS_clock_nanosleep: c_long = 0x73;
123pub const SYS_syslog: c_long = 0x74;
124pub const SYS_ptrace: c_long = 0x75;
125pub const SYS_sched_setparam: c_long = 0x76;
126pub const SYS_sched_setscheduler: c_long = 0x77;
127pub const SYS_sched_getscheduler: c_long = 0x78;
128pub const SYS_sched_getparam: c_long = 0x79;
129pub const SYS_sched_setaffinity: c_long = 0x7a;
130pub const SYS_sched_getaffinity: c_long = 0x7b;
131pub const SYS_sched_yield: c_long = 0x7c;
132pub const SYS_sched_get_priority_max: c_long = 0x7d;
133pub const SYS_sched_get_priority_min: c_long = 0x7e;
134pub const SYS_sched_rr_get_interval: c_long = 0x7f;
135pub const SYS_restart_syscall: c_long = 0x80;
136pub const SYS_kill: c_long = 0x81;
137pub const SYS_tkill: c_long = 0x82;
138pub const SYS_tgkill: c_long = 0x83;
139pub const SYS_sigaltstack: c_long = 0x84;
140pub const SYS_rt_sigsuspend: c_long = 0x85;
141pub const SYS_rt_sigaction: c_long = 0x86;
142pub const SYS_rt_sigprocmask: c_long = 0x87;
143pub const SYS_rt_sigpending: c_long = 0x88;
144pub const SYS_rt_sigtimedwait: c_long = 0x89;
145pub const SYS_rt_sigqueueinfo: c_long = 0x8a;
146pub const SYS_rt_sigreturn: c_long = 0x8b;
147pub const SYS_setpriority: c_long = 0x8c;
148pub const SYS_getpriority: c_long = 0x8d;
149pub const SYS_reboot: c_long = 0x8e;
150pub const SYS_setregid: c_long = 0x8f;
151pub const SYS_setgid: c_long = 0x90;
152pub const SYS_setreuid: c_long = 0x91;
153pub const SYS_setuid: c_long = 0x92;
154pub const SYS_setresuid: c_long = 0x93;
155pub const SYS_getresuid: c_long = 0x94;
156pub const SYS_setresgid: c_long = 0x95;
157pub const SYS_getresgid: c_long = 0x96;
158pub const SYS_setfsuid: c_long = 0x97;
159pub const SYS_setfsgid: c_long = 0x98;
160pub const SYS_times: c_long = 0x99;
161pub const SYS_setpgid: c_long = 0x9a;
162pub const SYS_getpgid: c_long = 0x9b;
163pub const SYS_getsid: c_long = 0x9c;
164pub const SYS_setsid: c_long = 0x9d;
165pub const SYS_getgroups: c_long = 0x9e;
166pub const SYS_setgroups: c_long = 0x9f;
167pub const SYS_uname: c_long = 0xa0;
168pub const SYS_sethostname: c_long = 0xa1;
169pub const SYS_setdomainname: c_long = 0xa2;
170pub const SYS_getrusage: c_long = 0xa5;
171pub const SYS_umask: c_long = 0xa6;
172pub const SYS_prctl: c_long = 0xa7;
173pub const SYS_getcpu: c_long = 0xa8;
174pub const SYS_gettimeofday: c_long = 0xa9;
175pub const SYS_settimeofday: c_long = 0xaa;
176pub const SYS_adjtimex: c_long = 0xab;
177pub const SYS_getpid: c_long = 0xac;
178pub const SYS_getppid: c_long = 0xad;
179pub const SYS_getuid: c_long = 0xae;
180pub const SYS_geteuid: c_long = 0xaf;
181pub const SYS_getgid: c_long = 0xb0;
182pub const SYS_getegid: c_long = 0xb1;
183pub const SYS_gettid: c_long = 0xb2;
184pub const SYS_sysinfo: c_long = 0xb3;
185pub const SYS_mq_open: c_long = 0xb4;
186pub const SYS_mq_unlink: c_long = 0xb5;
187pub const SYS_mq_timedsend: c_long = 0xb6;
188pub const SYS_mq_timedreceive: c_long = 0xb7;
189pub const SYS_mq_notify: c_long = 0xb8;
190pub const SYS_mq_getsetattr: c_long = 0xb9;
191pub const SYS_msgget: c_long = 0xba;
192pub const SYS_msgctl: c_long = 0xbb;
193pub const SYS_msgrcv: c_long = 0xbc;
194pub const SYS_msgsnd: c_long = 0xbd;
195pub const SYS_semget: c_long = 0xbe;
196pub const SYS_semctl: c_long = 0xbf;
197pub const SYS_semtimedop: c_long = 0xc0;
198pub const SYS_semop: c_long = 0xc1;
199pub const SYS_shmget: c_long = 0xc2;
200pub const SYS_shmctl: c_long = 0xc3;
201pub const SYS_shmat: c_long = 0xc4;
202pub const SYS_shmdt: c_long = 0xc5;
203pub const SYS_socket: c_long = 0xc6;
204pub const SYS_socketpair: c_long = 0xc7;
205pub const SYS_bind: c_long = 0xc8;
206pub const SYS_listen: c_long = 0xc9;
207pub const SYS_accept: c_long = 0xca;
208pub const SYS_connect: c_long = 0xcb;
209pub const SYS_getsockname: c_long = 0xcc;
210pub const SYS_getpeername: c_long = 0xcd;
211pub const SYS_sendto: c_long = 0xce;
212pub const SYS_recvfrom: c_long = 0xcf;
213pub const SYS_setsockopt: c_long = 0xd0;
214pub const SYS_getsockopt: c_long = 0xd1;
215pub const SYS_shutdown: c_long = 0xd2;
216pub const SYS_sendmsg: c_long = 0xd3;
217pub const SYS_recvmsg: c_long = 0xd4;
218pub const SYS_readahead: c_long = 0xd5;
219pub const SYS_brk: c_long = 0xd6;
220pub const SYS_munmap: c_long = 0xd7;
221pub const SYS_mremap: c_long = 0xd8;
222pub const SYS_add_key: c_long = 0xd9;
223pub const SYS_request_key: c_long = 0xda;
224pub const SYS_keyctl: c_long = 0xdb;
225pub const SYS_clone: c_long = 0xdc;
226pub const SYS_execve: c_long = 0xdd;
227pub const SYS_swapon: c_long = 0xe0;
228pub const SYS_swapoff: c_long = 0xe1;
229pub const SYS_mprotect: c_long = 0xe2;
230pub const SYS_msync: c_long = 0xe3;
231pub const SYS_mlock: c_long = 0xe4;
232pub const SYS_munlock: c_long = 0xe5;
233pub const SYS_mlockall: c_long = 0xe6;
234pub const SYS_munlockall: c_long = 0xe7;
235pub const SYS_mincore: c_long = 0xe8;
236pub const SYS_madvise: c_long = 0xe9;
237pub const SYS_remap_file_pages: c_long = 0xea;
238pub const SYS_mbind: c_long = 0xeb;
239pub const SYS_get_mempolicy: c_long = 0xec;
240pub const SYS_set_mempolicy: c_long = 0xed;
241pub const SYS_migrate_pages: c_long = 0xee;
242pub const SYS_move_pages: c_long = 0xef;
243pub const SYS_rt_tgsigqueueinfo: c_long = 0xf0;
244pub const SYS_perf_event_open: c_long = 0xf1;
245pub const SYS_accept4: c_long = 0xf2;
246pub const SYS_recvmmsg: c_long = 0xf3;
247pub const SYS_arch_specific_syscall: c_long = 0xf4;
248pub const SYS_wait4: c_long = 0x104;
249pub const SYS_prlimit64: c_long = 0x105;
250pub const SYS_fanotify_init: c_long = 0x106;
251pub const SYS_fanotify_mark: c_long = 0x107;
252pub const SYS_name_to_handle_at: c_long = 0x108;
253pub const SYS_open_by_handle_at: c_long = 0x109;
254pub const SYS_clock_adjtime: c_long = 0x10a;
255pub const SYS_syncfs: c_long = 0x10b;
256pub const SYS_setns: c_long = 0x10c;
257pub const SYS_sendmmsg: c_long = 0x10d;
258pub const SYS_process_vm_readv: c_long = 0x10e;
259pub const SYS_process_vm_writev: c_long = 0x10f;
260pub const SYS_kcmp: c_long = 0x110;
261pub const SYS_finit_module: c_long = 0x111;
262pub const SYS_sched_setattr: c_long = 0x112;
263pub const SYS_sched_getattr: c_long = 0x113;
264pub const SYS_renameat2: c_long = 0x114;
265pub const SYS_seccomp: c_long = 0x115;
266pub const SYS_getrandom: c_long = 0x116;
267pub const SYS_memfd_create: c_long = 0x117;
268pub const SYS_bpf: c_long = 0x118;
269pub const SYS_execveat: c_long = 0x119;
270pub const SYS_userfaultfd: c_long = 0x11a;
271pub const SYS_membarrier: c_long = 0x11b;
272pub const SYS_mlock2: c_long = 0x11c;
273pub const SYS_copy_file_range: c_long = 0x11d;
274pub const SYS_preadv2: c_long = 0x11e;
275pub const SYS_pwritev2: c_long = 0x11f;
276pub const SYS_pkey_mprotect: c_long = 0x120;
277pub const SYS_pkey_alloc: c_long = 0x121;
278pub const SYS_pkey_free: c_long = 0x122;
279pub const SYS_statx: c_long = 0x123;
280pub const SYS_io_pgetevents: c_long = 0x124;
281pub const SYS_rseq: c_long = 0x125;
282pub const SYS_kexec_file_load: c_long = 0x126;
283pub const SYS_pidfd_send_signal: c_long = 0x1a8;
284pub const SYS_io_uring_setup: c_long = 0x1a9;
285pub const SYS_io_uring_enter: c_long = 0x1aa;
286pub const SYS_io_uring_register: c_long = 0x1ab;
287pub const SYS_open_tree: c_long = 0x1ac;
288pub const SYS_move_mount: c_long = 0x1ad;
289pub const SYS_fsopen: c_long = 0x1ae;
290pub const SYS_fsconfig: c_long = 0x1af;
291pub const SYS_fsmount: c_long = 0x1b0;
292pub const SYS_fspick: c_long = 0x1b1;
293pub const SYS_pidfd_open: c_long = 0x1b2;
294pub const SYS_clone3: c_long = 0x1b3;
295pub const SYS_close_range: c_long = 0x1b4;
296pub const SYS_openat2: c_long = 0x1b5;
297pub const SYS_pidfd_getfd: c_long = 0x1b6;
298pub const SYS_faccessat2: c_long = 0x1b7;
299pub const SYS_process_madvise: c_long = 0x1b8;
300pub const SYS_epoll_pwait2: c_long = 0x1b9;
301pub const SYS_mount_setattr: c_long = 0x1ba;
302pub const SYS_quotactl_fd: c_long = 0x1bb;
303pub const SYS_landlock_create_ruleset: c_long = 0x1bc;
304pub const SYS_landlock_add_rule: c_long = 0x1bd;
305pub const SYS_landlock_restrict_self: c_long = 0x1be;
306pub const SYS_process_mrelease: c_long = 0x1c0;
307pub const SYS_futex_waitv: c_long = 0x1c1;
308pub const SYS_set_mempolicy_home_node: c_long = 0x1c2;
309pub const SYS_cachestat: c_long = 0x1c3;
310pub const SYS_fchmodat2: c_long = 0x1c4;
311pub const SYS_map_shadow_stack: c_long = 0x1c5;
312pub const SYS_futex_wake: c_long = 0x1c6;
313pub const SYS_futex_wait: c_long = 0x1c7;
314pub const SYS_futex_requeue: c_long = 0x1c8;
315pub const SYS_statmount: c_long = 0x1c9;
316pub const SYS_listmount: c_long = 0x1ca;
317pub const SYS_lsm_get_self_attr: c_long = 0x1cb;
318pub const SYS_lsm_set_self_attr: c_long = 0x1cc;
319pub const SYS_lsm_list_modules: c_long = 0x1cd;
320pub const SYS_mseal: c_long = 0x1ce;
321pub const SYS_setxattrat: c_long = 0x1cf;
322pub const SYS_getxattrat: c_long = 0x1d0;
323pub const SYS_listxattrat: c_long = 0x1d1;
324pub const SYS_removexattrat: c_long = 0x1d2;
325pub const SYS_open_tree_attr: c_long = 0x1d3;
326pub const SYS_file_getattr: c_long = 0x1d4;
327pub const SYS_file_setattr: c_long = 0x1d5;
328pub const SYS_listns: c_long = 0x1d6;
329
330/// Minimum valid system call number.
331pub(crate) const SYS_CALL_BASE_INDEX: c_long = 0x0;
332
333/// String table of system calls names.
334pub(crate) static SYS_CALL_NAME: &[&str] = &[
335    "io_setup",
336    "io_destroy",
337    "io_submit",
338    "io_cancel",
339    "io_getevents",
340    "setxattr",
341    "lsetxattr",
342    "fsetxattr",
343    "getxattr",
344    "lgetxattr",
345    "fgetxattr",
346    "listxattr",
347    "llistxattr",
348    "flistxattr",
349    "removexattr",
350    "lremovexattr",
351    "fremovexattr",
352    "getcwd",
353    "lookup_dcookie",
354    "eventfd2",
355    "epoll_create1",
356    "epoll_ctl",
357    "epoll_pwait",
358    "dup",
359    "dup3",
360    "",
361    "inotify_init1",
362    "inotify_add_watch",
363    "inotify_rm_watch",
364    "ioctl",
365    "ioprio_set",
366    "ioprio_get",
367    "flock",
368    "mknodat",
369    "mkdirat",
370    "unlinkat",
371    "symlinkat",
372    "linkat",
373    "",
374    "umount2",
375    "mount",
376    "pivot_root",
377    "nfsservctl",
378    "",
379    "",
380    "",
381    "",
382    "fallocate",
383    "faccessat",
384    "chdir",
385    "fchdir",
386    "chroot",
387    "fchmod",
388    "fchmodat",
389    "fchownat",
390    "fchown",
391    "openat",
392    "close",
393    "vhangup",
394    "pipe2",
395    "quotactl",
396    "getdents64",
397    "",
398    "read",
399    "write",
400    "readv",
401    "writev",
402    "pread64",
403    "pwrite64",
404    "preadv",
405    "pwritev",
406    "",
407    "pselect6",
408    "ppoll",
409    "signalfd4",
410    "vmsplice",
411    "splice",
412    "tee",
413    "readlinkat",
414    "",
415    "",
416    "sync",
417    "fsync",
418    "fdatasync",
419    "sync_file_range",
420    "timerfd_create",
421    "timerfd_settime",
422    "timerfd_gettime",
423    "utimensat",
424    "acct",
425    "capget",
426    "capset",
427    "personality",
428    "exit",
429    "exit_group",
430    "waitid",
431    "set_tid_address",
432    "unshare",
433    "futex",
434    "set_robust_list",
435    "get_robust_list",
436    "nanosleep",
437    "getitimer",
438    "setitimer",
439    "kexec_load",
440    "init_module",
441    "delete_module",
442    "timer_create",
443    "timer_gettime",
444    "timer_getoverrun",
445    "timer_settime",
446    "timer_delete",
447    "clock_settime",
448    "clock_gettime",
449    "clock_getres",
450    "clock_nanosleep",
451    "syslog",
452    "ptrace",
453    "sched_setparam",
454    "sched_setscheduler",
455    "sched_getscheduler",
456    "sched_getparam",
457    "sched_setaffinity",
458    "sched_getaffinity",
459    "sched_yield",
460    "sched_get_priority_max",
461    "sched_get_priority_min",
462    "sched_rr_get_interval",
463    "restart_syscall",
464    "kill",
465    "tkill",
466    "tgkill",
467    "sigaltstack",
468    "rt_sigsuspend",
469    "rt_sigaction",
470    "rt_sigprocmask",
471    "rt_sigpending",
472    "rt_sigtimedwait",
473    "rt_sigqueueinfo",
474    "rt_sigreturn",
475    "setpriority",
476    "getpriority",
477    "reboot",
478    "setregid",
479    "setgid",
480    "setreuid",
481    "setuid",
482    "setresuid",
483    "getresuid",
484    "setresgid",
485    "getresgid",
486    "setfsuid",
487    "setfsgid",
488    "times",
489    "setpgid",
490    "getpgid",
491    "getsid",
492    "setsid",
493    "getgroups",
494    "setgroups",
495    "uname",
496    "sethostname",
497    "setdomainname",
498    "",
499    "",
500    "getrusage",
501    "umask",
502    "prctl",
503    "getcpu",
504    "gettimeofday",
505    "settimeofday",
506    "adjtimex",
507    "getpid",
508    "getppid",
509    "getuid",
510    "geteuid",
511    "getgid",
512    "getegid",
513    "gettid",
514    "sysinfo",
515    "mq_open",
516    "mq_unlink",
517    "mq_timedsend",
518    "mq_timedreceive",
519    "mq_notify",
520    "mq_getsetattr",
521    "msgget",
522    "msgctl",
523    "msgrcv",
524    "msgsnd",
525    "semget",
526    "semctl",
527    "semtimedop",
528    "semop",
529    "shmget",
530    "shmctl",
531    "shmat",
532    "shmdt",
533    "socket",
534    "socketpair",
535    "bind",
536    "listen",
537    "accept",
538    "connect",
539    "getsockname",
540    "getpeername",
541    "sendto",
542    "recvfrom",
543    "setsockopt",
544    "getsockopt",
545    "shutdown",
546    "sendmsg",
547    "recvmsg",
548    "readahead",
549    "brk",
550    "munmap",
551    "mremap",
552    "add_key",
553    "request_key",
554    "keyctl",
555    "clone",
556    "execve",
557    "",
558    "",
559    "swapon",
560    "swapoff",
561    "mprotect",
562    "msync",
563    "mlock",
564    "munlock",
565    "mlockall",
566    "munlockall",
567    "mincore",
568    "madvise",
569    "remap_file_pages",
570    "mbind",
571    "get_mempolicy",
572    "set_mempolicy",
573    "migrate_pages",
574    "move_pages",
575    "rt_tgsigqueueinfo",
576    "perf_event_open",
577    "accept4",
578    "recvmmsg",
579    "arch_specific_syscall",
580    "",
581    "",
582    "",
583    "",
584    "",
585    "",
586    "",
587    "",
588    "",
589    "",
590    "",
591    "",
592    "",
593    "",
594    "",
595    "wait4",
596    "prlimit64",
597    "fanotify_init",
598    "fanotify_mark",
599    "name_to_handle_at",
600    "open_by_handle_at",
601    "clock_adjtime",
602    "syncfs",
603    "setns",
604    "sendmmsg",
605    "process_vm_readv",
606    "process_vm_writev",
607    "kcmp",
608    "finit_module",
609    "sched_setattr",
610    "sched_getattr",
611    "renameat2",
612    "seccomp",
613    "getrandom",
614    "memfd_create",
615    "bpf",
616    "execveat",
617    "userfaultfd",
618    "membarrier",
619    "mlock2",
620    "copy_file_range",
621    "preadv2",
622    "pwritev2",
623    "pkey_mprotect",
624    "pkey_alloc",
625    "pkey_free",
626    "statx",
627    "io_pgetevents",
628    "rseq",
629    "kexec_file_load",
630    "",
631    "",
632    "",
633    "",
634    "",
635    "",
636    "",
637    "",
638    "",
639    "",
640    "",
641    "",
642    "",
643    "",
644    "",
645    "",
646    "",
647    "",
648    "",
649    "",
650    "",
651    "",
652    "",
653    "",
654    "",
655    "",
656    "",
657    "",
658    "",
659    "",
660    "",
661    "",
662    "",
663    "",
664    "",
665    "",
666    "",
667    "",
668    "",
669    "",
670    "",
671    "",
672    "",
673    "",
674    "",
675    "",
676    "",
677    "",
678    "",
679    "",
680    "",
681    "",
682    "",
683    "",
684    "",
685    "",
686    "",
687    "",
688    "",
689    "",
690    "",
691    "",
692    "",
693    "",
694    "",
695    "",
696    "",
697    "",
698    "",
699    "",
700    "",
701    "",
702    "",
703    "",
704    "",
705    "",
706    "",
707    "",
708    "",
709    "",
710    "",
711    "",
712    "",
713    "",
714    "",
715    "",
716    "",
717    "",
718    "",
719    "",
720    "",
721    "",
722    "",
723    "",
724    "",
725    "",
726    "",
727    "",
728    "",
729    "",
730    "",
731    "",
732    "",
733    "",
734    "",
735    "",
736    "",
737    "",
738    "",
739    "",
740    "",
741    "",
742    "",
743    "",
744    "",
745    "",
746    "",
747    "",
748    "",
749    "",
750    "",
751    "",
752    "",
753    "",
754    "",
755    "",
756    "",
757    "",
758    "",
759    "pidfd_send_signal",
760    "io_uring_setup",
761    "io_uring_enter",
762    "io_uring_register",
763    "open_tree",
764    "move_mount",
765    "fsopen",
766    "fsconfig",
767    "fsmount",
768    "fspick",
769    "pidfd_open",
770    "clone3",
771    "close_range",
772    "openat2",
773    "pidfd_getfd",
774    "faccessat2",
775    "process_madvise",
776    "epoll_pwait2",
777    "mount_setattr",
778    "quotactl_fd",
779    "landlock_create_ruleset",
780    "landlock_add_rule",
781    "landlock_restrict_self",
782    "",
783    "process_mrelease",
784    "futex_waitv",
785    "set_mempolicy_home_node",
786    "cachestat",
787    "fchmodat2",
788    "map_shadow_stack",
789    "futex_wake",
790    "futex_wait",
791    "futex_requeue",
792    "statmount",
793    "listmount",
794    "lsm_get_self_attr",
795    "lsm_set_self_attr",
796    "lsm_list_modules",
797    "mseal",
798    "setxattrat",
799    "getxattrat",
800    "listxattrat",
801    "removexattrat",
802    "open_tree_attr",
803    "file_getattr",
804    "file_setattr",
805    "listns",
806];