1/*
2 * System call prototypes.
3 *
4 * DO NOT EDIT-- this file is automatically @generated.
5 */
6
7#ifndef _LINUX_SYSPROTO_H_
8#define	_LINUX_SYSPROTO_H_
9
10#include <sys/types.h>
11#include <sys/signal.h>
12#include <sys/cpuset.h>
13#include <sys/domainset.h>
14#include <sys/_ffcounter.h>
15#include <sys/_semaphore.h>
16#include <sys/ucontext.h>
17#include <sys/wait.h>
18
19#include <bsm/audit_kevents.h>
20
21struct proc;
22
23struct thread;
24
25#define	PAD_(t)	(sizeof(syscallarg_t) <= sizeof(t) ? \
26		0 : sizeof(syscallarg_t) - sizeof(t))
27
28#if BYTE_ORDER == LITTLE_ENDIAN
29#define	PADL_(t)	0
30#define	PADR_(t)	PAD_(t)
31#else
32#define	PADL_(t)	PAD_(t)
33#define	PADR_(t)	0
34#endif
35
36struct linux_setxattr_args {
37	char path_l_[PADL_(const char *)]; const char * path; char path_r_[PADR_(const char *)];
38	char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)];
39	char value_l_[PADL_(void *)]; void * value; char value_r_[PADR_(void *)];
40	char size_l_[PADL_(l_size_t)]; l_size_t size; char size_r_[PADR_(l_size_t)];
41	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
42};
43struct linux_lsetxattr_args {
44	char path_l_[PADL_(const char *)]; const char * path; char path_r_[PADR_(const char *)];
45	char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)];
46	char value_l_[PADL_(void *)]; void * value; char value_r_[PADR_(void *)];
47	char size_l_[PADL_(l_size_t)]; l_size_t size; char size_r_[PADR_(l_size_t)];
48	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
49};
50struct linux_fsetxattr_args {
51	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
52	char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)];
53	char value_l_[PADL_(void *)]; void * value; char value_r_[PADR_(void *)];
54	char size_l_[PADL_(l_size_t)]; l_size_t size; char size_r_[PADR_(l_size_t)];
55	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
56};
57struct linux_getxattr_args {
58	char path_l_[PADL_(const char *)]; const char * path; char path_r_[PADR_(const char *)];
59	char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)];
60	char value_l_[PADL_(void *)]; void * value; char value_r_[PADR_(void *)];
61	char size_l_[PADL_(l_size_t)]; l_size_t size; char size_r_[PADR_(l_size_t)];
62};
63struct linux_lgetxattr_args {
64	char path_l_[PADL_(const char *)]; const char * path; char path_r_[PADR_(const char *)];
65	char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)];
66	char value_l_[PADL_(void *)]; void * value; char value_r_[PADR_(void *)];
67	char size_l_[PADL_(l_size_t)]; l_size_t size; char size_r_[PADR_(l_size_t)];
68};
69struct linux_fgetxattr_args {
70	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
71	char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)];
72	char value_l_[PADL_(void *)]; void * value; char value_r_[PADR_(void *)];
73	char size_l_[PADL_(l_size_t)]; l_size_t size; char size_r_[PADR_(l_size_t)];
74};
75struct linux_listxattr_args {
76	char path_l_[PADL_(const char *)]; const char * path; char path_r_[PADR_(const char *)];
77	char list_l_[PADL_(char *)]; char * list; char list_r_[PADR_(char *)];
78	char size_l_[PADL_(l_size_t)]; l_size_t size; char size_r_[PADR_(l_size_t)];
79};
80struct linux_llistxattr_args {
81	char path_l_[PADL_(const char *)]; const char * path; char path_r_[PADR_(const char *)];
82	char list_l_[PADL_(char *)]; char * list; char list_r_[PADR_(char *)];
83	char size_l_[PADL_(l_size_t)]; l_size_t size; char size_r_[PADR_(l_size_t)];
84};
85struct linux_flistxattr_args {
86	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
87	char list_l_[PADL_(char *)]; char * list; char list_r_[PADR_(char *)];
88	char size_l_[PADL_(l_size_t)]; l_size_t size; char size_r_[PADR_(l_size_t)];
89};
90struct linux_removexattr_args {
91	char path_l_[PADL_(const char *)]; const char * path; char path_r_[PADR_(const char *)];
92	char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)];
93};
94struct linux_lremovexattr_args {
95	char path_l_[PADL_(const char *)]; const char * path; char path_r_[PADR_(const char *)];
96	char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)];
97};
98struct linux_fremovexattr_args {
99	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
100	char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)];
101};
102struct linux_getcwd_args {
103	char buf_l_[PADL_(char *)]; char * buf; char buf_r_[PADR_(char *)];
104	char bufsize_l_[PADL_(l_ulong)]; l_ulong bufsize; char bufsize_r_[PADR_(l_ulong)];
105};
106struct linux_lookup_dcookie_args {
107	syscallarg_t dummy;
108};
109struct linux_eventfd2_args {
110	char initval_l_[PADL_(l_uint)]; l_uint initval; char initval_r_[PADR_(l_uint)];
111	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
112};
113struct linux_epoll_create1_args {
114	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
115};
116struct linux_epoll_ctl_args {
117	char epfd_l_[PADL_(l_int)]; l_int epfd; char epfd_r_[PADR_(l_int)];
118	char op_l_[PADL_(l_int)]; l_int op; char op_r_[PADR_(l_int)];
119	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
120	char event_l_[PADL_(struct epoll_event *)]; struct epoll_event * event; char event_r_[PADR_(struct epoll_event *)];
121};
122struct linux_epoll_pwait_args {
123	char epfd_l_[PADL_(l_int)]; l_int epfd; char epfd_r_[PADR_(l_int)];
124	char events_l_[PADL_(struct epoll_event *)]; struct epoll_event * events; char events_r_[PADR_(struct epoll_event *)];
125	char maxevents_l_[PADL_(l_int)]; l_int maxevents; char maxevents_r_[PADR_(l_int)];
126	char timeout_l_[PADL_(l_int)]; l_int timeout; char timeout_r_[PADR_(l_int)];
127	char mask_l_[PADL_(l_sigset_t *)]; l_sigset_t * mask; char mask_r_[PADR_(l_sigset_t *)];
128	char sigsetsize_l_[PADL_(l_size_t)]; l_size_t sigsetsize; char sigsetsize_r_[PADR_(l_size_t)];
129};
130struct linux_dup3_args {
131	char oldfd_l_[PADL_(l_int)]; l_int oldfd; char oldfd_r_[PADR_(l_int)];
132	char newfd_l_[PADL_(l_int)]; l_int newfd; char newfd_r_[PADR_(l_int)];
133	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
134};
135struct linux_fcntl_args {
136	char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)];
137	char cmd_l_[PADL_(l_uint)]; l_uint cmd; char cmd_r_[PADR_(l_uint)];
138	char arg_l_[PADL_(l_ulong)]; l_ulong arg; char arg_r_[PADR_(l_ulong)];
139};
140struct linux_inotify_init1_args {
141	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
142};
143struct linux_inotify_add_watch_args {
144	syscallarg_t dummy;
145};
146struct linux_inotify_rm_watch_args {
147	syscallarg_t dummy;
148};
149struct linux_ioctl_args {
150	char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)];
151	char cmd_l_[PADL_(l_uint)]; l_uint cmd; char cmd_r_[PADR_(l_uint)];
152	char arg_l_[PADL_(l_ulong)]; l_ulong arg; char arg_r_[PADR_(l_ulong)];
153};
154struct linux_ioprio_set_args {
155	char which_l_[PADL_(l_int)]; l_int which; char which_r_[PADR_(l_int)];
156	char who_l_[PADL_(l_int)]; l_int who; char who_r_[PADR_(l_int)];
157	char ioprio_l_[PADL_(l_int)]; l_int ioprio; char ioprio_r_[PADR_(l_int)];
158};
159struct linux_ioprio_get_args {
160	char which_l_[PADL_(l_int)]; l_int which; char which_r_[PADR_(l_int)];
161	char who_l_[PADL_(l_int)]; l_int who; char who_r_[PADR_(l_int)];
162};
163struct linux_mknodat_args {
164	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
165	char filename_l_[PADL_(const char *)]; const char * filename; char filename_r_[PADR_(const char *)];
166	char mode_l_[PADL_(l_int)]; l_int mode; char mode_r_[PADR_(l_int)];
167	char dev_l_[PADL_(l_dev_t)]; l_dev_t dev; char dev_r_[PADR_(l_dev_t)];
168};
169struct linux_mkdirat_args {
170	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
171	char pathname_l_[PADL_(const char *)]; const char * pathname; char pathname_r_[PADR_(const char *)];
172	char mode_l_[PADL_(l_mode_t)]; l_mode_t mode; char mode_r_[PADR_(l_mode_t)];
173};
174struct linux_unlinkat_args {
175	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
176	char pathname_l_[PADL_(const char *)]; const char * pathname; char pathname_r_[PADR_(const char *)];
177	char flag_l_[PADL_(l_int)]; l_int flag; char flag_r_[PADR_(l_int)];
178};
179struct linux_symlinkat_args {
180	char oldname_l_[PADL_(const char *)]; const char * oldname; char oldname_r_[PADR_(const char *)];
181	char newdfd_l_[PADL_(l_int)]; l_int newdfd; char newdfd_r_[PADR_(l_int)];
182	char newname_l_[PADL_(const char *)]; const char * newname; char newname_r_[PADR_(const char *)];
183};
184struct linux_linkat_args {
185	char olddfd_l_[PADL_(l_int)]; l_int olddfd; char olddfd_r_[PADR_(l_int)];
186	char oldname_l_[PADL_(const char *)]; const char * oldname; char oldname_r_[PADR_(const char *)];
187	char newdfd_l_[PADL_(l_int)]; l_int newdfd; char newdfd_r_[PADR_(l_int)];
188	char newname_l_[PADL_(const char *)]; const char * newname; char newname_r_[PADR_(const char *)];
189	char flag_l_[PADL_(l_int)]; l_int flag; char flag_r_[PADR_(l_int)];
190};
191struct linux_renameat_args {
192	char olddfd_l_[PADL_(l_int)]; l_int olddfd; char olddfd_r_[PADR_(l_int)];
193	char oldname_l_[PADL_(const char *)]; const char * oldname; char oldname_r_[PADR_(const char *)];
194	char newdfd_l_[PADL_(l_int)]; l_int newdfd; char newdfd_r_[PADR_(l_int)];
195	char newname_l_[PADL_(const char *)]; const char * newname; char newname_r_[PADR_(const char *)];
196};
197struct linux_mount_args {
198	char specialfile_l_[PADL_(char *)]; char * specialfile; char specialfile_r_[PADR_(char *)];
199	char dir_l_[PADL_(char *)]; char * dir; char dir_r_[PADR_(char *)];
200	char filesystemtype_l_[PADL_(char *)]; char * filesystemtype; char filesystemtype_r_[PADR_(char *)];
201	char rwflag_l_[PADL_(l_ulong)]; l_ulong rwflag; char rwflag_r_[PADR_(l_ulong)];
202	char data_l_[PADL_(void *)]; void * data; char data_r_[PADR_(void *)];
203};
204struct linux_pivot_root_args {
205	syscallarg_t dummy;
206};
207struct linux_statfs_args {
208	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
209	char buf_l_[PADL_(struct l_statfs_buf *)]; struct l_statfs_buf * buf; char buf_r_[PADR_(struct l_statfs_buf *)];
210};
211struct linux_fstatfs_args {
212	char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)];
213	char buf_l_[PADL_(struct l_statfs_buf *)]; struct l_statfs_buf * buf; char buf_r_[PADR_(struct l_statfs_buf *)];
214};
215struct linux_truncate_args {
216	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
217	char length_l_[PADL_(l_ulong)]; l_ulong length; char length_r_[PADR_(l_ulong)];
218};
219struct linux_ftruncate_args {
220	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
221	char length_l_[PADL_(l_long)]; l_long length; char length_r_[PADR_(l_long)];
222};
223struct linux_fallocate_args {
224	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
225	char mode_l_[PADL_(l_int)]; l_int mode; char mode_r_[PADR_(l_int)];
226	char offset_l_[PADL_(l_loff_t)]; l_loff_t offset; char offset_r_[PADR_(l_loff_t)];
227	char len_l_[PADL_(l_loff_t)]; l_loff_t len; char len_r_[PADR_(l_loff_t)];
228};
229struct linux_faccessat_args {
230	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
231	char filename_l_[PADL_(const char *)]; const char * filename; char filename_r_[PADR_(const char *)];
232	char amode_l_[PADL_(l_int)]; l_int amode; char amode_r_[PADR_(l_int)];
233};
234struct linux_chdir_args {
235	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
236};
237struct linux_fchmodat_args {
238	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
239	char filename_l_[PADL_(const char *)]; const char * filename; char filename_r_[PADR_(const char *)];
240	char mode_l_[PADL_(l_mode_t)]; l_mode_t mode; char mode_r_[PADR_(l_mode_t)];
241};
242struct linux_fchownat_args {
243	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
244	char filename_l_[PADL_(const char *)]; const char * filename; char filename_r_[PADR_(const char *)];
245	char uid_l_[PADL_(l_uid_t)]; l_uid_t uid; char uid_r_[PADR_(l_uid_t)];
246	char gid_l_[PADL_(l_gid_t)]; l_gid_t gid; char gid_r_[PADR_(l_gid_t)];
247	char flag_l_[PADL_(l_int)]; l_int flag; char flag_r_[PADR_(l_int)];
248};
249struct linux_openat_args {
250	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
251	char filename_l_[PADL_(const char *)]; const char * filename; char filename_r_[PADR_(const char *)];
252	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
253	char mode_l_[PADL_(l_mode_t)]; l_mode_t mode; char mode_r_[PADR_(l_mode_t)];
254};
255struct linux_vhangup_args {
256	syscallarg_t dummy;
257};
258struct linux_pipe2_args {
259	char pipefds_l_[PADL_(l_int *)]; l_int * pipefds; char pipefds_r_[PADR_(l_int *)];
260	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
261};
262struct linux_getdents64_args {
263	char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)];
264	char dirent_l_[PADL_(void *)]; void * dirent; char dirent_r_[PADR_(void *)];
265	char count_l_[PADL_(l_uint)]; l_uint count; char count_r_[PADR_(l_uint)];
266};
267struct linux_lseek_args {
268	char fdes_l_[PADL_(l_uint)]; l_uint fdes; char fdes_r_[PADR_(l_uint)];
269	char off_l_[PADL_(l_off_t)]; l_off_t off; char off_r_[PADR_(l_off_t)];
270	char whence_l_[PADL_(l_int)]; l_int whence; char whence_r_[PADR_(l_int)];
271};
272struct linux_write_args {
273	char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
274	char buf_l_[PADL_(char *)]; char * buf; char buf_r_[PADR_(char *)];
275	char nbyte_l_[PADL_(l_size_t)]; l_size_t nbyte; char nbyte_r_[PADR_(l_size_t)];
276};
277struct linux_writev_args {
278	char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
279	char iovp_l_[PADL_(struct iovec *)]; struct iovec * iovp; char iovp_r_[PADR_(struct iovec *)];
280	char iovcnt_l_[PADL_(u_int)]; u_int iovcnt; char iovcnt_r_[PADR_(u_int)];
281};
282struct linux_pread_args {
283	char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)];
284	char buf_l_[PADL_(char *)]; char * buf; char buf_r_[PADR_(char *)];
285	char nbyte_l_[PADL_(l_size_t)]; l_size_t nbyte; char nbyte_r_[PADR_(l_size_t)];
286	char offset_l_[PADL_(l_loff_t)]; l_loff_t offset; char offset_r_[PADR_(l_loff_t)];
287};
288struct linux_pwrite_args {
289	char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)];
290	char buf_l_[PADL_(char *)]; char * buf; char buf_r_[PADR_(char *)];
291	char nbyte_l_[PADL_(l_size_t)]; l_size_t nbyte; char nbyte_r_[PADR_(l_size_t)];
292	char offset_l_[PADL_(l_loff_t)]; l_loff_t offset; char offset_r_[PADR_(l_loff_t)];
293};
294struct linux_preadv_args {
295	char fd_l_[PADL_(l_ulong)]; l_ulong fd; char fd_r_[PADR_(l_ulong)];
296	char vec_l_[PADL_(struct iovec *)]; struct iovec * vec; char vec_r_[PADR_(struct iovec *)];
297	char vlen_l_[PADL_(l_ulong)]; l_ulong vlen; char vlen_r_[PADR_(l_ulong)];
298	char pos_l_l_[PADL_(l_ulong)]; l_ulong pos_l; char pos_l_r_[PADR_(l_ulong)];
299	char pos_h_l_[PADL_(l_ulong)]; l_ulong pos_h; char pos_h_r_[PADR_(l_ulong)];
300};
301struct linux_pwritev_args {
302	char fd_l_[PADL_(l_ulong)]; l_ulong fd; char fd_r_[PADR_(l_ulong)];
303	char vec_l_[PADL_(struct iovec *)]; struct iovec * vec; char vec_r_[PADR_(struct iovec *)];
304	char vlen_l_[PADL_(l_ulong)]; l_ulong vlen; char vlen_r_[PADR_(l_ulong)];
305	char pos_l_l_[PADL_(l_ulong)]; l_ulong pos_l; char pos_l_r_[PADR_(l_ulong)];
306	char pos_h_l_[PADL_(l_ulong)]; l_ulong pos_h; char pos_h_r_[PADR_(l_ulong)];
307};
308struct linux_sendfile_args {
309	char out_l_[PADL_(l_int)]; l_int out; char out_r_[PADR_(l_int)];
310	char in_l_[PADL_(l_int)]; l_int in; char in_r_[PADR_(l_int)];
311	char offset_l_[PADL_(l_off_t *)]; l_off_t * offset; char offset_r_[PADR_(l_off_t *)];
312	char count_l_[PADL_(l_size_t)]; l_size_t count; char count_r_[PADR_(l_size_t)];
313};
314struct linux_pselect6_args {
315	char nfds_l_[PADL_(l_int)]; l_int nfds; char nfds_r_[PADR_(l_int)];
316	char readfds_l_[PADL_(l_fd_set *)]; l_fd_set * readfds; char readfds_r_[PADR_(l_fd_set *)];
317	char writefds_l_[PADL_(l_fd_set *)]; l_fd_set * writefds; char writefds_r_[PADR_(l_fd_set *)];
318	char exceptfds_l_[PADL_(l_fd_set *)]; l_fd_set * exceptfds; char exceptfds_r_[PADR_(l_fd_set *)];
319	char tsp_l_[PADL_(struct l_timespec *)]; struct l_timespec * tsp; char tsp_r_[PADR_(struct l_timespec *)];
320	char sig_l_[PADL_(l_uintptr_t *)]; l_uintptr_t * sig; char sig_r_[PADR_(l_uintptr_t *)];
321};
322struct linux_ppoll_args {
323	char fds_l_[PADL_(struct pollfd *)]; struct pollfd * fds; char fds_r_[PADR_(struct pollfd *)];
324	char nfds_l_[PADL_(l_uint)]; l_uint nfds; char nfds_r_[PADR_(l_uint)];
325	char tsp_l_[PADL_(struct l_timespec *)]; struct l_timespec * tsp; char tsp_r_[PADR_(struct l_timespec *)];
326	char sset_l_[PADL_(l_sigset_t *)]; l_sigset_t * sset; char sset_r_[PADR_(l_sigset_t *)];
327	char ssize_l_[PADL_(l_size_t)]; l_size_t ssize; char ssize_r_[PADR_(l_size_t)];
328};
329struct linux_signalfd4_args {
330	syscallarg_t dummy;
331};
332struct linux_vmsplice_args {
333	syscallarg_t dummy;
334};
335struct linux_splice_args {
336	char fd_in_l_[PADL_(int)]; int fd_in; char fd_in_r_[PADR_(int)];
337	char off_in_l_[PADL_(l_loff_t *)]; l_loff_t * off_in; char off_in_r_[PADR_(l_loff_t *)];
338	char fd_out_l_[PADL_(int)]; int fd_out; char fd_out_r_[PADR_(int)];
339	char off_out_l_[PADL_(l_loff_t *)]; l_loff_t * off_out; char off_out_r_[PADR_(l_loff_t *)];
340	char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)];
341	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
342};
343struct linux_tee_args {
344	syscallarg_t dummy;
345};
346struct linux_readlinkat_args {
347	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
348	char path_l_[PADL_(const char *)]; const char * path; char path_r_[PADR_(const char *)];
349	char buf_l_[PADL_(char *)]; char * buf; char buf_r_[PADR_(char *)];
350	char bufsiz_l_[PADL_(l_int)]; l_int bufsiz; char bufsiz_r_[PADR_(l_int)];
351};
352struct linux_newfstatat_args {
353	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
354	char pathname_l_[PADL_(char *)]; char * pathname; char pathname_r_[PADR_(char *)];
355	char statbuf_l_[PADL_(struct l_stat64 *)]; struct l_stat64 * statbuf; char statbuf_r_[PADR_(struct l_stat64 *)];
356	char flag_l_[PADL_(l_int)]; l_int flag; char flag_r_[PADR_(l_int)];
357};
358struct linux_newfstat_args {
359	char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)];
360	char buf_l_[PADL_(struct l_newstat *)]; struct l_newstat * buf; char buf_r_[PADR_(struct l_newstat *)];
361};
362struct linux_fdatasync_args {
363	char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)];
364};
365struct linux_sync_file_range_args {
366	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
367	char offset_l_[PADL_(l_loff_t)]; l_loff_t offset; char offset_r_[PADR_(l_loff_t)];
368	char nbytes_l_[PADL_(l_loff_t)]; l_loff_t nbytes; char nbytes_r_[PADR_(l_loff_t)];
369	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
370};
371struct linux_timerfd_create_args {
372	char clockid_l_[PADL_(l_int)]; l_int clockid; char clockid_r_[PADR_(l_int)];
373	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
374};
375struct linux_timerfd_settime_args {
376	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
377	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
378	char new_value_l_[PADL_(const struct l_itimerspec *)]; const struct l_itimerspec * new_value; char new_value_r_[PADR_(const struct l_itimerspec *)];
379	char old_value_l_[PADL_(struct l_itimerspec *)]; struct l_itimerspec * old_value; char old_value_r_[PADR_(struct l_itimerspec *)];
380};
381struct linux_timerfd_gettime_args {
382	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
383	char old_value_l_[PADL_(struct l_itimerspec *)]; struct l_itimerspec * old_value; char old_value_r_[PADR_(struct l_itimerspec *)];
384};
385struct linux_utimensat_args {
386	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
387	char pathname_l_[PADL_(const char *)]; const char * pathname; char pathname_r_[PADR_(const char *)];
388	char times_l_[PADL_(const struct l_timespec *)]; const struct l_timespec * times; char times_r_[PADR_(const struct l_timespec *)];
389	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
390};
391struct linux_capget_args {
392	char hdrp_l_[PADL_(struct l_user_cap_header *)]; struct l_user_cap_header * hdrp; char hdrp_r_[PADR_(struct l_user_cap_header *)];
393	char datap_l_[PADL_(struct l_user_cap_data *)]; struct l_user_cap_data * datap; char datap_r_[PADR_(struct l_user_cap_data *)];
394};
395struct linux_capset_args {
396	char hdrp_l_[PADL_(struct l_user_cap_header *)]; struct l_user_cap_header * hdrp; char hdrp_r_[PADR_(struct l_user_cap_header *)];
397	char datap_l_[PADL_(struct l_user_cap_data *)]; struct l_user_cap_data * datap; char datap_r_[PADR_(struct l_user_cap_data *)];
398};
399struct linux_personality_args {
400	char per_l_[PADL_(l_uint)]; l_uint per; char per_r_[PADR_(l_uint)];
401};
402struct linux_exit_args {
403	char rval_l_[PADL_(u_int)]; u_int rval; char rval_r_[PADR_(u_int)];
404};
405struct linux_exit_group_args {
406	char error_code_l_[PADL_(l_int)]; l_int error_code; char error_code_r_[PADR_(l_int)];
407};
408struct linux_waitid_args {
409	char idtype_l_[PADL_(l_int)]; l_int idtype; char idtype_r_[PADR_(l_int)];
410	char id_l_[PADL_(l_pid_t)]; l_pid_t id; char id_r_[PADR_(l_pid_t)];
411	char info_l_[PADL_(l_siginfo_t *)]; l_siginfo_t * info; char info_r_[PADR_(l_siginfo_t *)];
412	char options_l_[PADL_(l_int)]; l_int options; char options_r_[PADR_(l_int)];
413	char rusage_l_[PADL_(struct rusage *)]; struct rusage * rusage; char rusage_r_[PADR_(struct rusage *)];
414};
415struct linux_set_tid_address_args {
416	char tidptr_l_[PADL_(l_int *)]; l_int * tidptr; char tidptr_r_[PADR_(l_int *)];
417};
418struct linux_unshare_args {
419	syscallarg_t dummy;
420};
421struct linux_sys_futex_args {
422	char uaddr_l_[PADL_(uint32_t *)]; uint32_t * uaddr; char uaddr_r_[PADR_(uint32_t *)];
423	char op_l_[PADL_(l_int)]; l_int op; char op_r_[PADR_(l_int)];
424	char val_l_[PADL_(uint32_t)]; uint32_t val; char val_r_[PADR_(uint32_t)];
425	char timeout_l_[PADL_(struct l_timespec *)]; struct l_timespec * timeout; char timeout_r_[PADR_(struct l_timespec *)];
426	char uaddr2_l_[PADL_(uint32_t *)]; uint32_t * uaddr2; char uaddr2_r_[PADR_(uint32_t *)];
427	char val3_l_[PADL_(uint32_t)]; uint32_t val3; char val3_r_[PADR_(uint32_t)];
428};
429struct linux_set_robust_list_args {
430	char head_l_[PADL_(struct linux_robust_list_head *)]; struct linux_robust_list_head * head; char head_r_[PADR_(struct linux_robust_list_head *)];
431	char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)];
432};
433struct linux_get_robust_list_args {
434	char pid_l_[PADL_(l_int)]; l_int pid; char pid_r_[PADR_(l_int)];
435	char head_l_[PADL_(struct linux_robust_list_head **)]; struct linux_robust_list_head ** head; char head_r_[PADR_(struct linux_robust_list_head **)];
436	char len_l_[PADL_(l_size_t *)]; l_size_t * len; char len_r_[PADR_(l_size_t *)];
437};
438struct linux_nanosleep_args {
439	char rqtp_l_[PADL_(const struct l_timespec *)]; const struct l_timespec * rqtp; char rqtp_r_[PADR_(const struct l_timespec *)];
440	char rmtp_l_[PADL_(struct l_timespec *)]; struct l_timespec * rmtp; char rmtp_r_[PADR_(struct l_timespec *)];
441};
442struct linux_getitimer_args {
443	char which_l_[PADL_(l_int)]; l_int which; char which_r_[PADR_(l_int)];
444	char itv_l_[PADL_(struct l_itimerval *)]; struct l_itimerval * itv; char itv_r_[PADR_(struct l_itimerval *)];
445};
446struct linux_setitimer_args {
447	char which_l_[PADL_(l_int)]; l_int which; char which_r_[PADR_(l_int)];
448	char itv_l_[PADL_(struct l_itimerval *)]; struct l_itimerval * itv; char itv_r_[PADR_(struct l_itimerval *)];
449	char oitv_l_[PADL_(struct l_itimerval *)]; struct l_itimerval * oitv; char oitv_r_[PADR_(struct l_itimerval *)];
450};
451struct linux_kexec_load_args {
452	syscallarg_t dummy;
453};
454struct linux_init_module_args {
455	syscallarg_t dummy;
456};
457struct linux_delete_module_args {
458	syscallarg_t dummy;
459};
460struct linux_timer_create_args {
461	char clock_id_l_[PADL_(clockid_t)]; clockid_t clock_id; char clock_id_r_[PADR_(clockid_t)];
462	char evp_l_[PADL_(struct l_sigevent *)]; struct l_sigevent * evp; char evp_r_[PADR_(struct l_sigevent *)];
463	char timerid_l_[PADL_(l_timer_t *)]; l_timer_t * timerid; char timerid_r_[PADR_(l_timer_t *)];
464};
465struct linux_timer_gettime_args {
466	char timerid_l_[PADL_(l_timer_t)]; l_timer_t timerid; char timerid_r_[PADR_(l_timer_t)];
467	char setting_l_[PADL_(struct itimerspec *)]; struct itimerspec * setting; char setting_r_[PADR_(struct itimerspec *)];
468};
469struct linux_timer_getoverrun_args {
470	char timerid_l_[PADL_(l_timer_t)]; l_timer_t timerid; char timerid_r_[PADR_(l_timer_t)];
471};
472struct linux_timer_settime_args {
473	char timerid_l_[PADL_(l_timer_t)]; l_timer_t timerid; char timerid_r_[PADR_(l_timer_t)];
474	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
475	char new_l_[PADL_(const struct itimerspec *)]; const struct itimerspec * new; char new_r_[PADR_(const struct itimerspec *)];
476	char old_l_[PADL_(struct itimerspec *)]; struct itimerspec * old; char old_r_[PADR_(struct itimerspec *)];
477};
478struct linux_timer_delete_args {
479	char timerid_l_[PADL_(l_timer_t)]; l_timer_t timerid; char timerid_r_[PADR_(l_timer_t)];
480};
481struct linux_clock_settime_args {
482	char which_l_[PADL_(clockid_t)]; clockid_t which; char which_r_[PADR_(clockid_t)];
483	char tp_l_[PADL_(struct l_timespec *)]; struct l_timespec * tp; char tp_r_[PADR_(struct l_timespec *)];
484};
485struct linux_clock_gettime_args {
486	char which_l_[PADL_(clockid_t)]; clockid_t which; char which_r_[PADR_(clockid_t)];
487	char tp_l_[PADL_(struct l_timespec *)]; struct l_timespec * tp; char tp_r_[PADR_(struct l_timespec *)];
488};
489struct linux_clock_getres_args {
490	char which_l_[PADL_(clockid_t)]; clockid_t which; char which_r_[PADR_(clockid_t)];
491	char tp_l_[PADL_(struct l_timespec *)]; struct l_timespec * tp; char tp_r_[PADR_(struct l_timespec *)];
492};
493struct linux_clock_nanosleep_args {
494	char which_l_[PADL_(clockid_t)]; clockid_t which; char which_r_[PADR_(clockid_t)];
495	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
496	char rqtp_l_[PADL_(struct l_timespec *)]; struct l_timespec * rqtp; char rqtp_r_[PADR_(struct l_timespec *)];
497	char rmtp_l_[PADL_(struct l_timespec *)]; struct l_timespec * rmtp; char rmtp_r_[PADR_(struct l_timespec *)];
498};
499struct linux_syslog_args {
500	char type_l_[PADL_(l_int)]; l_int type; char type_r_[PADR_(l_int)];
501	char buf_l_[PADL_(char *)]; char * buf; char buf_r_[PADR_(char *)];
502	char len_l_[PADL_(l_int)]; l_int len; char len_r_[PADR_(l_int)];
503};
504struct linux_ptrace_args {
505	char req_l_[PADL_(l_long)]; l_long req; char req_r_[PADR_(l_long)];
506	char pid_l_[PADL_(l_long)]; l_long pid; char pid_r_[PADR_(l_long)];
507	char addr_l_[PADL_(l_ulong)]; l_ulong addr; char addr_r_[PADR_(l_ulong)];
508	char data_l_[PADL_(l_ulong)]; l_ulong data; char data_r_[PADR_(l_ulong)];
509};
510struct linux_sched_setparam_args {
511	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
512	char param_l_[PADL_(struct sched_param *)]; struct sched_param * param; char param_r_[PADR_(struct sched_param *)];
513};
514struct linux_sched_setscheduler_args {
515	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
516	char policy_l_[PADL_(l_int)]; l_int policy; char policy_r_[PADR_(l_int)];
517	char param_l_[PADL_(struct sched_param *)]; struct sched_param * param; char param_r_[PADR_(struct sched_param *)];
518};
519struct linux_sched_getscheduler_args {
520	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
521};
522struct linux_sched_getparam_args {
523	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
524	char param_l_[PADL_(struct sched_param *)]; struct sched_param * param; char param_r_[PADR_(struct sched_param *)];
525};
526struct linux_sched_setaffinity_args {
527	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
528	char len_l_[PADL_(l_uint)]; l_uint len; char len_r_[PADR_(l_uint)];
529	char user_mask_ptr_l_[PADL_(l_ulong *)]; l_ulong * user_mask_ptr; char user_mask_ptr_r_[PADR_(l_ulong *)];
530};
531struct linux_sched_getaffinity_args {
532	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
533	char len_l_[PADL_(l_uint)]; l_uint len; char len_r_[PADR_(l_uint)];
534	char user_mask_ptr_l_[PADL_(l_ulong *)]; l_ulong * user_mask_ptr; char user_mask_ptr_r_[PADR_(l_ulong *)];
535};
536struct linux_sched_get_priority_max_args {
537	char policy_l_[PADL_(l_int)]; l_int policy; char policy_r_[PADR_(l_int)];
538};
539struct linux_sched_get_priority_min_args {
540	char policy_l_[PADL_(l_int)]; l_int policy; char policy_r_[PADR_(l_int)];
541};
542struct linux_sched_rr_get_interval_args {
543	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
544	char interval_l_[PADL_(struct l_timespec *)]; struct l_timespec * interval; char interval_r_[PADR_(struct l_timespec *)];
545};
546struct linux_kill_args {
547	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
548	char signum_l_[PADL_(l_int)]; l_int signum; char signum_r_[PADR_(l_int)];
549};
550struct linux_tkill_args {
551	char tid_l_[PADL_(l_pid_t)]; l_pid_t tid; char tid_r_[PADR_(l_pid_t)];
552	char sig_l_[PADL_(l_int)]; l_int sig; char sig_r_[PADR_(l_int)];
553};
554struct linux_tgkill_args {
555	char tgid_l_[PADL_(l_pid_t)]; l_pid_t tgid; char tgid_r_[PADR_(l_pid_t)];
556	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
557	char sig_l_[PADL_(l_int)]; l_int sig; char sig_r_[PADR_(l_int)];
558};
559struct linux_sigaltstack_args {
560	char uss_l_[PADL_(l_stack_t *)]; l_stack_t * uss; char uss_r_[PADR_(l_stack_t *)];
561	char uoss_l_[PADL_(l_stack_t *)]; l_stack_t * uoss; char uoss_r_[PADR_(l_stack_t *)];
562};
563struct linux_rt_sigsuspend_args {
564	char newset_l_[PADL_(l_sigset_t *)]; l_sigset_t * newset; char newset_r_[PADR_(l_sigset_t *)];
565	char sigsetsize_l_[PADL_(l_size_t)]; l_size_t sigsetsize; char sigsetsize_r_[PADR_(l_size_t)];
566};
567struct linux_rt_sigaction_args {
568	char sig_l_[PADL_(l_int)]; l_int sig; char sig_r_[PADR_(l_int)];
569	char act_l_[PADL_(l_sigaction_t *)]; l_sigaction_t * act; char act_r_[PADR_(l_sigaction_t *)];
570	char oact_l_[PADL_(l_sigaction_t *)]; l_sigaction_t * oact; char oact_r_[PADR_(l_sigaction_t *)];
571	char sigsetsize_l_[PADL_(l_size_t)]; l_size_t sigsetsize; char sigsetsize_r_[PADR_(l_size_t)];
572};
573struct linux_rt_sigprocmask_args {
574	char how_l_[PADL_(l_int)]; l_int how; char how_r_[PADR_(l_int)];
575	char mask_l_[PADL_(l_sigset_t *)]; l_sigset_t * mask; char mask_r_[PADR_(l_sigset_t *)];
576	char omask_l_[PADL_(l_sigset_t *)]; l_sigset_t * omask; char omask_r_[PADR_(l_sigset_t *)];
577	char sigsetsize_l_[PADL_(l_size_t)]; l_size_t sigsetsize; char sigsetsize_r_[PADR_(l_size_t)];
578};
579struct linux_rt_sigpending_args {
580	char set_l_[PADL_(l_sigset_t *)]; l_sigset_t * set; char set_r_[PADR_(l_sigset_t *)];
581	char sigsetsize_l_[PADL_(l_size_t)]; l_size_t sigsetsize; char sigsetsize_r_[PADR_(l_size_t)];
582};
583struct linux_rt_sigtimedwait_args {
584	char mask_l_[PADL_(l_sigset_t *)]; l_sigset_t * mask; char mask_r_[PADR_(l_sigset_t *)];
585	char ptr_l_[PADL_(l_siginfo_t *)]; l_siginfo_t * ptr; char ptr_r_[PADR_(l_siginfo_t *)];
586	char timeout_l_[PADL_(struct l_timespec *)]; struct l_timespec * timeout; char timeout_r_[PADR_(struct l_timespec *)];
587	char sigsetsize_l_[PADL_(l_size_t)]; l_size_t sigsetsize; char sigsetsize_r_[PADR_(l_size_t)];
588};
589struct linux_rt_sigqueueinfo_args {
590	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
591	char sig_l_[PADL_(l_int)]; l_int sig; char sig_r_[PADR_(l_int)];
592	char info_l_[PADL_(l_siginfo_t *)]; l_siginfo_t * info; char info_r_[PADR_(l_siginfo_t *)];
593};
594struct linux_rt_sigreturn_args {
595	syscallarg_t dummy;
596};
597struct linux_getpriority_args {
598	char which_l_[PADL_(l_int)]; l_int which; char which_r_[PADR_(l_int)];
599	char who_l_[PADL_(l_int)]; l_int who; char who_r_[PADR_(l_int)];
600};
601struct linux_reboot_args {
602	char magic1_l_[PADL_(l_int)]; l_int magic1; char magic1_r_[PADR_(l_int)];
603	char magic2_l_[PADL_(l_int)]; l_int magic2; char magic2_r_[PADR_(l_int)];
604	char cmd_l_[PADL_(l_uint)]; l_uint cmd; char cmd_r_[PADR_(l_uint)];
605	char arg_l_[PADL_(void *)]; void * arg; char arg_r_[PADR_(void *)];
606};
607struct linux_setfsuid_args {
608	char uid_l_[PADL_(l_uid_t)]; l_uid_t uid; char uid_r_[PADR_(l_uid_t)];
609};
610struct linux_setfsgid_args {
611	char gid_l_[PADL_(l_gid_t)]; l_gid_t gid; char gid_r_[PADR_(l_gid_t)];
612};
613struct linux_times_args {
614	char buf_l_[PADL_(struct l_times_argv *)]; struct l_times_argv * buf; char buf_r_[PADR_(struct l_times_argv *)];
615};
616struct linux_getsid_args {
617	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
618};
619struct linux_getgroups_args {
620	char gidsetsize_l_[PADL_(l_int)]; l_int gidsetsize; char gidsetsize_r_[PADR_(l_int)];
621	char grouplist_l_[PADL_(l_gid_t *)]; l_gid_t * grouplist; char grouplist_r_[PADR_(l_gid_t *)];
622};
623struct linux_setgroups_args {
624	char gidsetsize_l_[PADL_(l_int)]; l_int gidsetsize; char gidsetsize_r_[PADR_(l_int)];
625	char grouplist_l_[PADL_(l_gid_t *)]; l_gid_t * grouplist; char grouplist_r_[PADR_(l_gid_t *)];
626};
627struct linux_newuname_args {
628	char buf_l_[PADL_(struct l_new_utsname *)]; struct l_new_utsname * buf; char buf_r_[PADR_(struct l_new_utsname *)];
629};
630struct linux_sethostname_args {
631	char hostname_l_[PADL_(char *)]; char * hostname; char hostname_r_[PADR_(char *)];
632	char len_l_[PADL_(l_uint)]; l_uint len; char len_r_[PADR_(l_uint)];
633};
634struct linux_setdomainname_args {
635	char name_l_[PADL_(char *)]; char * name; char name_r_[PADR_(char *)];
636	char len_l_[PADL_(l_int)]; l_int len; char len_r_[PADR_(l_int)];
637};
638struct linux_getrlimit_args {
639	char resource_l_[PADL_(l_uint)]; l_uint resource; char resource_r_[PADR_(l_uint)];
640	char rlim_l_[PADL_(struct l_rlimit *)]; struct l_rlimit * rlim; char rlim_r_[PADR_(struct l_rlimit *)];
641};
642struct linux_setrlimit_args {
643	char resource_l_[PADL_(l_uint)]; l_uint resource; char resource_r_[PADR_(l_uint)];
644	char rlim_l_[PADL_(struct l_rlimit *)]; struct l_rlimit * rlim; char rlim_r_[PADR_(struct l_rlimit *)];
645};
646struct linux_prctl_args {
647	char option_l_[PADL_(l_int)]; l_int option; char option_r_[PADR_(l_int)];
648	char arg2_l_[PADL_(l_uintptr_t)]; l_uintptr_t arg2; char arg2_r_[PADR_(l_uintptr_t)];
649	char arg3_l_[PADL_(l_uintptr_t)]; l_uintptr_t arg3; char arg3_r_[PADR_(l_uintptr_t)];
650	char arg4_l_[PADL_(l_uintptr_t)]; l_uintptr_t arg4; char arg4_r_[PADR_(l_uintptr_t)];
651	char arg5_l_[PADL_(l_uintptr_t)]; l_uintptr_t arg5; char arg5_r_[PADR_(l_uintptr_t)];
652};
653struct linux_getcpu_args {
654	char cpu_l_[PADL_(l_uint *)]; l_uint * cpu; char cpu_r_[PADR_(l_uint *)];
655	char node_l_[PADL_(l_uint *)]; l_uint * node; char node_r_[PADR_(l_uint *)];
656	char cache_l_[PADL_(void *)]; void * cache; char cache_r_[PADR_(void *)];
657};
658struct linux_adjtimex_args {
659	syscallarg_t dummy;
660};
661struct linux_getpid_args {
662	syscallarg_t dummy;
663};
664struct linux_getppid_args {
665	syscallarg_t dummy;
666};
667struct linux_getuid_args {
668	syscallarg_t dummy;
669};
670struct linux_getgid_args {
671	syscallarg_t dummy;
672};
673struct linux_gettid_args {
674	syscallarg_t dummy;
675};
676struct linux_sysinfo_args {
677	char info_l_[PADL_(struct l_sysinfo *)]; struct l_sysinfo * info; char info_r_[PADR_(struct l_sysinfo *)];
678};
679struct linux_mq_open_args {
680	char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)];
681	char oflag_l_[PADL_(l_int)]; l_int oflag; char oflag_r_[PADR_(l_int)];
682	char mode_l_[PADL_(l_mode_t)]; l_mode_t mode; char mode_r_[PADR_(l_mode_t)];
683	char attr_l_[PADL_(struct mq_attr *)]; struct mq_attr * attr; char attr_r_[PADR_(struct mq_attr *)];
684};
685struct linux_mq_unlink_args {
686	char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)];
687};
688struct linux_mq_timedsend_args {
689	char mqd_l_[PADL_(l_mqd_t)]; l_mqd_t mqd; char mqd_r_[PADR_(l_mqd_t)];
690	char msg_ptr_l_[PADL_(const char *)]; const char * msg_ptr; char msg_ptr_r_[PADR_(const char *)];
691	char msg_len_l_[PADL_(l_size_t)]; l_size_t msg_len; char msg_len_r_[PADR_(l_size_t)];
692	char msg_prio_l_[PADL_(l_uint)]; l_uint msg_prio; char msg_prio_r_[PADR_(l_uint)];
693	char abs_timeout_l_[PADL_(const struct l_timespec *)]; const struct l_timespec * abs_timeout; char abs_timeout_r_[PADR_(const struct l_timespec *)];
694};
695struct linux_mq_timedreceive_args {
696	char mqd_l_[PADL_(l_mqd_t)]; l_mqd_t mqd; char mqd_r_[PADR_(l_mqd_t)];
697	char msg_ptr_l_[PADL_(char *)]; char * msg_ptr; char msg_ptr_r_[PADR_(char *)];
698	char msg_len_l_[PADL_(l_size_t)]; l_size_t msg_len; char msg_len_r_[PADR_(l_size_t)];
699	char msg_prio_l_[PADL_(l_uint *)]; l_uint * msg_prio; char msg_prio_r_[PADR_(l_uint *)];
700	char abs_timeout_l_[PADL_(const struct l_timespec *)]; const struct l_timespec * abs_timeout; char abs_timeout_r_[PADR_(const struct l_timespec *)];
701};
702struct linux_mq_notify_args {
703	char mqd_l_[PADL_(l_mqd_t)]; l_mqd_t mqd; char mqd_r_[PADR_(l_mqd_t)];
704	char sevp_l_[PADL_(const struct l_sigevent *)]; const struct l_sigevent * sevp; char sevp_r_[PADR_(const struct l_sigevent *)];
705};
706struct linux_mq_getsetattr_args {
707	char mqd_l_[PADL_(l_mqd_t)]; l_mqd_t mqd; char mqd_r_[PADR_(l_mqd_t)];
708	char attr_l_[PADL_(const struct mq_attr *)]; const struct mq_attr * attr; char attr_r_[PADR_(const struct mq_attr *)];
709	char oattr_l_[PADL_(struct mq_attr *)]; struct mq_attr * oattr; char oattr_r_[PADR_(struct mq_attr *)];
710};
711struct linux_msgget_args {
712	char key_l_[PADL_(l_key_t)]; l_key_t key; char key_r_[PADR_(l_key_t)];
713	char msgflg_l_[PADL_(l_int)]; l_int msgflg; char msgflg_r_[PADR_(l_int)];
714};
715struct linux_msgctl_args {
716	char msqid_l_[PADL_(l_int)]; l_int msqid; char msqid_r_[PADR_(l_int)];
717	char cmd_l_[PADL_(l_int)]; l_int cmd; char cmd_r_[PADR_(l_int)];
718	char buf_l_[PADL_(struct l_msqid_ds *)]; struct l_msqid_ds * buf; char buf_r_[PADR_(struct l_msqid_ds *)];
719};
720struct linux_msgrcv_args {
721	char msqid_l_[PADL_(l_int)]; l_int msqid; char msqid_r_[PADR_(l_int)];
722	char msgp_l_[PADL_(struct l_msgbuf *)]; struct l_msgbuf * msgp; char msgp_r_[PADR_(struct l_msgbuf *)];
723	char msgsz_l_[PADL_(l_size_t)]; l_size_t msgsz; char msgsz_r_[PADR_(l_size_t)];
724	char msgtyp_l_[PADL_(l_long)]; l_long msgtyp; char msgtyp_r_[PADR_(l_long)];
725	char msgflg_l_[PADL_(l_int)]; l_int msgflg; char msgflg_r_[PADR_(l_int)];
726};
727struct linux_msgsnd_args {
728	char msqid_l_[PADL_(l_int)]; l_int msqid; char msqid_r_[PADR_(l_int)];
729	char msgp_l_[PADL_(struct l_msgbuf *)]; struct l_msgbuf * msgp; char msgp_r_[PADR_(struct l_msgbuf *)];
730	char msgsz_l_[PADL_(l_size_t)]; l_size_t msgsz; char msgsz_r_[PADR_(l_size_t)];
731	char msgflg_l_[PADL_(l_int)]; l_int msgflg; char msgflg_r_[PADR_(l_int)];
732};
733struct linux_semget_args {
734	char key_l_[PADL_(l_key_t)]; l_key_t key; char key_r_[PADR_(l_key_t)];
735	char nsems_l_[PADL_(l_int)]; l_int nsems; char nsems_r_[PADR_(l_int)];
736	char semflg_l_[PADL_(l_int)]; l_int semflg; char semflg_r_[PADR_(l_int)];
737};
738struct linux_semctl_args {
739	char semid_l_[PADL_(l_int)]; l_int semid; char semid_r_[PADR_(l_int)];
740	char semnum_l_[PADL_(l_int)]; l_int semnum; char semnum_r_[PADR_(l_int)];
741	char cmd_l_[PADL_(l_int)]; l_int cmd; char cmd_r_[PADR_(l_int)];
742	char arg_l_[PADL_(union l_semun)]; union l_semun arg; char arg_r_[PADR_(union l_semun)];
743};
744struct linux_semtimedop_args {
745	char semid_l_[PADL_(l_int)]; l_int semid; char semid_r_[PADR_(l_int)];
746	char tsops_l_[PADL_(struct sembuf *)]; struct sembuf * tsops; char tsops_r_[PADR_(struct sembuf *)];
747	char nsops_l_[PADL_(l_size_t)]; l_size_t nsops; char nsops_r_[PADR_(l_size_t)];
748	char timeout_l_[PADL_(struct l_timespec *)]; struct l_timespec * timeout; char timeout_r_[PADR_(struct l_timespec *)];
749};
750struct linux_shmget_args {
751	char key_l_[PADL_(l_key_t)]; l_key_t key; char key_r_[PADR_(l_key_t)];
752	char size_l_[PADL_(l_size_t)]; l_size_t size; char size_r_[PADR_(l_size_t)];
753	char shmflg_l_[PADL_(l_int)]; l_int shmflg; char shmflg_r_[PADR_(l_int)];
754};
755struct linux_shmctl_args {
756	char shmid_l_[PADL_(l_int)]; l_int shmid; char shmid_r_[PADR_(l_int)];
757	char cmd_l_[PADL_(l_int)]; l_int cmd; char cmd_r_[PADR_(l_int)];
758	char buf_l_[PADL_(struct l_shmid_ds *)]; struct l_shmid_ds * buf; char buf_r_[PADR_(struct l_shmid_ds *)];
759};
760struct linux_shmat_args {
761	char shmid_l_[PADL_(l_int)]; l_int shmid; char shmid_r_[PADR_(l_int)];
762	char shmaddr_l_[PADL_(char *)]; char * shmaddr; char shmaddr_r_[PADR_(char *)];
763	char shmflg_l_[PADL_(l_int)]; l_int shmflg; char shmflg_r_[PADR_(l_int)];
764};
765struct linux_shmdt_args {
766	char shmaddr_l_[PADL_(char *)]; char * shmaddr; char shmaddr_r_[PADR_(char *)];
767};
768struct linux_socket_args {
769	char domain_l_[PADL_(l_int)]; l_int domain; char domain_r_[PADR_(l_int)];
770	char type_l_[PADL_(l_int)]; l_int type; char type_r_[PADR_(l_int)];
771	char protocol_l_[PADL_(l_int)]; l_int protocol; char protocol_r_[PADR_(l_int)];
772};
773struct linux_socketpair_args {
774	char domain_l_[PADL_(l_int)]; l_int domain; char domain_r_[PADR_(l_int)];
775	char type_l_[PADL_(l_int)]; l_int type; char type_r_[PADR_(l_int)];
776	char protocol_l_[PADL_(l_int)]; l_int protocol; char protocol_r_[PADR_(l_int)];
777	char rsv_l_[PADL_(l_uintptr_t)]; l_uintptr_t rsv; char rsv_r_[PADR_(l_uintptr_t)];
778};
779struct linux_bind_args {
780	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
781	char name_l_[PADL_(l_uintptr_t)]; l_uintptr_t name; char name_r_[PADR_(l_uintptr_t)];
782	char namelen_l_[PADL_(l_int)]; l_int namelen; char namelen_r_[PADR_(l_int)];
783};
784struct linux_listen_args {
785	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
786	char backlog_l_[PADL_(l_int)]; l_int backlog; char backlog_r_[PADR_(l_int)];
787};
788struct linux_accept_args {
789	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
790	char addr_l_[PADL_(l_uintptr_t)]; l_uintptr_t addr; char addr_r_[PADR_(l_uintptr_t)];
791	char namelen_l_[PADL_(l_uintptr_t)]; l_uintptr_t namelen; char namelen_r_[PADR_(l_uintptr_t)];
792};
793struct linux_connect_args {
794	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
795	char name_l_[PADL_(l_uintptr_t)]; l_uintptr_t name; char name_r_[PADR_(l_uintptr_t)];
796	char namelen_l_[PADL_(l_int)]; l_int namelen; char namelen_r_[PADR_(l_int)];
797};
798struct linux_getsockname_args {
799	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
800	char addr_l_[PADL_(l_uintptr_t)]; l_uintptr_t addr; char addr_r_[PADR_(l_uintptr_t)];
801	char namelen_l_[PADL_(l_uintptr_t)]; l_uintptr_t namelen; char namelen_r_[PADR_(l_uintptr_t)];
802};
803struct linux_getpeername_args {
804	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
805	char addr_l_[PADL_(l_uintptr_t)]; l_uintptr_t addr; char addr_r_[PADR_(l_uintptr_t)];
806	char namelen_l_[PADL_(l_uintptr_t)]; l_uintptr_t namelen; char namelen_r_[PADR_(l_uintptr_t)];
807};
808struct linux_sendto_args {
809	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
810	char msg_l_[PADL_(l_uintptr_t)]; l_uintptr_t msg; char msg_r_[PADR_(l_uintptr_t)];
811	char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)];
812	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
813	char to_l_[PADL_(l_uintptr_t)]; l_uintptr_t to; char to_r_[PADR_(l_uintptr_t)];
814	char tolen_l_[PADL_(l_int)]; l_int tolen; char tolen_r_[PADR_(l_int)];
815};
816struct linux_recvfrom_args {
817	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
818	char buf_l_[PADL_(l_uintptr_t)]; l_uintptr_t buf; char buf_r_[PADR_(l_uintptr_t)];
819	char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)];
820	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
821	char from_l_[PADL_(l_uintptr_t)]; l_uintptr_t from; char from_r_[PADR_(l_uintptr_t)];
822	char fromlen_l_[PADL_(l_uintptr_t)]; l_uintptr_t fromlen; char fromlen_r_[PADR_(l_uintptr_t)];
823};
824struct linux_setsockopt_args {
825	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
826	char level_l_[PADL_(l_int)]; l_int level; char level_r_[PADR_(l_int)];
827	char optname_l_[PADL_(l_int)]; l_int optname; char optname_r_[PADR_(l_int)];
828	char optval_l_[PADL_(l_uintptr_t)]; l_uintptr_t optval; char optval_r_[PADR_(l_uintptr_t)];
829	char optlen_l_[PADL_(l_int)]; l_int optlen; char optlen_r_[PADR_(l_int)];
830};
831struct linux_getsockopt_args {
832	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
833	char level_l_[PADL_(l_int)]; l_int level; char level_r_[PADR_(l_int)];
834	char optname_l_[PADL_(l_int)]; l_int optname; char optname_r_[PADR_(l_int)];
835	char optval_l_[PADL_(l_uintptr_t)]; l_uintptr_t optval; char optval_r_[PADR_(l_uintptr_t)];
836	char optlen_l_[PADL_(l_uintptr_t)]; l_uintptr_t optlen; char optlen_r_[PADR_(l_uintptr_t)];
837};
838struct linux_shutdown_args {
839	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
840	char how_l_[PADL_(l_int)]; l_int how; char how_r_[PADR_(l_int)];
841};
842struct linux_sendmsg_args {
843	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
844	char msg_l_[PADL_(l_uintptr_t)]; l_uintptr_t msg; char msg_r_[PADR_(l_uintptr_t)];
845	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
846};
847struct linux_recvmsg_args {
848	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
849	char msg_l_[PADL_(l_uintptr_t)]; l_uintptr_t msg; char msg_r_[PADR_(l_uintptr_t)];
850	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
851};
852struct linux_brk_args {
853	char dsend_l_[PADL_(l_ulong)]; l_ulong dsend; char dsend_r_[PADR_(l_ulong)];
854};
855struct linux_mremap_args {
856	char addr_l_[PADL_(l_ulong)]; l_ulong addr; char addr_r_[PADR_(l_ulong)];
857	char old_len_l_[PADL_(l_ulong)]; l_ulong old_len; char old_len_r_[PADR_(l_ulong)];
858	char new_len_l_[PADL_(l_ulong)]; l_ulong new_len; char new_len_r_[PADR_(l_ulong)];
859	char flags_l_[PADL_(l_ulong)]; l_ulong flags; char flags_r_[PADR_(l_ulong)];
860	char new_addr_l_[PADL_(l_ulong)]; l_ulong new_addr; char new_addr_r_[PADR_(l_ulong)];
861};
862struct linux_add_key_args {
863	syscallarg_t dummy;
864};
865struct linux_request_key_args {
866	syscallarg_t dummy;
867};
868struct linux_keyctl_args {
869	syscallarg_t dummy;
870};
871struct linux_clone_args {
872	char flags_l_[PADL_(l_ulong)]; l_ulong flags; char flags_r_[PADR_(l_ulong)];
873	char stack_l_[PADL_(l_ulong)]; l_ulong stack; char stack_r_[PADR_(l_ulong)];
874	char parent_tidptr_l_[PADL_(l_int *)]; l_int * parent_tidptr; char parent_tidptr_r_[PADR_(l_int *)];
875	char tls_l_[PADL_(l_ulong)]; l_ulong tls; char tls_r_[PADR_(l_ulong)];
876	char child_tidptr_l_[PADL_(l_int *)]; l_int * child_tidptr; char child_tidptr_r_[PADR_(l_int *)];
877};
878struct linux_execve_args {
879	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
880	char argp_l_[PADL_(l_uintptr_t *)]; l_uintptr_t * argp; char argp_r_[PADR_(l_uintptr_t *)];
881	char envp_l_[PADL_(l_uintptr_t *)]; l_uintptr_t * envp; char envp_r_[PADR_(l_uintptr_t *)];
882};
883struct linux_mmap2_args {
884	char addr_l_[PADL_(l_ulong)]; l_ulong addr; char addr_r_[PADR_(l_ulong)];
885	char len_l_[PADL_(l_ulong)]; l_ulong len; char len_r_[PADR_(l_ulong)];
886	char prot_l_[PADL_(l_ulong)]; l_ulong prot; char prot_r_[PADR_(l_ulong)];
887	char flags_l_[PADL_(l_ulong)]; l_ulong flags; char flags_r_[PADR_(l_ulong)];
888	char fd_l_[PADL_(l_ulong)]; l_ulong fd; char fd_r_[PADR_(l_ulong)];
889	char pgoff_l_[PADL_(l_ulong)]; l_ulong pgoff; char pgoff_r_[PADR_(l_ulong)];
890};
891struct linux_fadvise64_args {
892	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
893	char offset_l_[PADL_(l_loff_t)]; l_loff_t offset; char offset_r_[PADR_(l_loff_t)];
894	char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)];
895	char advice_l_[PADL_(l_int)]; l_int advice; char advice_r_[PADR_(l_int)];
896};
897struct linux_swapoff_args {
898	syscallarg_t dummy;
899};
900struct linux_mprotect_args {
901	char addr_l_[PADL_(l_ulong)]; l_ulong addr; char addr_r_[PADR_(l_ulong)];
902	char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)];
903	char prot_l_[PADL_(l_ulong)]; l_ulong prot; char prot_r_[PADR_(l_ulong)];
904};
905struct linux_msync_args {
906	char addr_l_[PADL_(l_ulong)]; l_ulong addr; char addr_r_[PADR_(l_ulong)];
907	char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)];
908	char fl_l_[PADL_(l_int)]; l_int fl; char fl_r_[PADR_(l_int)];
909};
910struct linux_mincore_args {
911	char start_l_[PADL_(l_ulong)]; l_ulong start; char start_r_[PADR_(l_ulong)];
912	char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)];
913	char vec_l_[PADL_(u_char *)]; u_char * vec; char vec_r_[PADR_(u_char *)];
914};
915struct linux_madvise_args {
916	char addr_l_[PADL_(l_ulong)]; l_ulong addr; char addr_r_[PADR_(l_ulong)];
917	char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)];
918	char behav_l_[PADL_(l_int)]; l_int behav; char behav_r_[PADR_(l_int)];
919};
920struct linux_remap_file_pages_args {
921	syscallarg_t dummy;
922};
923struct linux_mbind_args {
924	syscallarg_t dummy;
925};
926struct linux_get_mempolicy_args {
927	syscallarg_t dummy;
928};
929struct linux_set_mempolicy_args {
930	syscallarg_t dummy;
931};
932struct linux_migrate_pages_args {
933	syscallarg_t dummy;
934};
935struct linux_move_pages_args {
936	syscallarg_t dummy;
937};
938struct linux_rt_tgsigqueueinfo_args {
939	char tgid_l_[PADL_(l_pid_t)]; l_pid_t tgid; char tgid_r_[PADR_(l_pid_t)];
940	char tid_l_[PADL_(l_pid_t)]; l_pid_t tid; char tid_r_[PADR_(l_pid_t)];
941	char sig_l_[PADL_(l_int)]; l_int sig; char sig_r_[PADR_(l_int)];
942	char uinfo_l_[PADL_(l_siginfo_t *)]; l_siginfo_t * uinfo; char uinfo_r_[PADR_(l_siginfo_t *)];
943};
944struct linux_perf_event_open_args {
945	syscallarg_t dummy;
946};
947struct linux_accept4_args {
948	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
949	char addr_l_[PADL_(l_uintptr_t)]; l_uintptr_t addr; char addr_r_[PADR_(l_uintptr_t)];
950	char namelen_l_[PADL_(l_uintptr_t)]; l_uintptr_t namelen; char namelen_r_[PADR_(l_uintptr_t)];
951	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
952};
953struct linux_recvmmsg_args {
954	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
955	char msg_l_[PADL_(struct l_mmsghdr *)]; struct l_mmsghdr * msg; char msg_r_[PADR_(struct l_mmsghdr *)];
956	char vlen_l_[PADL_(l_uint)]; l_uint vlen; char vlen_r_[PADR_(l_uint)];
957	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
958	char timeout_l_[PADL_(struct l_timespec *)]; struct l_timespec * timeout; char timeout_r_[PADR_(struct l_timespec *)];
959};
960struct linux_wait4_args {
961	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
962	char status_l_[PADL_(l_int *)]; l_int * status; char status_r_[PADR_(l_int *)];
963	char options_l_[PADL_(l_int)]; l_int options; char options_r_[PADR_(l_int)];
964	char rusage_l_[PADL_(struct rusage *)]; struct rusage * rusage; char rusage_r_[PADR_(struct rusage *)];
965};
966struct linux_prlimit64_args {
967	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
968	char resource_l_[PADL_(l_uint)]; l_uint resource; char resource_r_[PADR_(l_uint)];
969	char new_l_[PADL_(struct rlimit *)]; struct rlimit * new; char new_r_[PADR_(struct rlimit *)];
970	char old_l_[PADL_(struct rlimit *)]; struct rlimit * old; char old_r_[PADR_(struct rlimit *)];
971};
972struct linux_fanotify_init_args {
973	syscallarg_t dummy;
974};
975struct linux_fanotify_mark_args {
976	syscallarg_t dummy;
977};
978struct linux_name_to_handle_at_args {
979	char dirfd_l_[PADL_(l_int)]; l_int dirfd; char dirfd_r_[PADR_(l_int)];
980	char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)];
981	char handle_l_[PADL_(struct l_file_handle *)]; struct l_file_handle * handle; char handle_r_[PADR_(struct l_file_handle *)];
982	char mnt_id_l_[PADL_(l_int *)]; l_int * mnt_id; char mnt_id_r_[PADR_(l_int *)];
983	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
984};
985struct linux_open_by_handle_at_args {
986	char mountdirfd_l_[PADL_(l_int)]; l_int mountdirfd; char mountdirfd_r_[PADR_(l_int)];
987	char handle_l_[PADL_(struct l_file_handle *)]; struct l_file_handle * handle; char handle_r_[PADR_(struct l_file_handle *)];
988	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
989};
990struct linux_clock_adjtime_args {
991	syscallarg_t dummy;
992};
993struct linux_syncfs_args {
994	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
995};
996struct linux_setns_args {
997	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
998	char nstype_l_[PADL_(l_int)]; l_int nstype; char nstype_r_[PADR_(l_int)];
999};
1000struct linux_sendmmsg_args {
1001	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
1002	char msg_l_[PADL_(struct l_mmsghdr *)]; struct l_mmsghdr * msg; char msg_r_[PADR_(struct l_mmsghdr *)];
1003	char vlen_l_[PADL_(l_uint)]; l_uint vlen; char vlen_r_[PADR_(l_uint)];
1004	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
1005};
1006struct linux_process_vm_readv_args {
1007	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
1008	char lvec_l_[PADL_(const struct iovec *)]; const struct iovec * lvec; char lvec_r_[PADR_(const struct iovec *)];
1009	char liovcnt_l_[PADL_(l_ulong)]; l_ulong liovcnt; char liovcnt_r_[PADR_(l_ulong)];
1010	char rvec_l_[PADL_(const struct iovec *)]; const struct iovec * rvec; char rvec_r_[PADR_(const struct iovec *)];
1011	char riovcnt_l_[PADL_(l_ulong)]; l_ulong riovcnt; char riovcnt_r_[PADR_(l_ulong)];
1012	char flags_l_[PADL_(l_ulong)]; l_ulong flags; char flags_r_[PADR_(l_ulong)];
1013};
1014struct linux_process_vm_writev_args {
1015	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
1016	char lvec_l_[PADL_(const struct iovec *)]; const struct iovec * lvec; char lvec_r_[PADR_(const struct iovec *)];
1017	char liovcnt_l_[PADL_(l_ulong)]; l_ulong liovcnt; char liovcnt_r_[PADR_(l_ulong)];
1018	char rvec_l_[PADL_(const struct iovec *)]; const struct iovec * rvec; char rvec_r_[PADR_(const struct iovec *)];
1019	char riovcnt_l_[PADL_(l_ulong)]; l_ulong riovcnt; char riovcnt_r_[PADR_(l_ulong)];
1020	char flags_l_[PADL_(l_ulong)]; l_ulong flags; char flags_r_[PADR_(l_ulong)];
1021};
1022struct linux_kcmp_args {
1023	char pid1_l_[PADL_(l_pid_t)]; l_pid_t pid1; char pid1_r_[PADR_(l_pid_t)];
1024	char pid2_l_[PADL_(l_pid_t)]; l_pid_t pid2; char pid2_r_[PADR_(l_pid_t)];
1025	char type_l_[PADL_(l_int)]; l_int type; char type_r_[PADR_(l_int)];
1026	char idx1_l_[PADL_(l_ulong)]; l_ulong idx1; char idx1_r_[PADR_(l_ulong)];
1027	char idx_l_[PADL_(l_ulong)]; l_ulong idx; char idx_r_[PADR_(l_ulong)];
1028};
1029struct linux_finit_module_args {
1030	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
1031	char uargs_l_[PADL_(const char *)]; const char * uargs; char uargs_r_[PADR_(const char *)];
1032	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
1033};
1034struct linux_sched_setattr_args {
1035	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
1036	char attr_l_[PADL_(void *)]; void * attr; char attr_r_[PADR_(void *)];
1037	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
1038};
1039struct linux_sched_getattr_args {
1040	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
1041	char attr_l_[PADL_(void *)]; void * attr; char attr_r_[PADR_(void *)];
1042	char size_l_[PADL_(l_uint)]; l_uint size; char size_r_[PADR_(l_uint)];
1043	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
1044};
1045struct linux_renameat2_args {
1046	char olddfd_l_[PADL_(l_int)]; l_int olddfd; char olddfd_r_[PADR_(l_int)];
1047	char oldname_l_[PADL_(const char *)]; const char * oldname; char oldname_r_[PADR_(const char *)];
1048	char newdfd_l_[PADL_(l_int)]; l_int newdfd; char newdfd_r_[PADR_(l_int)];
1049	char newname_l_[PADL_(const char *)]; const char * newname; char newname_r_[PADR_(const char *)];
1050	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
1051};
1052struct linux_seccomp_args {
1053	char op_l_[PADL_(l_uint)]; l_uint op; char op_r_[PADR_(l_uint)];
1054	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
1055	char uargs_l_[PADL_(const char *)]; const char * uargs; char uargs_r_[PADR_(const char *)];
1056};
1057struct linux_getrandom_args {
1058	char buf_l_[PADL_(char *)]; char * buf; char buf_r_[PADR_(char *)];
1059	char count_l_[PADL_(l_size_t)]; l_size_t count; char count_r_[PADR_(l_size_t)];
1060	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
1061};
1062struct linux_memfd_create_args {
1063	char uname_ptr_l_[PADL_(const char *)]; const char * uname_ptr; char uname_ptr_r_[PADR_(const char *)];
1064	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
1065};
1066struct linux_bpf_args {
1067	char cmd_l_[PADL_(l_int)]; l_int cmd; char cmd_r_[PADR_(l_int)];
1068	char attr_l_[PADL_(void *)]; void * attr; char attr_r_[PADR_(void *)];
1069	char size_l_[PADL_(l_uint)]; l_uint size; char size_r_[PADR_(l_uint)];
1070};
1071struct linux_execveat_args {
1072	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
1073	char filename_l_[PADL_(const char *)]; const char * filename; char filename_r_[PADR_(const char *)];
1074	char argv_l_[PADL_(const char **)]; const char ** argv; char argv_r_[PADR_(const char **)];
1075	char envp_l_[PADL_(const char **)]; const char ** envp; char envp_r_[PADR_(const char **)];
1076	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
1077};
1078struct linux_userfaultfd_args {
1079	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
1080};
1081struct linux_membarrier_args {
1082	char cmd_l_[PADL_(l_int)]; l_int cmd; char cmd_r_[PADR_(l_int)];
1083	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
1084};
1085struct linux_mlock2_args {
1086	char start_l_[PADL_(l_ulong)]; l_ulong start; char start_r_[PADR_(l_ulong)];
1087	char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)];
1088	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
1089};
1090struct linux_copy_file_range_args {
1091	char fd_in_l_[PADL_(l_int)]; l_int fd_in; char fd_in_r_[PADR_(l_int)];
1092	char off_in_l_[PADL_(l_loff_t *)]; l_loff_t * off_in; char off_in_r_[PADR_(l_loff_t *)];
1093	char fd_out_l_[PADL_(l_int)]; l_int fd_out; char fd_out_r_[PADR_(l_int)];
1094	char off_out_l_[PADL_(l_loff_t *)]; l_loff_t * off_out; char off_out_r_[PADR_(l_loff_t *)];
1095	char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)];
1096	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
1097};
1098struct linux_preadv2_args {
1099	char fd_l_[PADL_(l_ulong)]; l_ulong fd; char fd_r_[PADR_(l_ulong)];
1100	char vec_l_[PADL_(const struct iovec *)]; const struct iovec * vec; char vec_r_[PADR_(const struct iovec *)];
1101	char vlen_l_[PADL_(l_ulong)]; l_ulong vlen; char vlen_r_[PADR_(l_ulong)];
1102	char pos_l_l_[PADL_(l_ulong)]; l_ulong pos_l; char pos_l_r_[PADR_(l_ulong)];
1103	char pos_h_l_[PADL_(l_ulong)]; l_ulong pos_h; char pos_h_r_[PADR_(l_ulong)];
1104	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
1105};
1106struct linux_pwritev2_args {
1107	char fd_l_[PADL_(l_ulong)]; l_ulong fd; char fd_r_[PADR_(l_ulong)];
1108	char vec_l_[PADL_(const struct iovec *)]; const struct iovec * vec; char vec_r_[PADR_(const struct iovec *)];
1109	char vlen_l_[PADL_(l_ulong)]; l_ulong vlen; char vlen_r_[PADR_(l_ulong)];
1110	char pos_l_l_[PADL_(l_ulong)]; l_ulong pos_l; char pos_l_r_[PADR_(l_ulong)];
1111	char pos_h_l_[PADL_(l_ulong)]; l_ulong pos_h; char pos_h_r_[PADR_(l_ulong)];
1112	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
1113};
1114struct linux_pkey_mprotect_args {
1115	char start_l_[PADL_(l_ulong)]; l_ulong start; char start_r_[PADR_(l_ulong)];
1116	char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)];
1117	char prot_l_[PADL_(l_ulong)]; l_ulong prot; char prot_r_[PADR_(l_ulong)];
1118	char pkey_l_[PADL_(l_int)]; l_int pkey; char pkey_r_[PADR_(l_int)];
1119};
1120struct linux_pkey_alloc_args {
1121	char flags_l_[PADL_(l_ulong)]; l_ulong flags; char flags_r_[PADR_(l_ulong)];
1122	char init_val_l_[PADL_(l_ulong)]; l_ulong init_val; char init_val_r_[PADR_(l_ulong)];
1123};
1124struct linux_pkey_free_args {
1125	char pkey_l_[PADL_(l_int)]; l_int pkey; char pkey_r_[PADR_(l_int)];
1126};
1127struct linux_statx_args {
1128	char dirfd_l_[PADL_(l_int)]; l_int dirfd; char dirfd_r_[PADR_(l_int)];
1129	char pathname_l_[PADL_(const char *)]; const char * pathname; char pathname_r_[PADR_(const char *)];
1130	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
1131	char mask_l_[PADL_(l_uint)]; l_uint mask; char mask_r_[PADR_(l_uint)];
1132	char statxbuf_l_[PADL_(void *)]; void * statxbuf; char statxbuf_r_[PADR_(void *)];
1133};
1134struct linux_io_pgetevents_args {
1135	syscallarg_t dummy;
1136};
1137struct linux_rseq_args {
1138	char rseq_l_[PADL_(struct linux_rseq *)]; struct linux_rseq * rseq; char rseq_r_[PADR_(struct linux_rseq *)];
1139	char rseq_len_l_[PADL_(uint32_t)]; uint32_t rseq_len; char rseq_len_r_[PADR_(uint32_t)];
1140	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
1141	char sig_l_[PADL_(uint32_t)]; uint32_t sig; char sig_r_[PADR_(uint32_t)];
1142};
1143struct linux_kexec_file_load_args {
1144	syscallarg_t dummy;
1145};
1146struct linux_pidfd_send_signal_args {
1147	char pidfd_l_[PADL_(l_int)]; l_int pidfd; char pidfd_r_[PADR_(l_int)];
1148	char sig_l_[PADL_(l_int)]; l_int sig; char sig_r_[PADR_(l_int)];
1149	char info_l_[PADL_(l_siginfo_t *)]; l_siginfo_t * info; char info_r_[PADR_(l_siginfo_t *)];
1150	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
1151};
1152struct linux_io_uring_setup_args {
1153	syscallarg_t dummy;
1154};
1155struct linux_io_uring_enter_args {
1156	syscallarg_t dummy;
1157};
1158struct linux_io_uring_register_args {
1159	syscallarg_t dummy;
1160};
1161struct linux_open_tree_args {
1162	syscallarg_t dummy;
1163};
1164struct linux_move_mount_args {
1165	syscallarg_t dummy;
1166};
1167struct linux_fsopen_args {
1168	syscallarg_t dummy;
1169};
1170struct linux_fsconfig_args {
1171	syscallarg_t dummy;
1172};
1173struct linux_fsmount_args {
1174	syscallarg_t dummy;
1175};
1176struct linux_fspick_args {
1177	syscallarg_t dummy;
1178};
1179struct linux_pidfd_open_args {
1180	syscallarg_t dummy;
1181};
1182struct linux_clone3_args {
1183	char uargs_l_[PADL_(struct l_user_clone_args *)]; struct l_user_clone_args * uargs; char uargs_r_[PADR_(struct l_user_clone_args *)];
1184	char usize_l_[PADL_(l_size_t)]; l_size_t usize; char usize_r_[PADR_(l_size_t)];
1185};
1186struct linux_close_range_args {
1187	char first_l_[PADL_(l_uint)]; l_uint first; char first_r_[PADR_(l_uint)];
1188	char last_l_[PADL_(l_uint)]; l_uint last; char last_r_[PADR_(l_uint)];
1189	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
1190};
1191struct linux_openat2_args {
1192	syscallarg_t dummy;
1193};
1194struct linux_pidfd_getfd_args {
1195	syscallarg_t dummy;
1196};
1197struct linux_faccessat2_args {
1198	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
1199	char filename_l_[PADL_(const char *)]; const char * filename; char filename_r_[PADR_(const char *)];
1200	char amode_l_[PADL_(l_int)]; l_int amode; char amode_r_[PADR_(l_int)];
1201	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
1202};
1203struct linux_process_madvise_args {
1204	syscallarg_t dummy;
1205};
1206struct linux_epoll_pwait2_args {
1207	char epfd_l_[PADL_(l_int)]; l_int epfd; char epfd_r_[PADR_(l_int)];
1208	char events_l_[PADL_(struct epoll_event *)]; struct epoll_event * events; char events_r_[PADR_(struct epoll_event *)];
1209	char maxevents_l_[PADL_(l_int)]; l_int maxevents; char maxevents_r_[PADR_(l_int)];
1210	char timeout_l_[PADL_(struct l_timespec *)]; struct l_timespec * timeout; char timeout_r_[PADR_(struct l_timespec *)];
1211	char mask_l_[PADL_(l_sigset_t *)]; l_sigset_t * mask; char mask_r_[PADR_(l_sigset_t *)];
1212	char sigsetsize_l_[PADL_(l_size_t)]; l_size_t sigsetsize; char sigsetsize_r_[PADR_(l_size_t)];
1213};
1214struct linux_mount_setattr_args {
1215	syscallarg_t dummy;
1216};
1217struct linux_quotactl_fd_args {
1218	syscallarg_t dummy;
1219};
1220struct linux_landlock_create_ruleset_args {
1221	syscallarg_t dummy;
1222};
1223struct linux_landlock_add_rule_args {
1224	syscallarg_t dummy;
1225};
1226struct linux_landlock_restrict_self_args {
1227	syscallarg_t dummy;
1228};
1229struct linux_memfd_secret_args {
1230	syscallarg_t dummy;
1231};
1232struct linux_process_mrelease_args {
1233	syscallarg_t dummy;
1234};
1235struct linux_futex_waitv_args {
1236	syscallarg_t dummy;
1237};
1238struct linux_set_mempolicy_home_node_args {
1239	syscallarg_t dummy;
1240};
1241struct linux_cachestat_args {
1242	syscallarg_t dummy;
1243};
1244struct linux_fchmodat2_args {
1245	syscallarg_t dummy;
1246};
1247int	linux_setxattr(struct thread *, struct linux_setxattr_args *);
1248int	linux_lsetxattr(struct thread *, struct linux_lsetxattr_args *);
1249int	linux_fsetxattr(struct thread *, struct linux_fsetxattr_args *);
1250int	linux_getxattr(struct thread *, struct linux_getxattr_args *);
1251int	linux_lgetxattr(struct thread *, struct linux_lgetxattr_args *);
1252int	linux_fgetxattr(struct thread *, struct linux_fgetxattr_args *);
1253int	linux_listxattr(struct thread *, struct linux_listxattr_args *);
1254int	linux_llistxattr(struct thread *, struct linux_llistxattr_args *);
1255int	linux_flistxattr(struct thread *, struct linux_flistxattr_args *);
1256int	linux_removexattr(struct thread *, struct linux_removexattr_args *);
1257int	linux_lremovexattr(struct thread *, struct linux_lremovexattr_args *);
1258int	linux_fremovexattr(struct thread *, struct linux_fremovexattr_args *);
1259int	linux_getcwd(struct thread *, struct linux_getcwd_args *);
1260int	linux_lookup_dcookie(struct thread *, struct linux_lookup_dcookie_args *);
1261int	linux_eventfd2(struct thread *, struct linux_eventfd2_args *);
1262int	linux_epoll_create1(struct thread *, struct linux_epoll_create1_args *);
1263int	linux_epoll_ctl(struct thread *, struct linux_epoll_ctl_args *);
1264int	linux_epoll_pwait(struct thread *, struct linux_epoll_pwait_args *);
1265int	linux_dup3(struct thread *, struct linux_dup3_args *);
1266int	linux_fcntl(struct thread *, struct linux_fcntl_args *);
1267int	linux_inotify_init1(struct thread *, struct linux_inotify_init1_args *);
1268int	linux_inotify_add_watch(struct thread *, struct linux_inotify_add_watch_args *);
1269int	linux_inotify_rm_watch(struct thread *, struct linux_inotify_rm_watch_args *);
1270int	linux_ioctl(struct thread *, struct linux_ioctl_args *);
1271int	linux_ioprio_set(struct thread *, struct linux_ioprio_set_args *);
1272int	linux_ioprio_get(struct thread *, struct linux_ioprio_get_args *);
1273int	linux_mknodat(struct thread *, struct linux_mknodat_args *);
1274int	linux_mkdirat(struct thread *, struct linux_mkdirat_args *);
1275int	linux_unlinkat(struct thread *, struct linux_unlinkat_args *);
1276int	linux_symlinkat(struct thread *, struct linux_symlinkat_args *);
1277int	linux_linkat(struct thread *, struct linux_linkat_args *);
1278int	linux_renameat(struct thread *, struct linux_renameat_args *);
1279int	linux_mount(struct thread *, struct linux_mount_args *);
1280int	linux_pivot_root(struct thread *, struct linux_pivot_root_args *);
1281int	linux_statfs(struct thread *, struct linux_statfs_args *);
1282int	linux_fstatfs(struct thread *, struct linux_fstatfs_args *);
1283int	linux_truncate(struct thread *, struct linux_truncate_args *);
1284int	linux_ftruncate(struct thread *, struct linux_ftruncate_args *);
1285int	linux_fallocate(struct thread *, struct linux_fallocate_args *);
1286int	linux_faccessat(struct thread *, struct linux_faccessat_args *);
1287int	linux_chdir(struct thread *, struct linux_chdir_args *);
1288int	linux_fchmodat(struct thread *, struct linux_fchmodat_args *);
1289int	linux_fchownat(struct thread *, struct linux_fchownat_args *);
1290int	linux_openat(struct thread *, struct linux_openat_args *);
1291int	linux_vhangup(struct thread *, struct linux_vhangup_args *);
1292int	linux_pipe2(struct thread *, struct linux_pipe2_args *);
1293int	linux_getdents64(struct thread *, struct linux_getdents64_args *);
1294int	linux_lseek(struct thread *, struct linux_lseek_args *);
1295int	linux_write(struct thread *, struct linux_write_args *);
1296int	linux_writev(struct thread *, struct linux_writev_args *);
1297int	linux_pread(struct thread *, struct linux_pread_args *);
1298int	linux_pwrite(struct thread *, struct linux_pwrite_args *);
1299int	linux_preadv(struct thread *, struct linux_preadv_args *);
1300int	linux_pwritev(struct thread *, struct linux_pwritev_args *);
1301int	linux_sendfile(struct thread *, struct linux_sendfile_args *);
1302int	linux_pselect6(struct thread *, struct linux_pselect6_args *);
1303int	linux_ppoll(struct thread *, struct linux_ppoll_args *);
1304int	linux_signalfd4(struct thread *, struct linux_signalfd4_args *);
1305int	linux_vmsplice(struct thread *, struct linux_vmsplice_args *);
1306int	linux_splice(struct thread *, struct linux_splice_args *);
1307int	linux_tee(struct thread *, struct linux_tee_args *);
1308int	linux_readlinkat(struct thread *, struct linux_readlinkat_args *);
1309int	linux_newfstatat(struct thread *, struct linux_newfstatat_args *);
1310int	linux_newfstat(struct thread *, struct linux_newfstat_args *);
1311int	linux_fdatasync(struct thread *, struct linux_fdatasync_args *);
1312int	linux_sync_file_range(struct thread *, struct linux_sync_file_range_args *);
1313int	linux_timerfd_create(struct thread *, struct linux_timerfd_create_args *);
1314int	linux_timerfd_settime(struct thread *, struct linux_timerfd_settime_args *);
1315int	linux_timerfd_gettime(struct thread *, struct linux_timerfd_gettime_args *);
1316int	linux_utimensat(struct thread *, struct linux_utimensat_args *);
1317int	linux_capget(struct thread *, struct linux_capget_args *);
1318int	linux_capset(struct thread *, struct linux_capset_args *);
1319int	linux_personality(struct thread *, struct linux_personality_args *);
1320int	linux_exit(struct thread *, struct linux_exit_args *);
1321int	linux_exit_group(struct thread *, struct linux_exit_group_args *);
1322int	linux_waitid(struct thread *, struct linux_waitid_args *);
1323int	linux_set_tid_address(struct thread *, struct linux_set_tid_address_args *);
1324int	linux_unshare(struct thread *, struct linux_unshare_args *);
1325int	linux_sys_futex(struct thread *, struct linux_sys_futex_args *);
1326int	linux_set_robust_list(struct thread *, struct linux_set_robust_list_args *);
1327int	linux_get_robust_list(struct thread *, struct linux_get_robust_list_args *);
1328int	linux_nanosleep(struct thread *, struct linux_nanosleep_args *);
1329int	linux_getitimer(struct thread *, struct linux_getitimer_args *);
1330int	linux_setitimer(struct thread *, struct linux_setitimer_args *);
1331int	linux_kexec_load(struct thread *, struct linux_kexec_load_args *);
1332int	linux_init_module(struct thread *, struct linux_init_module_args *);
1333int	linux_delete_module(struct thread *, struct linux_delete_module_args *);
1334int	linux_timer_create(struct thread *, struct linux_timer_create_args *);
1335int	linux_timer_gettime(struct thread *, struct linux_timer_gettime_args *);
1336int	linux_timer_getoverrun(struct thread *, struct linux_timer_getoverrun_args *);
1337int	linux_timer_settime(struct thread *, struct linux_timer_settime_args *);
1338int	linux_timer_delete(struct thread *, struct linux_timer_delete_args *);
1339int	linux_clock_settime(struct thread *, struct linux_clock_settime_args *);
1340int	linux_clock_gettime(struct thread *, struct linux_clock_gettime_args *);
1341int	linux_clock_getres(struct thread *, struct linux_clock_getres_args *);
1342int	linux_clock_nanosleep(struct thread *, struct linux_clock_nanosleep_args *);
1343int	linux_syslog(struct thread *, struct linux_syslog_args *);
1344int	linux_ptrace(struct thread *, struct linux_ptrace_args *);
1345int	linux_sched_setparam(struct thread *, struct linux_sched_setparam_args *);
1346int	linux_sched_setscheduler(struct thread *, struct linux_sched_setscheduler_args *);
1347int	linux_sched_getscheduler(struct thread *, struct linux_sched_getscheduler_args *);
1348int	linux_sched_getparam(struct thread *, struct linux_sched_getparam_args *);
1349int	linux_sched_setaffinity(struct thread *, struct linux_sched_setaffinity_args *);
1350int	linux_sched_getaffinity(struct thread *, struct linux_sched_getaffinity_args *);
1351int	linux_sched_get_priority_max(struct thread *, struct linux_sched_get_priority_max_args *);
1352int	linux_sched_get_priority_min(struct thread *, struct linux_sched_get_priority_min_args *);
1353int	linux_sched_rr_get_interval(struct thread *, struct linux_sched_rr_get_interval_args *);
1354int	linux_kill(struct thread *, struct linux_kill_args *);
1355int	linux_tkill(struct thread *, struct linux_tkill_args *);
1356int	linux_tgkill(struct thread *, struct linux_tgkill_args *);
1357int	linux_sigaltstack(struct thread *, struct linux_sigaltstack_args *);
1358int	linux_rt_sigsuspend(struct thread *, struct linux_rt_sigsuspend_args *);
1359int	linux_rt_sigaction(struct thread *, struct linux_rt_sigaction_args *);
1360int	linux_rt_sigprocmask(struct thread *, struct linux_rt_sigprocmask_args *);
1361int	linux_rt_sigpending(struct thread *, struct linux_rt_sigpending_args *);
1362int	linux_rt_sigtimedwait(struct thread *, struct linux_rt_sigtimedwait_args *);
1363int	linux_rt_sigqueueinfo(struct thread *, struct linux_rt_sigqueueinfo_args *);
1364int	linux_rt_sigreturn(struct thread *, struct linux_rt_sigreturn_args *);
1365int	linux_getpriority(struct thread *, struct linux_getpriority_args *);
1366int	linux_reboot(struct thread *, struct linux_reboot_args *);
1367int	linux_setfsuid(struct thread *, struct linux_setfsuid_args *);
1368int	linux_setfsgid(struct thread *, struct linux_setfsgid_args *);
1369int	linux_times(struct thread *, struct linux_times_args *);
1370int	linux_getsid(struct thread *, struct linux_getsid_args *);
1371int	linux_getgroups(struct thread *, struct linux_getgroups_args *);
1372int	linux_setgroups(struct thread *, struct linux_setgroups_args *);
1373int	linux_newuname(struct thread *, struct linux_newuname_args *);
1374int	linux_sethostname(struct thread *, struct linux_sethostname_args *);
1375int	linux_setdomainname(struct thread *, struct linux_setdomainname_args *);
1376int	linux_getrlimit(struct thread *, struct linux_getrlimit_args *);
1377int	linux_setrlimit(struct thread *, struct linux_setrlimit_args *);
1378int	linux_prctl(struct thread *, struct linux_prctl_args *);
1379int	linux_getcpu(struct thread *, struct linux_getcpu_args *);
1380int	linux_adjtimex(struct thread *, struct linux_adjtimex_args *);
1381int	linux_getpid(struct thread *, struct linux_getpid_args *);
1382int	linux_getppid(struct thread *, struct linux_getppid_args *);
1383int	linux_getuid(struct thread *, struct linux_getuid_args *);
1384int	linux_getgid(struct thread *, struct linux_getgid_args *);
1385int	linux_gettid(struct thread *, struct linux_gettid_args *);
1386int	linux_sysinfo(struct thread *, struct linux_sysinfo_args *);
1387int	linux_mq_open(struct thread *, struct linux_mq_open_args *);
1388int	linux_mq_unlink(struct thread *, struct linux_mq_unlink_args *);
1389int	linux_mq_timedsend(struct thread *, struct linux_mq_timedsend_args *);
1390int	linux_mq_timedreceive(struct thread *, struct linux_mq_timedreceive_args *);
1391int	linux_mq_notify(struct thread *, struct linux_mq_notify_args *);
1392int	linux_mq_getsetattr(struct thread *, struct linux_mq_getsetattr_args *);
1393int	linux_msgget(struct thread *, struct linux_msgget_args *);
1394int	linux_msgctl(struct thread *, struct linux_msgctl_args *);
1395int	linux_msgrcv(struct thread *, struct linux_msgrcv_args *);
1396int	linux_msgsnd(struct thread *, struct linux_msgsnd_args *);
1397int	linux_semget(struct thread *, struct linux_semget_args *);
1398int	linux_semctl(struct thread *, struct linux_semctl_args *);
1399int	linux_semtimedop(struct thread *, struct linux_semtimedop_args *);
1400int	linux_shmget(struct thread *, struct linux_shmget_args *);
1401int	linux_shmctl(struct thread *, struct linux_shmctl_args *);
1402int	linux_shmat(struct thread *, struct linux_shmat_args *);
1403int	linux_shmdt(struct thread *, struct linux_shmdt_args *);
1404int	linux_socket(struct thread *, struct linux_socket_args *);
1405int	linux_socketpair(struct thread *, struct linux_socketpair_args *);
1406int	linux_bind(struct thread *, struct linux_bind_args *);
1407int	linux_listen(struct thread *, struct linux_listen_args *);
1408int	linux_accept(struct thread *, struct linux_accept_args *);
1409int	linux_connect(struct thread *, struct linux_connect_args *);
1410int	linux_getsockname(struct thread *, struct linux_getsockname_args *);
1411int	linux_getpeername(struct thread *, struct linux_getpeername_args *);
1412int	linux_sendto(struct thread *, struct linux_sendto_args *);
1413int	linux_recvfrom(struct thread *, struct linux_recvfrom_args *);
1414int	linux_setsockopt(struct thread *, struct linux_setsockopt_args *);
1415int	linux_getsockopt(struct thread *, struct linux_getsockopt_args *);
1416int	linux_shutdown(struct thread *, struct linux_shutdown_args *);
1417int	linux_sendmsg(struct thread *, struct linux_sendmsg_args *);
1418int	linux_recvmsg(struct thread *, struct linux_recvmsg_args *);
1419int	linux_brk(struct thread *, struct linux_brk_args *);
1420int	linux_mremap(struct thread *, struct linux_mremap_args *);
1421int	linux_add_key(struct thread *, struct linux_add_key_args *);
1422int	linux_request_key(struct thread *, struct linux_request_key_args *);
1423int	linux_keyctl(struct thread *, struct linux_keyctl_args *);
1424int	linux_clone(struct thread *, struct linux_clone_args *);
1425int	linux_execve(struct thread *, struct linux_execve_args *);
1426int	linux_mmap2(struct thread *, struct linux_mmap2_args *);
1427int	linux_fadvise64(struct thread *, struct linux_fadvise64_args *);
1428int	linux_swapoff(struct thread *, struct linux_swapoff_args *);
1429int	linux_mprotect(struct thread *, struct linux_mprotect_args *);
1430int	linux_msync(struct thread *, struct linux_msync_args *);
1431int	linux_mincore(struct thread *, struct linux_mincore_args *);
1432int	linux_madvise(struct thread *, struct linux_madvise_args *);
1433int	linux_remap_file_pages(struct thread *, struct linux_remap_file_pages_args *);
1434int	linux_mbind(struct thread *, struct linux_mbind_args *);
1435int	linux_get_mempolicy(struct thread *, struct linux_get_mempolicy_args *);
1436int	linux_set_mempolicy(struct thread *, struct linux_set_mempolicy_args *);
1437int	linux_migrate_pages(struct thread *, struct linux_migrate_pages_args *);
1438int	linux_move_pages(struct thread *, struct linux_move_pages_args *);
1439int	linux_rt_tgsigqueueinfo(struct thread *, struct linux_rt_tgsigqueueinfo_args *);
1440int	linux_perf_event_open(struct thread *, struct linux_perf_event_open_args *);
1441int	linux_accept4(struct thread *, struct linux_accept4_args *);
1442int	linux_recvmmsg(struct thread *, struct linux_recvmmsg_args *);
1443int	linux_wait4(struct thread *, struct linux_wait4_args *);
1444int	linux_prlimit64(struct thread *, struct linux_prlimit64_args *);
1445int	linux_fanotify_init(struct thread *, struct linux_fanotify_init_args *);
1446int	linux_fanotify_mark(struct thread *, struct linux_fanotify_mark_args *);
1447int	linux_name_to_handle_at(struct thread *, struct linux_name_to_handle_at_args *);
1448int	linux_open_by_handle_at(struct thread *, struct linux_open_by_handle_at_args *);
1449int	linux_clock_adjtime(struct thread *, struct linux_clock_adjtime_args *);
1450int	linux_syncfs(struct thread *, struct linux_syncfs_args *);
1451int	linux_setns(struct thread *, struct linux_setns_args *);
1452int	linux_sendmmsg(struct thread *, struct linux_sendmmsg_args *);
1453int	linux_process_vm_readv(struct thread *, struct linux_process_vm_readv_args *);
1454int	linux_process_vm_writev(struct thread *, struct linux_process_vm_writev_args *);
1455int	linux_kcmp(struct thread *, struct linux_kcmp_args *);
1456int	linux_finit_module(struct thread *, struct linux_finit_module_args *);
1457int	linux_sched_setattr(struct thread *, struct linux_sched_setattr_args *);
1458int	linux_sched_getattr(struct thread *, struct linux_sched_getattr_args *);
1459int	linux_renameat2(struct thread *, struct linux_renameat2_args *);
1460int	linux_seccomp(struct thread *, struct linux_seccomp_args *);
1461int	linux_getrandom(struct thread *, struct linux_getrandom_args *);
1462int	linux_memfd_create(struct thread *, struct linux_memfd_create_args *);
1463int	linux_bpf(struct thread *, struct linux_bpf_args *);
1464int	linux_execveat(struct thread *, struct linux_execveat_args *);
1465int	linux_userfaultfd(struct thread *, struct linux_userfaultfd_args *);
1466int	linux_membarrier(struct thread *, struct linux_membarrier_args *);
1467int	linux_mlock2(struct thread *, struct linux_mlock2_args *);
1468int	linux_copy_file_range(struct thread *, struct linux_copy_file_range_args *);
1469int	linux_preadv2(struct thread *, struct linux_preadv2_args *);
1470int	linux_pwritev2(struct thread *, struct linux_pwritev2_args *);
1471int	linux_pkey_mprotect(struct thread *, struct linux_pkey_mprotect_args *);
1472int	linux_pkey_alloc(struct thread *, struct linux_pkey_alloc_args *);
1473int	linux_pkey_free(struct thread *, struct linux_pkey_free_args *);
1474int	linux_statx(struct thread *, struct linux_statx_args *);
1475int	linux_io_pgetevents(struct thread *, struct linux_io_pgetevents_args *);
1476int	linux_rseq(struct thread *, struct linux_rseq_args *);
1477int	linux_kexec_file_load(struct thread *, struct linux_kexec_file_load_args *);
1478int	linux_pidfd_send_signal(struct thread *, struct linux_pidfd_send_signal_args *);
1479int	linux_io_uring_setup(struct thread *, struct linux_io_uring_setup_args *);
1480int	linux_io_uring_enter(struct thread *, struct linux_io_uring_enter_args *);
1481int	linux_io_uring_register(struct thread *, struct linux_io_uring_register_args *);
1482int	linux_open_tree(struct thread *, struct linux_open_tree_args *);
1483int	linux_move_mount(struct thread *, struct linux_move_mount_args *);
1484int	linux_fsopen(struct thread *, struct linux_fsopen_args *);
1485int	linux_fsconfig(struct thread *, struct linux_fsconfig_args *);
1486int	linux_fsmount(struct thread *, struct linux_fsmount_args *);
1487int	linux_fspick(struct thread *, struct linux_fspick_args *);
1488int	linux_pidfd_open(struct thread *, struct linux_pidfd_open_args *);
1489int	linux_clone3(struct thread *, struct linux_clone3_args *);
1490int	linux_close_range(struct thread *, struct linux_close_range_args *);
1491int	linux_openat2(struct thread *, struct linux_openat2_args *);
1492int	linux_pidfd_getfd(struct thread *, struct linux_pidfd_getfd_args *);
1493int	linux_faccessat2(struct thread *, struct linux_faccessat2_args *);
1494int	linux_process_madvise(struct thread *, struct linux_process_madvise_args *);
1495int	linux_epoll_pwait2(struct thread *, struct linux_epoll_pwait2_args *);
1496int	linux_mount_setattr(struct thread *, struct linux_mount_setattr_args *);
1497int	linux_quotactl_fd(struct thread *, struct linux_quotactl_fd_args *);
1498int	linux_landlock_create_ruleset(struct thread *, struct linux_landlock_create_ruleset_args *);
1499int	linux_landlock_add_rule(struct thread *, struct linux_landlock_add_rule_args *);
1500int	linux_landlock_restrict_self(struct thread *, struct linux_landlock_restrict_self_args *);
1501int	linux_memfd_secret(struct thread *, struct linux_memfd_secret_args *);
1502int	linux_process_mrelease(struct thread *, struct linux_process_mrelease_args *);
1503int	linux_futex_waitv(struct thread *, struct linux_futex_waitv_args *);
1504int	linux_set_mempolicy_home_node(struct thread *, struct linux_set_mempolicy_home_node_args *);
1505int	linux_cachestat(struct thread *, struct linux_cachestat_args *);
1506int	linux_fchmodat2(struct thread *, struct linux_fchmodat2_args *);
1507#define	LINUX_SYS_AUE_linux_setxattr	AUE_NULL
1508#define	LINUX_SYS_AUE_linux_lsetxattr	AUE_NULL
1509#define	LINUX_SYS_AUE_linux_fsetxattr	AUE_NULL
1510#define	LINUX_SYS_AUE_linux_getxattr	AUE_NULL
1511#define	LINUX_SYS_AUE_linux_lgetxattr	AUE_NULL
1512#define	LINUX_SYS_AUE_linux_fgetxattr	AUE_NULL
1513#define	LINUX_SYS_AUE_linux_listxattr	AUE_NULL
1514#define	LINUX_SYS_AUE_linux_llistxattr	AUE_NULL
1515#define	LINUX_SYS_AUE_linux_flistxattr	AUE_NULL
1516#define	LINUX_SYS_AUE_linux_removexattr	AUE_NULL
1517#define	LINUX_SYS_AUE_linux_lremovexattr	AUE_NULL
1518#define	LINUX_SYS_AUE_linux_fremovexattr	AUE_NULL
1519#define	LINUX_SYS_AUE_linux_getcwd	AUE_GETCWD
1520#define	LINUX_SYS_AUE_linux_lookup_dcookie	AUE_NULL
1521#define	LINUX_SYS_AUE_linux_eventfd2	AUE_NULL
1522#define	LINUX_SYS_AUE_linux_epoll_create1	AUE_NULL
1523#define	LINUX_SYS_AUE_linux_epoll_ctl	AUE_NULL
1524#define	LINUX_SYS_AUE_linux_epoll_pwait	AUE_NULL
1525#define	LINUX_SYS_AUE_linux_dup3	AUE_NULL
1526#define	LINUX_SYS_AUE_linux_fcntl	AUE_FCNTL
1527#define	LINUX_SYS_AUE_linux_inotify_init1	AUE_NULL
1528#define	LINUX_SYS_AUE_linux_inotify_add_watch	AUE_NULL
1529#define	LINUX_SYS_AUE_linux_inotify_rm_watch	AUE_NULL
1530#define	LINUX_SYS_AUE_linux_ioctl	AUE_IOCTL
1531#define	LINUX_SYS_AUE_linux_ioprio_set	AUE_SETPRIORITY
1532#define	LINUX_SYS_AUE_linux_ioprio_get	AUE_GETPRIORITY
1533#define	LINUX_SYS_AUE_linux_mknodat	AUE_MKNODAT
1534#define	LINUX_SYS_AUE_linux_mkdirat	AUE_MKDIRAT
1535#define	LINUX_SYS_AUE_linux_unlinkat	AUE_UNLINKAT
1536#define	LINUX_SYS_AUE_linux_symlinkat	AUE_SYMLINKAT
1537#define	LINUX_SYS_AUE_linux_linkat	AUE_LINKAT
1538#define	LINUX_SYS_AUE_linux_renameat	AUE_RENAMEAT
1539#define	LINUX_SYS_AUE_linux_mount	AUE_MOUNT
1540#define	LINUX_SYS_AUE_linux_pivot_root	AUE_PIVOT_ROOT
1541#define	LINUX_SYS_AUE_linux_statfs	AUE_STATFS
1542#define	LINUX_SYS_AUE_linux_fstatfs	AUE_FSTATFS
1543#define	LINUX_SYS_AUE_linux_truncate	AUE_TRUNCATE
1544#define	LINUX_SYS_AUE_linux_ftruncate	AUE_FTRUNCATE
1545#define	LINUX_SYS_AUE_linux_fallocate	AUE_NULL
1546#define	LINUX_SYS_AUE_linux_faccessat	AUE_FACCESSAT
1547#define	LINUX_SYS_AUE_linux_chdir	AUE_CHDIR
1548#define	LINUX_SYS_AUE_linux_fchmodat	AUE_FCHMODAT
1549#define	LINUX_SYS_AUE_linux_fchownat	AUE_FCHOWNAT
1550#define	LINUX_SYS_AUE_linux_openat	AUE_OPEN_RWTC
1551#define	LINUX_SYS_AUE_linux_vhangup	AUE_NULL
1552#define	LINUX_SYS_AUE_linux_pipe2	AUE_NULL
1553#define	LINUX_SYS_AUE_linux_getdents64	AUE_GETDIRENTRIES
1554#define	LINUX_SYS_AUE_linux_lseek	AUE_LSEEK
1555#define	LINUX_SYS_AUE_linux_write	AUE_NULL
1556#define	LINUX_SYS_AUE_linux_writev	AUE_WRITEV
1557#define	LINUX_SYS_AUE_linux_pread	AUE_PREAD
1558#define	LINUX_SYS_AUE_linux_pwrite	AUE_PWRITE
1559#define	LINUX_SYS_AUE_linux_preadv	AUE_NULL
1560#define	LINUX_SYS_AUE_linux_pwritev	AUE_NULL
1561#define	LINUX_SYS_AUE_linux_sendfile	AUE_SENDFILE
1562#define	LINUX_SYS_AUE_linux_pselect6	AUE_SELECT
1563#define	LINUX_SYS_AUE_linux_ppoll	AUE_POLL
1564#define	LINUX_SYS_AUE_linux_signalfd4	AUE_NULL
1565#define	LINUX_SYS_AUE_linux_vmsplice	AUE_NULL
1566#define	LINUX_SYS_AUE_linux_splice	AUE_NULL
1567#define	LINUX_SYS_AUE_linux_tee	AUE_NULL
1568#define	LINUX_SYS_AUE_linux_readlinkat	AUE_READLINKAT
1569#define	LINUX_SYS_AUE_linux_newfstatat	AUE_FSTATAT
1570#define	LINUX_SYS_AUE_linux_newfstat	AUE_FSTAT
1571#define	LINUX_SYS_AUE_linux_fdatasync	AUE_NULL
1572#define	LINUX_SYS_AUE_linux_sync_file_range	AUE_NULL
1573#define	LINUX_SYS_AUE_linux_timerfd_create	AUE_NULL
1574#define	LINUX_SYS_AUE_linux_timerfd_settime	AUE_NULL
1575#define	LINUX_SYS_AUE_linux_timerfd_gettime	AUE_NULL
1576#define	LINUX_SYS_AUE_linux_utimensat	AUE_FUTIMESAT
1577#define	LINUX_SYS_AUE_linux_capget	AUE_CAPGET
1578#define	LINUX_SYS_AUE_linux_capset	AUE_CAPSET
1579#define	LINUX_SYS_AUE_linux_personality	AUE_PERSONALITY
1580#define	LINUX_SYS_AUE_linux_exit	AUE_EXIT
1581#define	LINUX_SYS_AUE_linux_exit_group	AUE_EXIT
1582#define	LINUX_SYS_AUE_linux_waitid	AUE_WAIT6
1583#define	LINUX_SYS_AUE_linux_set_tid_address	AUE_NULL
1584#define	LINUX_SYS_AUE_linux_unshare	AUE_NULL
1585#define	LINUX_SYS_AUE_linux_sys_futex	AUE_NULL
1586#define	LINUX_SYS_AUE_linux_set_robust_list	AUE_NULL
1587#define	LINUX_SYS_AUE_linux_get_robust_list	AUE_NULL
1588#define	LINUX_SYS_AUE_linux_nanosleep	AUE_NULL
1589#define	LINUX_SYS_AUE_linux_getitimer	AUE_GETITIMER
1590#define	LINUX_SYS_AUE_linux_setitimer	AUE_SETITIMER
1591#define	LINUX_SYS_AUE_linux_kexec_load	AUE_NULL
1592#define	LINUX_SYS_AUE_linux_init_module	AUE_NULL
1593#define	LINUX_SYS_AUE_linux_delete_module	AUE_NULL
1594#define	LINUX_SYS_AUE_linux_timer_create	AUE_NULL
1595#define	LINUX_SYS_AUE_linux_timer_gettime	AUE_NULL
1596#define	LINUX_SYS_AUE_linux_timer_getoverrun	AUE_NULL
1597#define	LINUX_SYS_AUE_linux_timer_settime	AUE_NULL
1598#define	LINUX_SYS_AUE_linux_timer_delete	AUE_NULL
1599#define	LINUX_SYS_AUE_linux_clock_settime	AUE_CLOCK_SETTIME
1600#define	LINUX_SYS_AUE_linux_clock_gettime	AUE_NULL
1601#define	LINUX_SYS_AUE_linux_clock_getres	AUE_NULL
1602#define	LINUX_SYS_AUE_linux_clock_nanosleep	AUE_NULL
1603#define	LINUX_SYS_AUE_linux_syslog	AUE_NULL
1604#define	LINUX_SYS_AUE_linux_ptrace	AUE_PTRACE
1605#define	LINUX_SYS_AUE_linux_sched_setparam	AUE_SCHED_SETPARAM
1606#define	LINUX_SYS_AUE_linux_sched_setscheduler	AUE_SCHED_SETSCHEDULER
1607#define	LINUX_SYS_AUE_linux_sched_getscheduler	AUE_SCHED_GETSCHEDULER
1608#define	LINUX_SYS_AUE_linux_sched_getparam	AUE_SCHED_GETPARAM
1609#define	LINUX_SYS_AUE_linux_sched_setaffinity	AUE_NULL
1610#define	LINUX_SYS_AUE_linux_sched_getaffinity	AUE_NULL
1611#define	LINUX_SYS_AUE_linux_sched_get_priority_max	AUE_SCHED_GET_PRIORITY_MAX
1612#define	LINUX_SYS_AUE_linux_sched_get_priority_min	AUE_SCHED_GET_PRIORITY_MIN
1613#define	LINUX_SYS_AUE_linux_sched_rr_get_interval	AUE_SCHED_RR_GET_INTERVAL
1614#define	LINUX_SYS_AUE_linux_kill	AUE_KILL
1615#define	LINUX_SYS_AUE_linux_tkill	AUE_NULL
1616#define	LINUX_SYS_AUE_linux_tgkill	AUE_NULL
1617#define	LINUX_SYS_AUE_linux_sigaltstack	AUE_NULL
1618#define	LINUX_SYS_AUE_linux_rt_sigsuspend	AUE_NULL
1619#define	LINUX_SYS_AUE_linux_rt_sigaction	AUE_NULL
1620#define	LINUX_SYS_AUE_linux_rt_sigprocmask	AUE_NULL
1621#define	LINUX_SYS_AUE_linux_rt_sigpending	AUE_NULL
1622#define	LINUX_SYS_AUE_linux_rt_sigtimedwait	AUE_NULL
1623#define	LINUX_SYS_AUE_linux_rt_sigqueueinfo	AUE_NULL
1624#define	LINUX_SYS_AUE_linux_rt_sigreturn	AUE_NULL
1625#define	LINUX_SYS_AUE_linux_getpriority	AUE_GETPRIORITY
1626#define	LINUX_SYS_AUE_linux_reboot	AUE_REBOOT
1627#define	LINUX_SYS_AUE_linux_setfsuid	AUE_SETFSUID
1628#define	LINUX_SYS_AUE_linux_setfsgid	AUE_SETFSGID
1629#define	LINUX_SYS_AUE_linux_times	AUE_NULL
1630#define	LINUX_SYS_AUE_linux_getsid	AUE_GETSID
1631#define	LINUX_SYS_AUE_linux_getgroups	AUE_GETGROUPS
1632#define	LINUX_SYS_AUE_linux_setgroups	AUE_SETGROUPS
1633#define	LINUX_SYS_AUE_linux_newuname	AUE_NULL
1634#define	LINUX_SYS_AUE_linux_sethostname	AUE_SYSCTL
1635#define	LINUX_SYS_AUE_linux_setdomainname	AUE_SYSCTL
1636#define	LINUX_SYS_AUE_linux_getrlimit	AUE_GETRLIMIT
1637#define	LINUX_SYS_AUE_linux_setrlimit	AUE_SETRLIMIT
1638#define	LINUX_SYS_AUE_linux_prctl	AUE_PRCTL
1639#define	LINUX_SYS_AUE_linux_getcpu	AUE_NULL
1640#define	LINUX_SYS_AUE_linux_adjtimex	AUE_ADJTIME
1641#define	LINUX_SYS_AUE_linux_getpid	AUE_GETPID
1642#define	LINUX_SYS_AUE_linux_getppid	AUE_GETPPID
1643#define	LINUX_SYS_AUE_linux_getuid	AUE_GETUID
1644#define	LINUX_SYS_AUE_linux_getgid	AUE_GETGID
1645#define	LINUX_SYS_AUE_linux_gettid	AUE_NULL
1646#define	LINUX_SYS_AUE_linux_sysinfo	AUE_NULL
1647#define	LINUX_SYS_AUE_linux_mq_open	AUE_NULL
1648#define	LINUX_SYS_AUE_linux_mq_unlink	AUE_NULL
1649#define	LINUX_SYS_AUE_linux_mq_timedsend	AUE_NULL
1650#define	LINUX_SYS_AUE_linux_mq_timedreceive	AUE_NULL
1651#define	LINUX_SYS_AUE_linux_mq_notify	AUE_NULL
1652#define	LINUX_SYS_AUE_linux_mq_getsetattr	AUE_NULL
1653#define	LINUX_SYS_AUE_linux_msgget	AUE_NULL
1654#define	LINUX_SYS_AUE_linux_msgctl	AUE_NULL
1655#define	LINUX_SYS_AUE_linux_msgrcv	AUE_NULL
1656#define	LINUX_SYS_AUE_linux_msgsnd	AUE_NULL
1657#define	LINUX_SYS_AUE_linux_semget	AUE_NULL
1658#define	LINUX_SYS_AUE_linux_semctl	AUE_NULL
1659#define	LINUX_SYS_AUE_linux_semtimedop	AUE_NULL
1660#define	LINUX_SYS_AUE_linux_shmget	AUE_NULL
1661#define	LINUX_SYS_AUE_linux_shmctl	AUE_NULL
1662#define	LINUX_SYS_AUE_linux_shmat	AUE_NULL
1663#define	LINUX_SYS_AUE_linux_shmdt	AUE_NULL
1664#define	LINUX_SYS_AUE_linux_socket	AUE_SOCKET
1665#define	LINUX_SYS_AUE_linux_socketpair	AUE_SOCKETPAIR
1666#define	LINUX_SYS_AUE_linux_bind	AUE_BIND
1667#define	LINUX_SYS_AUE_linux_listen	AUE_LISTEN
1668#define	LINUX_SYS_AUE_linux_accept	AUE_ACCEPT
1669#define	LINUX_SYS_AUE_linux_connect	AUE_CONNECT
1670#define	LINUX_SYS_AUE_linux_getsockname	AUE_GETSOCKNAME
1671#define	LINUX_SYS_AUE_linux_getpeername	AUE_GETPEERNAME
1672#define	LINUX_SYS_AUE_linux_sendto	AUE_SENDTO
1673#define	LINUX_SYS_AUE_linux_recvfrom	AUE_RECVFROM
1674#define	LINUX_SYS_AUE_linux_setsockopt	AUE_SETSOCKOPT
1675#define	LINUX_SYS_AUE_linux_getsockopt	AUE_GETSOCKOPT
1676#define	LINUX_SYS_AUE_linux_shutdown	AUE_NULL
1677#define	LINUX_SYS_AUE_linux_sendmsg	AUE_SENDMSG
1678#define	LINUX_SYS_AUE_linux_recvmsg	AUE_RECVMSG
1679#define	LINUX_SYS_AUE_linux_brk	AUE_NULL
1680#define	LINUX_SYS_AUE_linux_mremap	AUE_NULL
1681#define	LINUX_SYS_AUE_linux_add_key	AUE_NULL
1682#define	LINUX_SYS_AUE_linux_request_key	AUE_NULL
1683#define	LINUX_SYS_AUE_linux_keyctl	AUE_NULL
1684#define	LINUX_SYS_AUE_linux_clone	AUE_RFORK
1685#define	LINUX_SYS_AUE_linux_execve	AUE_EXECVE
1686#define	LINUX_SYS_AUE_linux_mmap2	AUE_MMAP
1687#define	LINUX_SYS_AUE_linux_fadvise64	AUE_NULL
1688#define	LINUX_SYS_AUE_linux_swapoff	AUE_SWAPOFF
1689#define	LINUX_SYS_AUE_linux_mprotect	AUE_MPROTECT
1690#define	LINUX_SYS_AUE_linux_msync	AUE_MSYNC
1691#define	LINUX_SYS_AUE_linux_mincore	AUE_MINCORE
1692#define	LINUX_SYS_AUE_linux_madvise	AUE_MADVISE
1693#define	LINUX_SYS_AUE_linux_remap_file_pages	AUE_NULL
1694#define	LINUX_SYS_AUE_linux_mbind	AUE_NULL
1695#define	LINUX_SYS_AUE_linux_get_mempolicy	AUE_NULL
1696#define	LINUX_SYS_AUE_linux_set_mempolicy	AUE_NULL
1697#define	LINUX_SYS_AUE_linux_migrate_pages	AUE_NULL
1698#define	LINUX_SYS_AUE_linux_move_pages	AUE_NULL
1699#define	LINUX_SYS_AUE_linux_rt_tgsigqueueinfo	AUE_NULL
1700#define	LINUX_SYS_AUE_linux_perf_event_open	AUE_NULL
1701#define	LINUX_SYS_AUE_linux_accept4	AUE_ACCEPT
1702#define	LINUX_SYS_AUE_linux_recvmmsg	AUE_NULL
1703#define	LINUX_SYS_AUE_linux_wait4	AUE_WAIT4
1704#define	LINUX_SYS_AUE_linux_prlimit64	AUE_NULL
1705#define	LINUX_SYS_AUE_linux_fanotify_init	AUE_NULL
1706#define	LINUX_SYS_AUE_linux_fanotify_mark	AUE_NULL
1707#define	LINUX_SYS_AUE_linux_name_to_handle_at	AUE_NULL
1708#define	LINUX_SYS_AUE_linux_open_by_handle_at	AUE_NULL
1709#define	LINUX_SYS_AUE_linux_clock_adjtime	AUE_NULL
1710#define	LINUX_SYS_AUE_linux_syncfs	AUE_SYNC
1711#define	LINUX_SYS_AUE_linux_setns	AUE_NULL
1712#define	LINUX_SYS_AUE_linux_sendmmsg	AUE_NULL
1713#define	LINUX_SYS_AUE_linux_process_vm_readv	AUE_NULL
1714#define	LINUX_SYS_AUE_linux_process_vm_writev	AUE_NULL
1715#define	LINUX_SYS_AUE_linux_kcmp	AUE_NULL
1716#define	LINUX_SYS_AUE_linux_finit_module	AUE_NULL
1717#define	LINUX_SYS_AUE_linux_sched_setattr	AUE_NULL
1718#define	LINUX_SYS_AUE_linux_sched_getattr	AUE_NULL
1719#define	LINUX_SYS_AUE_linux_renameat2	AUE_NULL
1720#define	LINUX_SYS_AUE_linux_seccomp	AUE_NULL
1721#define	LINUX_SYS_AUE_linux_getrandom	AUE_NULL
1722#define	LINUX_SYS_AUE_linux_memfd_create	AUE_NULL
1723#define	LINUX_SYS_AUE_linux_bpf	AUE_NULL
1724#define	LINUX_SYS_AUE_linux_execveat	AUE_NULL
1725#define	LINUX_SYS_AUE_linux_userfaultfd	AUE_NULL
1726#define	LINUX_SYS_AUE_linux_membarrier	AUE_NULL
1727#define	LINUX_SYS_AUE_linux_mlock2	AUE_NULL
1728#define	LINUX_SYS_AUE_linux_copy_file_range	AUE_NULL
1729#define	LINUX_SYS_AUE_linux_preadv2	AUE_NULL
1730#define	LINUX_SYS_AUE_linux_pwritev2	AUE_NULL
1731#define	LINUX_SYS_AUE_linux_pkey_mprotect	AUE_NULL
1732#define	LINUX_SYS_AUE_linux_pkey_alloc	AUE_NULL
1733#define	LINUX_SYS_AUE_linux_pkey_free	AUE_NULL
1734#define	LINUX_SYS_AUE_linux_statx	AUE_NULL
1735#define	LINUX_SYS_AUE_linux_io_pgetevents	AUE_NULL
1736#define	LINUX_SYS_AUE_linux_rseq	AUE_NULL
1737#define	LINUX_SYS_AUE_linux_kexec_file_load	AUE_NULL
1738#define	LINUX_SYS_AUE_linux_pidfd_send_signal	AUE_NULL
1739#define	LINUX_SYS_AUE_linux_io_uring_setup	AUE_NULL
1740#define	LINUX_SYS_AUE_linux_io_uring_enter	AUE_NULL
1741#define	LINUX_SYS_AUE_linux_io_uring_register	AUE_NULL
1742#define	LINUX_SYS_AUE_linux_open_tree	AUE_NULL
1743#define	LINUX_SYS_AUE_linux_move_mount	AUE_NULL
1744#define	LINUX_SYS_AUE_linux_fsopen	AUE_NULL
1745#define	LINUX_SYS_AUE_linux_fsconfig	AUE_NULL
1746#define	LINUX_SYS_AUE_linux_fsmount	AUE_NULL
1747#define	LINUX_SYS_AUE_linux_fspick	AUE_NULL
1748#define	LINUX_SYS_AUE_linux_pidfd_open	AUE_NULL
1749#define	LINUX_SYS_AUE_linux_clone3	AUE_NULL
1750#define	LINUX_SYS_AUE_linux_close_range	AUE_CLOSERANGE
1751#define	LINUX_SYS_AUE_linux_openat2	AUE_NULL
1752#define	LINUX_SYS_AUE_linux_pidfd_getfd	AUE_NULL
1753#define	LINUX_SYS_AUE_linux_faccessat2	AUE_NULL
1754#define	LINUX_SYS_AUE_linux_process_madvise	AUE_NULL
1755#define	LINUX_SYS_AUE_linux_epoll_pwait2	AUE_NULL
1756#define	LINUX_SYS_AUE_linux_mount_setattr	AUE_NULL
1757#define	LINUX_SYS_AUE_linux_quotactl_fd	AUE_NULL
1758#define	LINUX_SYS_AUE_linux_landlock_create_ruleset	AUE_NULL
1759#define	LINUX_SYS_AUE_linux_landlock_add_rule	AUE_NULL
1760#define	LINUX_SYS_AUE_linux_landlock_restrict_self	AUE_NULL
1761#define	LINUX_SYS_AUE_linux_memfd_secret	AUE_NULL
1762#define	LINUX_SYS_AUE_linux_process_mrelease	AUE_NULL
1763#define	LINUX_SYS_AUE_linux_futex_waitv	AUE_NULL
1764#define	LINUX_SYS_AUE_linux_set_mempolicy_home_node	AUE_NULL
1765#define	LINUX_SYS_AUE_linux_cachestat	AUE_NULL
1766#define	LINUX_SYS_AUE_linux_fchmodat2	AUE_NULL
1767
1768#undef PAD_
1769#undef PADL_
1770#undef PADR_
1771
1772#endif /* !_LINUX_SYSPROTO_H_ */
1773