xref: /freebsd/sys/arm64/linux/linux_proto.h (revision eb98f7791040dbb072912c19d5ae3b629e3628d4)
15f2336efSEd Maste /*
25f2336efSEd Maste  * System call prototypes.
35f2336efSEd Maste  *
40e26cd44SEd Maste  * DO NOT EDIT-- this file is automatically @generated.
55f2336efSEd Maste  * $FreeBSD$
65f2336efSEd Maste  */
75f2336efSEd Maste 
85f2336efSEd Maste #ifndef _LINUX_SYSPROTO_H_
95f2336efSEd Maste #define	_LINUX_SYSPROTO_H_
105f2336efSEd Maste 
115f2336efSEd Maste #include <sys/signal.h>
125f2336efSEd Maste #include <sys/acl.h>
135f2336efSEd Maste #include <sys/cpuset.h>
145f2336efSEd Maste #include <sys/domainset.h>
155f2336efSEd Maste #include <sys/_ffcounter.h>
165f2336efSEd Maste #include <sys/_semaphore.h>
175f2336efSEd Maste #include <sys/ucontext.h>
185f2336efSEd Maste #include <sys/wait.h>
195f2336efSEd Maste 
205f2336efSEd Maste #include <bsm/audit_kevents.h>
215f2336efSEd Maste 
225f2336efSEd Maste struct proc;
235f2336efSEd Maste 
245f2336efSEd Maste struct thread;
255f2336efSEd Maste 
268601fca7SBrooks Davis #define	PAD_(t)	(sizeof(syscallarg_t) <= sizeof(t) ? \
278601fca7SBrooks Davis 		0 : sizeof(syscallarg_t) - sizeof(t))
285f2336efSEd Maste 
295f2336efSEd Maste #if BYTE_ORDER == LITTLE_ENDIAN
305f2336efSEd Maste #define	PADL_(t)	0
315f2336efSEd Maste #define	PADR_(t)	PAD_(t)
325f2336efSEd Maste #else
335f2336efSEd Maste #define	PADL_(t)	PAD_(t)
345f2336efSEd Maste #define	PADR_(t)	0
355f2336efSEd Maste #endif
365f2336efSEd Maste 
375f2336efSEd Maste #define	nosys	linux_nosys
385f2336efSEd Maste struct linux_setxattr_args {
39a39cdcd7SEdward Tomasz Napierala 	char path_l_[PADL_(const char *)]; const char * path; char path_r_[PADR_(const char *)];
40a39cdcd7SEdward Tomasz Napierala 	char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)];
41a39cdcd7SEdward Tomasz Napierala 	char value_l_[PADL_(const char *)]; const char * value; char value_r_[PADR_(const char *)];
42a39cdcd7SEdward Tomasz Napierala 	char size_l_[PADL_(l_size_t)]; l_size_t size; char size_r_[PADR_(l_size_t)];
43a39cdcd7SEdward Tomasz Napierala 	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
445f2336efSEd Maste };
455f2336efSEd Maste struct linux_lsetxattr_args {
46a39cdcd7SEdward Tomasz Napierala 	char path_l_[PADL_(const char *)]; const char * path; char path_r_[PADR_(const char *)];
47a39cdcd7SEdward Tomasz Napierala 	char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)];
48a39cdcd7SEdward Tomasz Napierala 	char value_l_[PADL_(const char *)]; const char * value; char value_r_[PADR_(const char *)];
49a39cdcd7SEdward Tomasz Napierala 	char size_l_[PADL_(l_size_t)]; l_size_t size; char size_r_[PADR_(l_size_t)];
50a39cdcd7SEdward Tomasz Napierala 	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
515f2336efSEd Maste };
525f2336efSEd Maste struct linux_fsetxattr_args {
53a39cdcd7SEdward Tomasz Napierala 	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
54a39cdcd7SEdward Tomasz Napierala 	char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)];
55a39cdcd7SEdward Tomasz Napierala 	char value_l_[PADL_(const char *)]; const char * value; char value_r_[PADR_(const char *)];
56a39cdcd7SEdward Tomasz Napierala 	char size_l_[PADL_(l_size_t)]; l_size_t size; char size_r_[PADR_(l_size_t)];
57a39cdcd7SEdward Tomasz Napierala 	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
585f2336efSEd Maste };
595f2336efSEd Maste struct linux_getxattr_args {
60a39cdcd7SEdward Tomasz Napierala 	char path_l_[PADL_(const char *)]; const char * path; char path_r_[PADR_(const char *)];
61a39cdcd7SEdward Tomasz Napierala 	char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)];
62a39cdcd7SEdward Tomasz Napierala 	char value_l_[PADL_(char *)]; char * value; char value_r_[PADR_(char *)];
63a39cdcd7SEdward Tomasz Napierala 	char size_l_[PADL_(l_size_t)]; l_size_t size; char size_r_[PADR_(l_size_t)];
645f2336efSEd Maste };
655f2336efSEd Maste struct linux_lgetxattr_args {
66a39cdcd7SEdward Tomasz Napierala 	char path_l_[PADL_(const char *)]; const char * path; char path_r_[PADR_(const char *)];
67a39cdcd7SEdward Tomasz Napierala 	char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)];
68a39cdcd7SEdward Tomasz Napierala 	char value_l_[PADL_(char *)]; char * value; char value_r_[PADR_(char *)];
69a39cdcd7SEdward Tomasz Napierala 	char size_l_[PADL_(l_size_t)]; l_size_t size; char size_r_[PADR_(l_size_t)];
705f2336efSEd Maste };
715f2336efSEd Maste struct linux_fgetxattr_args {
72a39cdcd7SEdward Tomasz Napierala 	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
73a39cdcd7SEdward Tomasz Napierala 	char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)];
74a39cdcd7SEdward Tomasz Napierala 	char value_l_[PADL_(char *)]; char * value; char value_r_[PADR_(char *)];
75a39cdcd7SEdward Tomasz Napierala 	char size_l_[PADL_(l_size_t)]; l_size_t size; char size_r_[PADR_(l_size_t)];
765f2336efSEd Maste };
775f2336efSEd Maste struct linux_listxattr_args {
78a39cdcd7SEdward Tomasz Napierala 	char path_l_[PADL_(const char *)]; const char * path; char path_r_[PADR_(const char *)];
79a39cdcd7SEdward Tomasz Napierala 	char list_l_[PADL_(const char *)]; const char * list; char list_r_[PADR_(const char *)];
80a39cdcd7SEdward Tomasz Napierala 	char size_l_[PADL_(l_size_t)]; l_size_t size; char size_r_[PADR_(l_size_t)];
815f2336efSEd Maste };
825f2336efSEd Maste struct linux_llistxattr_args {
83a39cdcd7SEdward Tomasz Napierala 	char path_l_[PADL_(const char *)]; const char * path; char path_r_[PADR_(const char *)];
84a39cdcd7SEdward Tomasz Napierala 	char list_l_[PADL_(const char *)]; const char * list; char list_r_[PADR_(const char *)];
85a39cdcd7SEdward Tomasz Napierala 	char size_l_[PADL_(l_size_t)]; l_size_t size; char size_r_[PADR_(l_size_t)];
865f2336efSEd Maste };
875f2336efSEd Maste struct linux_flistxattr_args {
88a39cdcd7SEdward Tomasz Napierala 	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
89a39cdcd7SEdward Tomasz Napierala 	char list_l_[PADL_(const char *)]; const char * list; char list_r_[PADR_(const char *)];
90a39cdcd7SEdward Tomasz Napierala 	char size_l_[PADL_(l_size_t)]; l_size_t size; char size_r_[PADR_(l_size_t)];
915f2336efSEd Maste };
925f2336efSEd Maste struct linux_removexattr_args {
93a39cdcd7SEdward Tomasz Napierala 	char path_l_[PADL_(const char *)]; const char * path; char path_r_[PADR_(const char *)];
94a39cdcd7SEdward Tomasz Napierala 	char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)];
955f2336efSEd Maste };
965f2336efSEd Maste struct linux_lremovexattr_args {
97a39cdcd7SEdward Tomasz Napierala 	char path_l_[PADL_(const char *)]; const char * path; char path_r_[PADR_(const char *)];
98a39cdcd7SEdward Tomasz Napierala 	char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)];
995f2336efSEd Maste };
1005f2336efSEd Maste struct linux_fremovexattr_args {
101a39cdcd7SEdward Tomasz Napierala 	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
102a39cdcd7SEdward Tomasz Napierala 	char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)];
1035f2336efSEd Maste };
1045f2336efSEd Maste struct linux_getcwd_args {
1055f2336efSEd Maste 	char buf_l_[PADL_(char *)]; char * buf; char buf_r_[PADR_(char *)];
1065f2336efSEd Maste 	char bufsize_l_[PADL_(l_ulong)]; l_ulong bufsize; char bufsize_r_[PADR_(l_ulong)];
1075f2336efSEd Maste };
1085f2336efSEd Maste struct linux_lookup_dcookie_args {
1098601fca7SBrooks Davis 	syscallarg_t dummy;
1105f2336efSEd Maste };
1115f2336efSEd Maste struct linux_eventfd2_args {
1125f2336efSEd Maste 	char initval_l_[PADL_(l_uint)]; l_uint initval; char initval_r_[PADR_(l_uint)];
1135f2336efSEd Maste 	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
1145f2336efSEd Maste };
1155f2336efSEd Maste struct linux_epoll_create1_args {
1165f2336efSEd Maste 	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
1175f2336efSEd Maste };
1185f2336efSEd Maste struct linux_epoll_ctl_args {
1195f2336efSEd Maste 	char epfd_l_[PADL_(l_int)]; l_int epfd; char epfd_r_[PADR_(l_int)];
1205f2336efSEd Maste 	char op_l_[PADL_(l_int)]; l_int op; char op_r_[PADR_(l_int)];
1215f2336efSEd Maste 	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
1225f2336efSEd Maste 	char event_l_[PADL_(struct epoll_event *)]; struct epoll_event * event; char event_r_[PADR_(struct epoll_event *)];
1235f2336efSEd Maste };
1245f2336efSEd Maste struct linux_epoll_pwait_args {
1255f2336efSEd Maste 	char epfd_l_[PADL_(l_int)]; l_int epfd; char epfd_r_[PADR_(l_int)];
1265f2336efSEd Maste 	char events_l_[PADL_(struct epoll_event *)]; struct epoll_event * events; char events_r_[PADR_(struct epoll_event *)];
1275f2336efSEd Maste 	char maxevents_l_[PADL_(l_int)]; l_int maxevents; char maxevents_r_[PADR_(l_int)];
1285f2336efSEd Maste 	char timeout_l_[PADL_(l_int)]; l_int timeout; char timeout_r_[PADR_(l_int)];
1295f2336efSEd Maste 	char mask_l_[PADL_(l_sigset_t *)]; l_sigset_t * mask; char mask_r_[PADR_(l_sigset_t *)];
1305f2336efSEd Maste 	char sigsetsize_l_[PADL_(l_size_t)]; l_size_t sigsetsize; char sigsetsize_r_[PADR_(l_size_t)];
1315f2336efSEd Maste };
1325f2336efSEd Maste struct linux_dup3_args {
1335f2336efSEd Maste 	char oldfd_l_[PADL_(l_int)]; l_int oldfd; char oldfd_r_[PADR_(l_int)];
1345f2336efSEd Maste 	char newfd_l_[PADL_(l_int)]; l_int newfd; char newfd_r_[PADR_(l_int)];
1355f2336efSEd Maste 	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
1365f2336efSEd Maste };
1375f2336efSEd Maste struct linux_fcntl_args {
1385f2336efSEd Maste 	char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)];
1395f2336efSEd Maste 	char cmd_l_[PADL_(l_uint)]; l_uint cmd; char cmd_r_[PADR_(l_uint)];
1405f2336efSEd Maste 	char arg_l_[PADL_(l_ulong)]; l_ulong arg; char arg_r_[PADR_(l_ulong)];
1415f2336efSEd Maste };
1425f2336efSEd Maste struct linux_inotify_init1_args {
1435f2336efSEd Maste 	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
1445f2336efSEd Maste };
1455f2336efSEd Maste struct linux_inotify_add_watch_args {
1468601fca7SBrooks Davis 	syscallarg_t dummy;
1475f2336efSEd Maste };
1485f2336efSEd Maste struct linux_inotify_rm_watch_args {
1498601fca7SBrooks Davis 	syscallarg_t dummy;
1505f2336efSEd Maste };
1515f2336efSEd Maste struct linux_ioctl_args {
1525f2336efSEd Maste 	char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)];
1535f2336efSEd Maste 	char cmd_l_[PADL_(l_uint)]; l_uint cmd; char cmd_r_[PADR_(l_uint)];
154a39cdcd7SEdward Tomasz Napierala 	char arg_l_[PADL_(l_ulong)]; l_ulong arg; char arg_r_[PADR_(l_ulong)];
1555f2336efSEd Maste };
1565f2336efSEd Maste struct linux_ioprio_set_args {
1578601fca7SBrooks Davis 	syscallarg_t dummy;
1585f2336efSEd Maste };
1595f2336efSEd Maste struct linux_ioprio_get_args {
1608601fca7SBrooks Davis 	syscallarg_t dummy;
1615f2336efSEd Maste };
1625f2336efSEd Maste struct linux_mknodat_args {
1635f2336efSEd Maste 	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
1645f2336efSEd Maste 	char filename_l_[PADL_(const char *)]; const char * filename; char filename_r_[PADR_(const char *)];
1655f2336efSEd Maste 	char mode_l_[PADL_(l_int)]; l_int mode; char mode_r_[PADR_(l_int)];
166cd0fca82SDmitry Chagin 	char dev_l_[PADL_(l_dev_t)]; l_dev_t dev; char dev_r_[PADR_(l_dev_t)];
1675f2336efSEd Maste };
1685f2336efSEd Maste struct linux_mkdirat_args {
1695f2336efSEd Maste 	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
1705f2336efSEd Maste 	char pathname_l_[PADL_(const char *)]; const char * pathname; char pathname_r_[PADR_(const char *)];
171a39cdcd7SEdward Tomasz Napierala 	char mode_l_[PADL_(l_mode_t)]; l_mode_t mode; char mode_r_[PADR_(l_mode_t)];
1725f2336efSEd Maste };
1735f2336efSEd Maste struct linux_unlinkat_args {
1745f2336efSEd Maste 	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
1755f2336efSEd Maste 	char pathname_l_[PADL_(const char *)]; const char * pathname; char pathname_r_[PADR_(const char *)];
1765f2336efSEd Maste 	char flag_l_[PADL_(l_int)]; l_int flag; char flag_r_[PADR_(l_int)];
1775f2336efSEd Maste };
1785f2336efSEd Maste struct linux_symlinkat_args {
1795f2336efSEd Maste 	char oldname_l_[PADL_(const char *)]; const char * oldname; char oldname_r_[PADR_(const char *)];
1805f2336efSEd Maste 	char newdfd_l_[PADL_(l_int)]; l_int newdfd; char newdfd_r_[PADR_(l_int)];
1815f2336efSEd Maste 	char newname_l_[PADL_(const char *)]; const char * newname; char newname_r_[PADR_(const char *)];
1825f2336efSEd Maste };
1835f2336efSEd Maste struct linux_linkat_args {
1845f2336efSEd Maste 	char olddfd_l_[PADL_(l_int)]; l_int olddfd; char olddfd_r_[PADR_(l_int)];
1855f2336efSEd Maste 	char oldname_l_[PADL_(const char *)]; const char * oldname; char oldname_r_[PADR_(const char *)];
1865f2336efSEd Maste 	char newdfd_l_[PADL_(l_int)]; l_int newdfd; char newdfd_r_[PADR_(l_int)];
1875f2336efSEd Maste 	char newname_l_[PADL_(const char *)]; const char * newname; char newname_r_[PADR_(const char *)];
1885f2336efSEd Maste 	char flag_l_[PADL_(l_int)]; l_int flag; char flag_r_[PADR_(l_int)];
1895f2336efSEd Maste };
1905f2336efSEd Maste struct linux_renameat_args {
1915f2336efSEd Maste 	char olddfd_l_[PADL_(l_int)]; l_int olddfd; char olddfd_r_[PADR_(l_int)];
1925f2336efSEd Maste 	char oldname_l_[PADL_(const char *)]; const char * oldname; char oldname_r_[PADR_(const char *)];
1935f2336efSEd Maste 	char newdfd_l_[PADL_(l_int)]; l_int newdfd; char newdfd_r_[PADR_(l_int)];
1945f2336efSEd Maste 	char newname_l_[PADL_(const char *)]; const char * newname; char newname_r_[PADR_(const char *)];
1955f2336efSEd Maste };
1965f2336efSEd Maste struct linux_mount_args {
1975f2336efSEd Maste 	char specialfile_l_[PADL_(char *)]; char * specialfile; char specialfile_r_[PADR_(char *)];
1985f2336efSEd Maste 	char dir_l_[PADL_(char *)]; char * dir; char dir_r_[PADR_(char *)];
1995f2336efSEd Maste 	char filesystemtype_l_[PADL_(char *)]; char * filesystemtype; char filesystemtype_r_[PADR_(char *)];
2005f2336efSEd Maste 	char rwflag_l_[PADL_(l_ulong)]; l_ulong rwflag; char rwflag_r_[PADR_(l_ulong)];
2015f2336efSEd Maste 	char data_l_[PADL_(void *)]; void * data; char data_r_[PADR_(void *)];
2025f2336efSEd Maste };
2035f2336efSEd Maste struct linux_pivot_root_args {
2048601fca7SBrooks Davis 	syscallarg_t dummy;
2055f2336efSEd Maste };
2065f2336efSEd Maste struct linux_statfs_args {
2075f2336efSEd Maste 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
2085f2336efSEd Maste 	char buf_l_[PADL_(struct l_statfs_buf *)]; struct l_statfs_buf * buf; char buf_r_[PADR_(struct l_statfs_buf *)];
2095f2336efSEd Maste };
2105f2336efSEd Maste struct linux_fstatfs_args {
2115f2336efSEd Maste 	char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)];
2125f2336efSEd Maste 	char buf_l_[PADL_(struct l_statfs_buf *)]; struct l_statfs_buf * buf; char buf_r_[PADR_(struct l_statfs_buf *)];
2135f2336efSEd Maste };
2145f2336efSEd Maste struct linux_truncate_args {
2155f2336efSEd Maste 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
2165f2336efSEd Maste 	char length_l_[PADL_(l_ulong)]; l_ulong length; char length_r_[PADR_(l_ulong)];
2175f2336efSEd Maste };
2185f2336efSEd Maste struct linux_ftruncate_args {
2195f2336efSEd Maste 	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
2205f2336efSEd Maste 	char length_l_[PADL_(l_long)]; l_long length; char length_r_[PADR_(l_long)];
2215f2336efSEd Maste };
2225f2336efSEd Maste struct linux_fallocate_args {
2235f2336efSEd Maste 	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
2245f2336efSEd Maste 	char mode_l_[PADL_(l_int)]; l_int mode; char mode_r_[PADR_(l_int)];
2255f2336efSEd Maste 	char offset_l_[PADL_(l_loff_t)]; l_loff_t offset; char offset_r_[PADR_(l_loff_t)];
2265f2336efSEd Maste 	char len_l_[PADL_(l_loff_t)]; l_loff_t len; char len_r_[PADR_(l_loff_t)];
2275f2336efSEd Maste };
2285f2336efSEd Maste struct linux_faccessat_args {
2295f2336efSEd Maste 	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
2305f2336efSEd Maste 	char filename_l_[PADL_(const char *)]; const char * filename; char filename_r_[PADR_(const char *)];
2315f2336efSEd Maste 	char amode_l_[PADL_(l_int)]; l_int amode; char amode_r_[PADR_(l_int)];
2325f2336efSEd Maste };
2335f2336efSEd Maste struct linux_chdir_args {
2345f2336efSEd Maste 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
2355f2336efSEd Maste };
2365f2336efSEd Maste struct linux_fchmodat_args {
2375f2336efSEd Maste 	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
2385f2336efSEd Maste 	char filename_l_[PADL_(const char *)]; const char * filename; char filename_r_[PADR_(const char *)];
2395f2336efSEd Maste 	char mode_l_[PADL_(l_mode_t)]; l_mode_t mode; char mode_r_[PADR_(l_mode_t)];
2405f2336efSEd Maste };
2415f2336efSEd Maste struct linux_fchownat_args {
2425f2336efSEd Maste 	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
2435f2336efSEd Maste 	char filename_l_[PADL_(const char *)]; const char * filename; char filename_r_[PADR_(const char *)];
2445f2336efSEd Maste 	char uid_l_[PADL_(l_uid_t)]; l_uid_t uid; char uid_r_[PADR_(l_uid_t)];
2455f2336efSEd Maste 	char gid_l_[PADL_(l_gid_t)]; l_gid_t gid; char gid_r_[PADR_(l_gid_t)];
2465f2336efSEd Maste 	char flag_l_[PADL_(l_int)]; l_int flag; char flag_r_[PADR_(l_int)];
2475f2336efSEd Maste };
2485f2336efSEd Maste struct linux_openat_args {
2495f2336efSEd Maste 	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
2505f2336efSEd Maste 	char filename_l_[PADL_(const char *)]; const char * filename; char filename_r_[PADR_(const char *)];
2515f2336efSEd Maste 	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
252a39cdcd7SEdward Tomasz Napierala 	char mode_l_[PADL_(l_mode_t)]; l_mode_t mode; char mode_r_[PADR_(l_mode_t)];
2535f2336efSEd Maste };
2545f2336efSEd Maste struct linux_vhangup_args {
2558601fca7SBrooks Davis 	syscallarg_t dummy;
2565f2336efSEd Maste };
2575f2336efSEd Maste struct linux_pipe2_args {
2585f2336efSEd Maste 	char pipefds_l_[PADL_(l_int *)]; l_int * pipefds; char pipefds_r_[PADR_(l_int *)];
2595f2336efSEd Maste 	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
2605f2336efSEd Maste };
2615f2336efSEd Maste struct linux_getdents64_args {
2625f2336efSEd Maste 	char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)];
2635f2336efSEd Maste 	char dirent_l_[PADL_(void *)]; void * dirent; char dirent_r_[PADR_(void *)];
2645f2336efSEd Maste 	char count_l_[PADL_(l_uint)]; l_uint count; char count_r_[PADR_(l_uint)];
2655f2336efSEd Maste };
2665f2336efSEd Maste struct linux_lseek_args {
2675f2336efSEd Maste 	char fdes_l_[PADL_(l_uint)]; l_uint fdes; char fdes_r_[PADR_(l_uint)];
2685f2336efSEd Maste 	char off_l_[PADL_(l_off_t)]; l_off_t off; char off_r_[PADR_(l_off_t)];
2695f2336efSEd Maste 	char whence_l_[PADL_(l_int)]; l_int whence; char whence_r_[PADR_(l_int)];
2705f2336efSEd Maste };
2715f2336efSEd Maste struct linux_pread_args {
2725f2336efSEd Maste 	char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)];
2735f2336efSEd Maste 	char buf_l_[PADL_(char *)]; char * buf; char buf_r_[PADR_(char *)];
2745f2336efSEd Maste 	char nbyte_l_[PADL_(l_size_t)]; l_size_t nbyte; char nbyte_r_[PADR_(l_size_t)];
2755f2336efSEd Maste 	char offset_l_[PADL_(l_loff_t)]; l_loff_t offset; char offset_r_[PADR_(l_loff_t)];
2765f2336efSEd Maste };
2775f2336efSEd Maste struct linux_pwrite_args {
2785f2336efSEd Maste 	char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)];
2795f2336efSEd Maste 	char buf_l_[PADL_(char *)]; char * buf; char buf_r_[PADR_(char *)];
2805f2336efSEd Maste 	char nbyte_l_[PADL_(l_size_t)]; l_size_t nbyte; char nbyte_r_[PADR_(l_size_t)];
2815f2336efSEd Maste 	char offset_l_[PADL_(l_loff_t)]; l_loff_t offset; char offset_r_[PADR_(l_loff_t)];
2825f2336efSEd Maste };
2835f2336efSEd Maste struct linux_preadv_args {
2845f2336efSEd Maste 	char fd_l_[PADL_(l_ulong)]; l_ulong fd; char fd_r_[PADR_(l_ulong)];
2855f2336efSEd Maste 	char vec_l_[PADL_(struct iovec *)]; struct iovec * vec; char vec_r_[PADR_(struct iovec *)];
2865f2336efSEd Maste 	char vlen_l_[PADL_(l_ulong)]; l_ulong vlen; char vlen_r_[PADR_(l_ulong)];
2875f2336efSEd Maste 	char pos_l_l_[PADL_(l_ulong)]; l_ulong pos_l; char pos_l_r_[PADR_(l_ulong)];
2885f2336efSEd Maste 	char pos_h_l_[PADL_(l_ulong)]; l_ulong pos_h; char pos_h_r_[PADR_(l_ulong)];
2895f2336efSEd Maste };
2905f2336efSEd Maste struct linux_pwritev_args {
2915f2336efSEd Maste 	char fd_l_[PADL_(l_ulong)]; l_ulong fd; char fd_r_[PADR_(l_ulong)];
2925f2336efSEd Maste 	char vec_l_[PADL_(struct iovec *)]; struct iovec * vec; char vec_r_[PADR_(struct iovec *)];
2935f2336efSEd Maste 	char vlen_l_[PADL_(l_ulong)]; l_ulong vlen; char vlen_r_[PADR_(l_ulong)];
2945f2336efSEd Maste 	char pos_l_l_[PADL_(l_ulong)]; l_ulong pos_l; char pos_l_r_[PADR_(l_ulong)];
2955f2336efSEd Maste 	char pos_h_l_[PADL_(l_ulong)]; l_ulong pos_h; char pos_h_r_[PADR_(l_ulong)];
2965f2336efSEd Maste };
2975f2336efSEd Maste struct linux_sendfile_args {
2985f2336efSEd Maste 	char out_l_[PADL_(l_int)]; l_int out; char out_r_[PADR_(l_int)];
2995f2336efSEd Maste 	char in_l_[PADL_(l_int)]; l_int in; char in_r_[PADR_(l_int)];
300a39cdcd7SEdward Tomasz Napierala 	char offset_l_[PADL_(l_off_t *)]; l_off_t * offset; char offset_r_[PADR_(l_off_t *)];
3015f2336efSEd Maste 	char count_l_[PADL_(l_size_t)]; l_size_t count; char count_r_[PADR_(l_size_t)];
3025f2336efSEd Maste };
3035f2336efSEd Maste struct linux_pselect6_args {
3045f2336efSEd Maste 	char nfds_l_[PADL_(l_int)]; l_int nfds; char nfds_r_[PADR_(l_int)];
3055f2336efSEd Maste 	char readfds_l_[PADL_(l_fd_set *)]; l_fd_set * readfds; char readfds_r_[PADR_(l_fd_set *)];
3065f2336efSEd Maste 	char writefds_l_[PADL_(l_fd_set *)]; l_fd_set * writefds; char writefds_r_[PADR_(l_fd_set *)];
3075f2336efSEd Maste 	char exceptfds_l_[PADL_(l_fd_set *)]; l_fd_set * exceptfds; char exceptfds_r_[PADR_(l_fd_set *)];
3085f2336efSEd Maste 	char tsp_l_[PADL_(struct l_timespec *)]; struct l_timespec * tsp; char tsp_r_[PADR_(struct l_timespec *)];
3095f2336efSEd Maste 	char sig_l_[PADL_(l_uintptr_t *)]; l_uintptr_t * sig; char sig_r_[PADR_(l_uintptr_t *)];
3105f2336efSEd Maste };
3115f2336efSEd Maste struct linux_ppoll_args {
3125f2336efSEd Maste 	char fds_l_[PADL_(struct pollfd *)]; struct pollfd * fds; char fds_r_[PADR_(struct pollfd *)];
313a39cdcd7SEdward Tomasz Napierala 	char nfds_l_[PADL_(l_uint)]; l_uint nfds; char nfds_r_[PADR_(l_uint)];
3145f2336efSEd Maste 	char tsp_l_[PADL_(struct l_timespec *)]; struct l_timespec * tsp; char tsp_r_[PADR_(struct l_timespec *)];
3155f2336efSEd Maste 	char sset_l_[PADL_(l_sigset_t *)]; l_sigset_t * sset; char sset_r_[PADR_(l_sigset_t *)];
3165f2336efSEd Maste 	char ssize_l_[PADL_(l_size_t)]; l_size_t ssize; char ssize_r_[PADR_(l_size_t)];
3175f2336efSEd Maste };
3185f2336efSEd Maste struct linux_signalfd4_args {
3198601fca7SBrooks Davis 	syscallarg_t dummy;
3205f2336efSEd Maste };
3215f2336efSEd Maste struct linux_vmsplice_args {
3228601fca7SBrooks Davis 	syscallarg_t dummy;
3235f2336efSEd Maste };
3245f2336efSEd Maste struct linux_splice_args {
3253e9a2142SEdward Tomasz Napierala 	char fd_in_l_[PADL_(int)]; int fd_in; char fd_in_r_[PADR_(int)];
3263e9a2142SEdward Tomasz Napierala 	char off_in_l_[PADL_(l_loff_t *)]; l_loff_t * off_in; char off_in_r_[PADR_(l_loff_t *)];
3273e9a2142SEdward Tomasz Napierala 	char fd_out_l_[PADL_(int)]; int fd_out; char fd_out_r_[PADR_(int)];
3283e9a2142SEdward Tomasz Napierala 	char off_out_l_[PADL_(l_loff_t *)]; l_loff_t * off_out; char off_out_r_[PADR_(l_loff_t *)];
3293e9a2142SEdward Tomasz Napierala 	char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)];
3303e9a2142SEdward Tomasz Napierala 	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
3315f2336efSEd Maste };
3325f2336efSEd Maste struct linux_tee_args {
3338601fca7SBrooks Davis 	syscallarg_t dummy;
3345f2336efSEd Maste };
3355f2336efSEd Maste struct linux_readlinkat_args {
3365f2336efSEd Maste 	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
3375f2336efSEd Maste 	char path_l_[PADL_(const char *)]; const char * path; char path_r_[PADR_(const char *)];
3385f2336efSEd Maste 	char buf_l_[PADL_(char *)]; char * buf; char buf_r_[PADR_(char *)];
3395f2336efSEd Maste 	char bufsiz_l_[PADL_(l_int)]; l_int bufsiz; char bufsiz_r_[PADR_(l_int)];
3405f2336efSEd Maste };
3415f2336efSEd Maste struct linux_newfstatat_args {
3425f2336efSEd Maste 	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
3435f2336efSEd Maste 	char pathname_l_[PADL_(char *)]; char * pathname; char pathname_r_[PADR_(char *)];
3445f2336efSEd Maste 	char statbuf_l_[PADL_(struct l_stat64 *)]; struct l_stat64 * statbuf; char statbuf_r_[PADR_(struct l_stat64 *)];
3455f2336efSEd Maste 	char flag_l_[PADL_(l_int)]; l_int flag; char flag_r_[PADR_(l_int)];
3465f2336efSEd Maste };
3475f2336efSEd Maste struct linux_newfstat_args {
3485f2336efSEd Maste 	char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)];
3495f2336efSEd Maste 	char buf_l_[PADL_(struct l_newstat *)]; struct l_newstat * buf; char buf_r_[PADR_(struct l_newstat *)];
3505f2336efSEd Maste };
3515f2336efSEd Maste struct linux_fdatasync_args {
3525f2336efSEd Maste 	char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)];
3535f2336efSEd Maste };
3545f2336efSEd Maste struct linux_sync_file_range_args {
3550cde2b32SEdward Tomasz Napierala 	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
3560cde2b32SEdward Tomasz Napierala 	char offset_l_[PADL_(l_loff_t)]; l_loff_t offset; char offset_r_[PADR_(l_loff_t)];
3570cde2b32SEdward Tomasz Napierala 	char nbytes_l_[PADL_(l_loff_t)]; l_loff_t nbytes; char nbytes_r_[PADR_(l_loff_t)];
358a39cdcd7SEdward Tomasz Napierala 	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
3595f2336efSEd Maste };
3605f2336efSEd Maste struct linux_timerfd_create_args {
3615f2336efSEd Maste 	char clockid_l_[PADL_(l_int)]; l_int clockid; char clockid_r_[PADR_(l_int)];
3625f2336efSEd Maste 	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
3635f2336efSEd Maste };
3645f2336efSEd Maste struct linux_timerfd_settime_args {
3655f2336efSEd Maste 	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
3665f2336efSEd Maste 	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
3675f2336efSEd Maste 	char new_value_l_[PADL_(const struct l_itimerspec *)]; const struct l_itimerspec * new_value; char new_value_r_[PADR_(const struct l_itimerspec *)];
3685f2336efSEd Maste 	char old_value_l_[PADL_(struct l_itimerspec *)]; struct l_itimerspec * old_value; char old_value_r_[PADR_(struct l_itimerspec *)];
3695f2336efSEd Maste };
3705f2336efSEd Maste struct linux_timerfd_gettime_args {
3715f2336efSEd Maste 	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
3725f2336efSEd Maste 	char old_value_l_[PADL_(struct l_itimerspec *)]; struct l_itimerspec * old_value; char old_value_r_[PADR_(struct l_itimerspec *)];
3735f2336efSEd Maste };
3745f2336efSEd Maste struct linux_utimensat_args {
3755f2336efSEd Maste 	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
3765f2336efSEd Maste 	char pathname_l_[PADL_(const char *)]; const char * pathname; char pathname_r_[PADR_(const char *)];
3775f2336efSEd Maste 	char times_l_[PADL_(const struct l_timespec *)]; const struct l_timespec * times; char times_r_[PADR_(const struct l_timespec *)];
3785f2336efSEd Maste 	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
3795f2336efSEd Maste };
3805f2336efSEd Maste struct linux_capget_args {
3815f2336efSEd Maste 	char hdrp_l_[PADL_(struct l_user_cap_header *)]; struct l_user_cap_header * hdrp; char hdrp_r_[PADR_(struct l_user_cap_header *)];
3825f2336efSEd Maste 	char datap_l_[PADL_(struct l_user_cap_data *)]; struct l_user_cap_data * datap; char datap_r_[PADR_(struct l_user_cap_data *)];
3835f2336efSEd Maste };
3845f2336efSEd Maste struct linux_capset_args {
3855f2336efSEd Maste 	char hdrp_l_[PADL_(struct l_user_cap_header *)]; struct l_user_cap_header * hdrp; char hdrp_r_[PADR_(struct l_user_cap_header *)];
3865f2336efSEd Maste 	char datap_l_[PADL_(struct l_user_cap_data *)]; struct l_user_cap_data * datap; char datap_r_[PADR_(struct l_user_cap_data *)];
3875f2336efSEd Maste };
3885f2336efSEd Maste struct linux_personality_args {
3895f2336efSEd Maste 	char per_l_[PADL_(l_uint)]; l_uint per; char per_r_[PADR_(l_uint)];
3905f2336efSEd Maste };
3915f2336efSEd Maste struct linux_exit_args {
392a39cdcd7SEdward Tomasz Napierala 	char rval_l_[PADL_(u_int)]; u_int rval; char rval_r_[PADR_(u_int)];
3935f2336efSEd Maste };
3945f2336efSEd Maste struct linux_exit_group_args {
395a39cdcd7SEdward Tomasz Napierala 	char error_code_l_[PADL_(l_int)]; l_int error_code; char error_code_r_[PADR_(l_int)];
3965f2336efSEd Maste };
3975f2336efSEd Maste struct linux_waitid_args {
3985f2336efSEd Maste 	char idtype_l_[PADL_(l_int)]; l_int idtype; char idtype_r_[PADR_(l_int)];
3995f2336efSEd Maste 	char id_l_[PADL_(l_pid_t)]; l_pid_t id; char id_r_[PADR_(l_pid_t)];
4005f2336efSEd Maste 	char info_l_[PADL_(l_siginfo_t *)]; l_siginfo_t * info; char info_r_[PADR_(l_siginfo_t *)];
4015f2336efSEd Maste 	char options_l_[PADL_(l_int)]; l_int options; char options_r_[PADR_(l_int)];
4025f2336efSEd Maste 	char rusage_l_[PADL_(struct rusage *)]; struct rusage * rusage; char rusage_r_[PADR_(struct rusage *)];
4035f2336efSEd Maste };
4045f2336efSEd Maste struct linux_set_tid_address_args {
405a39cdcd7SEdward Tomasz Napierala 	char tidptr_l_[PADL_(l_int *)]; l_int * tidptr; char tidptr_r_[PADR_(l_int *)];
4065f2336efSEd Maste };
4075f2336efSEd Maste struct linux_unshare_args {
4088601fca7SBrooks Davis 	syscallarg_t dummy;
4095f2336efSEd Maste };
4105f2336efSEd Maste struct linux_sys_futex_args {
411ee64d982SDmitry Chagin 	char uaddr_l_[PADL_(uint32_t *)]; uint32_t * uaddr; char uaddr_r_[PADR_(uint32_t *)];
412ee64d982SDmitry Chagin 	char op_l_[PADL_(l_int)]; l_int op; char op_r_[PADR_(l_int)];
413ee64d982SDmitry Chagin 	char val_l_[PADL_(uint32_t)]; uint32_t val; char val_r_[PADR_(uint32_t)];
4145f2336efSEd Maste 	char timeout_l_[PADL_(struct l_timespec *)]; struct l_timespec * timeout; char timeout_r_[PADR_(struct l_timespec *)];
415ee64d982SDmitry Chagin 	char uaddr2_l_[PADL_(uint32_t *)]; uint32_t * uaddr2; char uaddr2_r_[PADR_(uint32_t *)];
416ee64d982SDmitry Chagin 	char val3_l_[PADL_(uint32_t)]; uint32_t val3; char val3_r_[PADR_(uint32_t)];
4175f2336efSEd Maste };
4185f2336efSEd Maste struct linux_set_robust_list_args {
4195f2336efSEd Maste 	char head_l_[PADL_(struct linux_robust_list_head *)]; struct linux_robust_list_head * head; char head_r_[PADR_(struct linux_robust_list_head *)];
4205f2336efSEd Maste 	char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)];
4215f2336efSEd Maste };
4225f2336efSEd Maste struct linux_get_robust_list_args {
4235f2336efSEd Maste 	char pid_l_[PADL_(l_int)]; l_int pid; char pid_r_[PADR_(l_int)];
4245f2336efSEd Maste 	char head_l_[PADL_(struct linux_robust_list_head **)]; struct linux_robust_list_head ** head; char head_r_[PADR_(struct linux_robust_list_head **)];
4255f2336efSEd Maste 	char len_l_[PADL_(l_size_t *)]; l_size_t * len; char len_r_[PADR_(l_size_t *)];
4265f2336efSEd Maste };
4275f2336efSEd Maste struct linux_nanosleep_args {
4285f2336efSEd Maste 	char rqtp_l_[PADL_(const struct l_timespec *)]; const struct l_timespec * rqtp; char rqtp_r_[PADR_(const struct l_timespec *)];
4295f2336efSEd Maste 	char rmtp_l_[PADL_(struct l_timespec *)]; struct l_timespec * rmtp; char rmtp_r_[PADR_(struct l_timespec *)];
4305f2336efSEd Maste };
4315f2336efSEd Maste struct linux_getitimer_args {
4325f2336efSEd Maste 	char which_l_[PADL_(l_int)]; l_int which; char which_r_[PADR_(l_int)];
4335f2336efSEd Maste 	char itv_l_[PADL_(struct l_itimerval *)]; struct l_itimerval * itv; char itv_r_[PADR_(struct l_itimerval *)];
4345f2336efSEd Maste };
4355f2336efSEd Maste struct linux_setitimer_args {
4365f2336efSEd Maste 	char which_l_[PADL_(l_int)]; l_int which; char which_r_[PADR_(l_int)];
4375f2336efSEd Maste 	char itv_l_[PADL_(struct l_itimerval *)]; struct l_itimerval * itv; char itv_r_[PADR_(struct l_itimerval *)];
4385f2336efSEd Maste 	char oitv_l_[PADL_(struct l_itimerval *)]; struct l_itimerval * oitv; char oitv_r_[PADR_(struct l_itimerval *)];
4395f2336efSEd Maste };
4405f2336efSEd Maste struct linux_kexec_load_args {
4418601fca7SBrooks Davis 	syscallarg_t dummy;
4425f2336efSEd Maste };
4435f2336efSEd Maste struct linux_init_module_args {
4448601fca7SBrooks Davis 	syscallarg_t dummy;
4455f2336efSEd Maste };
4465f2336efSEd Maste struct linux_delete_module_args {
4478601fca7SBrooks Davis 	syscallarg_t dummy;
4485f2336efSEd Maste };
4495f2336efSEd Maste struct linux_timer_create_args {
4505f2336efSEd Maste 	char clock_id_l_[PADL_(clockid_t)]; clockid_t clock_id; char clock_id_r_[PADR_(clockid_t)];
4515f2336efSEd Maste 	char evp_l_[PADL_(struct sigevent *)]; struct sigevent * evp; char evp_r_[PADR_(struct sigevent *)];
4525f2336efSEd Maste 	char timerid_l_[PADL_(l_timer_t *)]; l_timer_t * timerid; char timerid_r_[PADR_(l_timer_t *)];
4535f2336efSEd Maste };
4545f2336efSEd Maste struct linux_timer_gettime_args {
4555f2336efSEd Maste 	char timerid_l_[PADL_(l_timer_t)]; l_timer_t timerid; char timerid_r_[PADR_(l_timer_t)];
4565f2336efSEd Maste 	char setting_l_[PADL_(struct itimerspec *)]; struct itimerspec * setting; char setting_r_[PADR_(struct itimerspec *)];
4575f2336efSEd Maste };
4585f2336efSEd Maste struct linux_timer_getoverrun_args {
4595f2336efSEd Maste 	char timerid_l_[PADL_(l_timer_t)]; l_timer_t timerid; char timerid_r_[PADR_(l_timer_t)];
4605f2336efSEd Maste };
4615f2336efSEd Maste struct linux_timer_settime_args {
4625f2336efSEd Maste 	char timerid_l_[PADL_(l_timer_t)]; l_timer_t timerid; char timerid_r_[PADR_(l_timer_t)];
4635f2336efSEd Maste 	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
4645f2336efSEd Maste 	char new_l_[PADL_(const struct itimerspec *)]; const struct itimerspec * new; char new_r_[PADR_(const struct itimerspec *)];
4655f2336efSEd Maste 	char old_l_[PADL_(struct itimerspec *)]; struct itimerspec * old; char old_r_[PADR_(struct itimerspec *)];
4665f2336efSEd Maste };
4675f2336efSEd Maste struct linux_timer_delete_args {
4685f2336efSEd Maste 	char timerid_l_[PADL_(l_timer_t)]; l_timer_t timerid; char timerid_r_[PADR_(l_timer_t)];
4695f2336efSEd Maste };
4705f2336efSEd Maste struct linux_clock_settime_args {
4715f2336efSEd Maste 	char which_l_[PADL_(clockid_t)]; clockid_t which; char which_r_[PADR_(clockid_t)];
4725f2336efSEd Maste 	char tp_l_[PADL_(struct l_timespec *)]; struct l_timespec * tp; char tp_r_[PADR_(struct l_timespec *)];
4735f2336efSEd Maste };
4745f2336efSEd Maste struct linux_clock_gettime_args {
4755f2336efSEd Maste 	char which_l_[PADL_(clockid_t)]; clockid_t which; char which_r_[PADR_(clockid_t)];
4765f2336efSEd Maste 	char tp_l_[PADL_(struct l_timespec *)]; struct l_timespec * tp; char tp_r_[PADR_(struct l_timespec *)];
4775f2336efSEd Maste };
4785f2336efSEd Maste struct linux_clock_getres_args {
4795f2336efSEd Maste 	char which_l_[PADL_(clockid_t)]; clockid_t which; char which_r_[PADR_(clockid_t)];
4805f2336efSEd Maste 	char tp_l_[PADL_(struct l_timespec *)]; struct l_timespec * tp; char tp_r_[PADR_(struct l_timespec *)];
4815f2336efSEd Maste };
4825f2336efSEd Maste struct linux_clock_nanosleep_args {
4835f2336efSEd Maste 	char which_l_[PADL_(clockid_t)]; clockid_t which; char which_r_[PADR_(clockid_t)];
484a39cdcd7SEdward Tomasz Napierala 	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
4855f2336efSEd Maste 	char rqtp_l_[PADL_(struct l_timespec *)]; struct l_timespec * rqtp; char rqtp_r_[PADR_(struct l_timespec *)];
4865f2336efSEd Maste 	char rmtp_l_[PADL_(struct l_timespec *)]; struct l_timespec * rmtp; char rmtp_r_[PADR_(struct l_timespec *)];
4875f2336efSEd Maste };
4885f2336efSEd Maste struct linux_syslog_args {
4895f2336efSEd Maste 	char type_l_[PADL_(l_int)]; l_int type; char type_r_[PADR_(l_int)];
4905f2336efSEd Maste 	char buf_l_[PADL_(char *)]; char * buf; char buf_r_[PADR_(char *)];
4915f2336efSEd Maste 	char len_l_[PADL_(l_int)]; l_int len; char len_r_[PADR_(l_int)];
4925f2336efSEd Maste };
4935f2336efSEd Maste struct linux_ptrace_args {
4945f2336efSEd Maste 	char req_l_[PADL_(l_long)]; l_long req; char req_r_[PADR_(l_long)];
4955f2336efSEd Maste 	char pid_l_[PADL_(l_long)]; l_long pid; char pid_r_[PADR_(l_long)];
4965f2336efSEd Maste 	char addr_l_[PADL_(l_ulong)]; l_ulong addr; char addr_r_[PADR_(l_ulong)];
4975f2336efSEd Maste 	char data_l_[PADL_(l_ulong)]; l_ulong data; char data_r_[PADR_(l_ulong)];
4985f2336efSEd Maste };
4995f2336efSEd Maste struct linux_sched_setparam_args {
5005f2336efSEd Maste 	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
5015f2336efSEd Maste 	char param_l_[PADL_(struct sched_param *)]; struct sched_param * param; char param_r_[PADR_(struct sched_param *)];
5025f2336efSEd Maste };
5035f2336efSEd Maste struct linux_sched_setscheduler_args {
5045f2336efSEd Maste 	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
5055f2336efSEd Maste 	char policy_l_[PADL_(l_int)]; l_int policy; char policy_r_[PADR_(l_int)];
5065f2336efSEd Maste 	char param_l_[PADL_(struct sched_param *)]; struct sched_param * param; char param_r_[PADR_(struct sched_param *)];
5075f2336efSEd Maste };
5085f2336efSEd Maste struct linux_sched_getscheduler_args {
5095f2336efSEd Maste 	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
5105f2336efSEd Maste };
5115f2336efSEd Maste struct linux_sched_getparam_args {
5125f2336efSEd Maste 	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
5135f2336efSEd Maste 	char param_l_[PADL_(struct sched_param *)]; struct sched_param * param; char param_r_[PADR_(struct sched_param *)];
5145f2336efSEd Maste };
5155f2336efSEd Maste struct linux_sched_setaffinity_args {
5165f2336efSEd Maste 	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
5175f2336efSEd Maste 	char len_l_[PADL_(l_uint)]; l_uint len; char len_r_[PADR_(l_uint)];
5185f2336efSEd Maste 	char user_mask_ptr_l_[PADL_(l_ulong *)]; l_ulong * user_mask_ptr; char user_mask_ptr_r_[PADR_(l_ulong *)];
5195f2336efSEd Maste };
5205f2336efSEd Maste struct linux_sched_getaffinity_args {
5215f2336efSEd Maste 	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
5225f2336efSEd Maste 	char len_l_[PADL_(l_uint)]; l_uint len; char len_r_[PADR_(l_uint)];
5235f2336efSEd Maste 	char user_mask_ptr_l_[PADL_(l_ulong *)]; l_ulong * user_mask_ptr; char user_mask_ptr_r_[PADR_(l_ulong *)];
5245f2336efSEd Maste };
5255f2336efSEd Maste struct linux_sched_get_priority_max_args {
5265f2336efSEd Maste 	char policy_l_[PADL_(l_int)]; l_int policy; char policy_r_[PADR_(l_int)];
5275f2336efSEd Maste };
5285f2336efSEd Maste struct linux_sched_get_priority_min_args {
5295f2336efSEd Maste 	char policy_l_[PADL_(l_int)]; l_int policy; char policy_r_[PADR_(l_int)];
5305f2336efSEd Maste };
5315f2336efSEd Maste struct linux_sched_rr_get_interval_args {
5325f2336efSEd Maste 	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
5335f2336efSEd Maste 	char interval_l_[PADL_(struct l_timespec *)]; struct l_timespec * interval; char interval_r_[PADR_(struct l_timespec *)];
5345f2336efSEd Maste };
5355f2336efSEd Maste struct linux_kill_args {
536a39cdcd7SEdward Tomasz Napierala 	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
5375f2336efSEd Maste 	char signum_l_[PADL_(l_int)]; l_int signum; char signum_r_[PADR_(l_int)];
5385f2336efSEd Maste };
5395f2336efSEd Maste struct linux_tkill_args {
540a39cdcd7SEdward Tomasz Napierala 	char tid_l_[PADL_(l_pid_t)]; l_pid_t tid; char tid_r_[PADR_(l_pid_t)];
5415f2336efSEd Maste 	char sig_l_[PADL_(l_int)]; l_int sig; char sig_r_[PADR_(l_int)];
5425f2336efSEd Maste };
5435f2336efSEd Maste struct linux_tgkill_args {
544a39cdcd7SEdward Tomasz Napierala 	char tgid_l_[PADL_(l_pid_t)]; l_pid_t tgid; char tgid_r_[PADR_(l_pid_t)];
545a39cdcd7SEdward Tomasz Napierala 	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
5465f2336efSEd Maste 	char sig_l_[PADL_(l_int)]; l_int sig; char sig_r_[PADR_(l_int)];
5475f2336efSEd Maste };
5485f2336efSEd Maste struct linux_sigaltstack_args {
5495f2336efSEd Maste 	char uss_l_[PADL_(l_stack_t *)]; l_stack_t * uss; char uss_r_[PADR_(l_stack_t *)];
5505f2336efSEd Maste 	char uoss_l_[PADL_(l_stack_t *)]; l_stack_t * uoss; char uoss_r_[PADR_(l_stack_t *)];
5515f2336efSEd Maste };
5525f2336efSEd Maste struct linux_rt_sigsuspend_args {
5535f2336efSEd Maste 	char newset_l_[PADL_(l_sigset_t *)]; l_sigset_t * newset; char newset_r_[PADR_(l_sigset_t *)];
5545f2336efSEd Maste 	char sigsetsize_l_[PADL_(l_size_t)]; l_size_t sigsetsize; char sigsetsize_r_[PADR_(l_size_t)];
5555f2336efSEd Maste };
5565f2336efSEd Maste struct linux_rt_sigaction_args {
5575f2336efSEd Maste 	char sig_l_[PADL_(l_int)]; l_int sig; char sig_r_[PADR_(l_int)];
5585f2336efSEd Maste 	char act_l_[PADL_(l_sigaction_t *)]; l_sigaction_t * act; char act_r_[PADR_(l_sigaction_t *)];
5595f2336efSEd Maste 	char oact_l_[PADL_(l_sigaction_t *)]; l_sigaction_t * oact; char oact_r_[PADR_(l_sigaction_t *)];
5605f2336efSEd Maste 	char sigsetsize_l_[PADL_(l_size_t)]; l_size_t sigsetsize; char sigsetsize_r_[PADR_(l_size_t)];
5615f2336efSEd Maste };
5625f2336efSEd Maste struct linux_rt_sigprocmask_args {
5635f2336efSEd Maste 	char how_l_[PADL_(l_int)]; l_int how; char how_r_[PADR_(l_int)];
5645f2336efSEd Maste 	char mask_l_[PADL_(l_sigset_t *)]; l_sigset_t * mask; char mask_r_[PADR_(l_sigset_t *)];
5655f2336efSEd Maste 	char omask_l_[PADL_(l_sigset_t *)]; l_sigset_t * omask; char omask_r_[PADR_(l_sigset_t *)];
5665f2336efSEd Maste 	char sigsetsize_l_[PADL_(l_size_t)]; l_size_t sigsetsize; char sigsetsize_r_[PADR_(l_size_t)];
5675f2336efSEd Maste };
5685f2336efSEd Maste struct linux_rt_sigpending_args {
5695f2336efSEd Maste 	char set_l_[PADL_(l_sigset_t *)]; l_sigset_t * set; char set_r_[PADR_(l_sigset_t *)];
5705f2336efSEd Maste 	char sigsetsize_l_[PADL_(l_size_t)]; l_size_t sigsetsize; char sigsetsize_r_[PADR_(l_size_t)];
5715f2336efSEd Maste };
5725f2336efSEd Maste struct linux_rt_sigtimedwait_args {
5735f2336efSEd Maste 	char mask_l_[PADL_(l_sigset_t *)]; l_sigset_t * mask; char mask_r_[PADR_(l_sigset_t *)];
5745f2336efSEd Maste 	char ptr_l_[PADL_(l_siginfo_t *)]; l_siginfo_t * ptr; char ptr_r_[PADR_(l_siginfo_t *)];
575e29ea22fSDmitry Chagin 	char timeout_l_[PADL_(struct l_timespec *)]; struct l_timespec * timeout; char timeout_r_[PADR_(struct l_timespec *)];
5765f2336efSEd Maste 	char sigsetsize_l_[PADL_(l_size_t)]; l_size_t sigsetsize; char sigsetsize_r_[PADR_(l_size_t)];
5775f2336efSEd Maste };
5785f2336efSEd Maste struct linux_rt_sigqueueinfo_args {
5795f2336efSEd Maste 	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
5805f2336efSEd Maste 	char sig_l_[PADL_(l_int)]; l_int sig; char sig_r_[PADR_(l_int)];
5815f2336efSEd Maste 	char info_l_[PADL_(l_siginfo_t *)]; l_siginfo_t * info; char info_r_[PADR_(l_siginfo_t *)];
5825f2336efSEd Maste };
5835f2336efSEd Maste struct linux_rt_sigreturn_args {
5848601fca7SBrooks Davis 	syscallarg_t dummy;
5855f2336efSEd Maste };
5865f2336efSEd Maste struct linux_getpriority_args {
5875f2336efSEd Maste 	char which_l_[PADL_(l_int)]; l_int which; char which_r_[PADR_(l_int)];
5885f2336efSEd Maste 	char who_l_[PADL_(l_int)]; l_int who; char who_r_[PADR_(l_int)];
5895f2336efSEd Maste };
5905f2336efSEd Maste struct linux_reboot_args {
5915f2336efSEd Maste 	char magic1_l_[PADL_(l_int)]; l_int magic1; char magic1_r_[PADR_(l_int)];
5925f2336efSEd Maste 	char magic2_l_[PADL_(l_int)]; l_int magic2; char magic2_r_[PADR_(l_int)];
5935f2336efSEd Maste 	char cmd_l_[PADL_(l_uint)]; l_uint cmd; char cmd_r_[PADR_(l_uint)];
5945f2336efSEd Maste 	char arg_l_[PADL_(void *)]; void * arg; char arg_r_[PADR_(void *)];
5955f2336efSEd Maste };
5965f2336efSEd Maste struct linux_setfsuid_args {
5975f2336efSEd Maste 	char uid_l_[PADL_(l_uid_t)]; l_uid_t uid; char uid_r_[PADR_(l_uid_t)];
5985f2336efSEd Maste };
5995f2336efSEd Maste struct linux_setfsgid_args {
6005f2336efSEd Maste 	char gid_l_[PADL_(l_gid_t)]; l_gid_t gid; char gid_r_[PADR_(l_gid_t)];
6015f2336efSEd Maste };
6025f2336efSEd Maste struct linux_times_args {
6035f2336efSEd Maste 	char buf_l_[PADL_(struct l_times_argv *)]; struct l_times_argv * buf; char buf_r_[PADR_(struct l_times_argv *)];
6045f2336efSEd Maste };
6055f2336efSEd Maste struct linux_getsid_args {
6065f2336efSEd Maste 	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
6075f2336efSEd Maste };
6085f2336efSEd Maste struct linux_getgroups_args {
6095f2336efSEd Maste 	char gidsetsize_l_[PADL_(l_int)]; l_int gidsetsize; char gidsetsize_r_[PADR_(l_int)];
6105f2336efSEd Maste 	char grouplist_l_[PADL_(l_gid_t *)]; l_gid_t * grouplist; char grouplist_r_[PADR_(l_gid_t *)];
6115f2336efSEd Maste };
6125f2336efSEd Maste struct linux_setgroups_args {
6135f2336efSEd Maste 	char gidsetsize_l_[PADL_(l_int)]; l_int gidsetsize; char gidsetsize_r_[PADR_(l_int)];
6145f2336efSEd Maste 	char grouplist_l_[PADL_(l_gid_t *)]; l_gid_t * grouplist; char grouplist_r_[PADR_(l_gid_t *)];
6155f2336efSEd Maste };
6165f2336efSEd Maste struct linux_newuname_args {
6175f2336efSEd Maste 	char buf_l_[PADL_(struct l_new_utsname *)]; struct l_new_utsname * buf; char buf_r_[PADR_(struct l_new_utsname *)];
6185f2336efSEd Maste };
6195f2336efSEd Maste struct linux_sethostname_args {
6205f2336efSEd Maste 	char hostname_l_[PADL_(char *)]; char * hostname; char hostname_r_[PADR_(char *)];
6215f2336efSEd Maste 	char len_l_[PADL_(l_uint)]; l_uint len; char len_r_[PADR_(l_uint)];
6225f2336efSEd Maste };
6235f2336efSEd Maste struct linux_setdomainname_args {
6245f2336efSEd Maste 	char name_l_[PADL_(char *)]; char * name; char name_r_[PADR_(char *)];
6255f2336efSEd Maste 	char len_l_[PADL_(l_int)]; l_int len; char len_r_[PADR_(l_int)];
6265f2336efSEd Maste };
6275f2336efSEd Maste struct linux_getrlimit_args {
6285f2336efSEd Maste 	char resource_l_[PADL_(l_uint)]; l_uint resource; char resource_r_[PADR_(l_uint)];
6295f2336efSEd Maste 	char rlim_l_[PADL_(struct l_rlimit *)]; struct l_rlimit * rlim; char rlim_r_[PADR_(struct l_rlimit *)];
6305f2336efSEd Maste };
6315f2336efSEd Maste struct linux_setrlimit_args {
6325f2336efSEd Maste 	char resource_l_[PADL_(l_uint)]; l_uint resource; char resource_r_[PADR_(l_uint)];
6335f2336efSEd Maste 	char rlim_l_[PADL_(struct l_rlimit *)]; struct l_rlimit * rlim; char rlim_r_[PADR_(struct l_rlimit *)];
6345f2336efSEd Maste };
6355f2336efSEd Maste struct linux_prctl_args {
6365f2336efSEd Maste 	char option_l_[PADL_(l_int)]; l_int option; char option_r_[PADR_(l_int)];
6375f2336efSEd Maste 	char arg2_l_[PADL_(l_uintptr_t)]; l_uintptr_t arg2; char arg2_r_[PADR_(l_uintptr_t)];
6385f2336efSEd Maste 	char arg3_l_[PADL_(l_uintptr_t)]; l_uintptr_t arg3; char arg3_r_[PADR_(l_uintptr_t)];
6395f2336efSEd Maste 	char arg4_l_[PADL_(l_uintptr_t)]; l_uintptr_t arg4; char arg4_r_[PADR_(l_uintptr_t)];
6405f2336efSEd Maste 	char arg5_l_[PADL_(l_uintptr_t)]; l_uintptr_t arg5; char arg5_r_[PADR_(l_uintptr_t)];
6415f2336efSEd Maste };
6425f2336efSEd Maste struct linux_getcpu_args {
6435f2336efSEd Maste 	char cpu_l_[PADL_(l_uint *)]; l_uint * cpu; char cpu_r_[PADR_(l_uint *)];
6445f2336efSEd Maste 	char node_l_[PADL_(l_uint *)]; l_uint * node; char node_r_[PADR_(l_uint *)];
6455f2336efSEd Maste 	char cache_l_[PADL_(void *)]; void * cache; char cache_r_[PADR_(void *)];
6465f2336efSEd Maste };
6475f2336efSEd Maste struct linux_adjtimex_args {
6488601fca7SBrooks Davis 	syscallarg_t dummy;
6495f2336efSEd Maste };
6505f2336efSEd Maste struct linux_getpid_args {
6518601fca7SBrooks Davis 	syscallarg_t dummy;
6525f2336efSEd Maste };
6535f2336efSEd Maste struct linux_getppid_args {
6548601fca7SBrooks Davis 	syscallarg_t dummy;
6555f2336efSEd Maste };
6565f2336efSEd Maste struct linux_getuid_args {
6578601fca7SBrooks Davis 	syscallarg_t dummy;
6585f2336efSEd Maste };
6595f2336efSEd Maste struct linux_getgid_args {
6608601fca7SBrooks Davis 	syscallarg_t dummy;
6615f2336efSEd Maste };
6625f2336efSEd Maste struct linux_gettid_args {
6638601fca7SBrooks Davis 	syscallarg_t dummy;
6645f2336efSEd Maste };
6655f2336efSEd Maste struct linux_sysinfo_args {
6665f2336efSEd Maste 	char info_l_[PADL_(struct l_sysinfo *)]; struct l_sysinfo * info; char info_r_[PADR_(struct l_sysinfo *)];
6675f2336efSEd Maste };
6685f2336efSEd Maste struct linux_mq_open_args {
669a39cdcd7SEdward Tomasz Napierala 	char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)];
670a39cdcd7SEdward Tomasz Napierala 	char oflag_l_[PADL_(l_int)]; l_int oflag; char oflag_r_[PADR_(l_int)];
671a39cdcd7SEdward Tomasz Napierala 	char mode_l_[PADL_(l_mode_t)]; l_mode_t mode; char mode_r_[PADR_(l_mode_t)];
672a39cdcd7SEdward Tomasz Napierala 	char attr_l_[PADL_(struct mq_attr *)]; struct mq_attr * attr; char attr_r_[PADR_(struct mq_attr *)];
6735f2336efSEd Maste };
6745f2336efSEd Maste struct linux_mq_unlink_args {
675a39cdcd7SEdward Tomasz Napierala 	char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)];
6765f2336efSEd Maste };
6775f2336efSEd Maste struct linux_mq_timedsend_args {
678a39cdcd7SEdward Tomasz Napierala 	char mqd_l_[PADL_(l_mqd_t)]; l_mqd_t mqd; char mqd_r_[PADR_(l_mqd_t)];
679a39cdcd7SEdward Tomasz Napierala 	char msg_ptr_l_[PADL_(const char *)]; const char * msg_ptr; char msg_ptr_r_[PADR_(const char *)];
680a39cdcd7SEdward Tomasz Napierala 	char msg_len_l_[PADL_(l_size_t)]; l_size_t msg_len; char msg_len_r_[PADR_(l_size_t)];
681a39cdcd7SEdward Tomasz Napierala 	char msg_prio_l_[PADL_(l_uint)]; l_uint msg_prio; char msg_prio_r_[PADR_(l_uint)];
682a39cdcd7SEdward Tomasz Napierala 	char abs_timeout_l_[PADL_(const struct l_timespec *)]; const struct l_timespec * abs_timeout; char abs_timeout_r_[PADR_(const struct l_timespec *)];
6835f2336efSEd Maste };
6845f2336efSEd Maste struct linux_mq_timedreceive_args {
685a39cdcd7SEdward Tomasz Napierala 	char mqd_l_[PADL_(l_mqd_t)]; l_mqd_t mqd; char mqd_r_[PADR_(l_mqd_t)];
686a39cdcd7SEdward Tomasz Napierala 	char msg_ptr_l_[PADL_(char *)]; char * msg_ptr; char msg_ptr_r_[PADR_(char *)];
687a39cdcd7SEdward Tomasz Napierala 	char msg_len_l_[PADL_(l_size_t)]; l_size_t msg_len; char msg_len_r_[PADR_(l_size_t)];
688a39cdcd7SEdward Tomasz Napierala 	char msg_prio_l_[PADL_(l_uint *)]; l_uint * msg_prio; char msg_prio_r_[PADR_(l_uint *)];
689a39cdcd7SEdward Tomasz Napierala 	char abs_timeout_l_[PADL_(const struct l_timespec *)]; const struct l_timespec * abs_timeout; char abs_timeout_r_[PADR_(const struct l_timespec *)];
6905f2336efSEd Maste };
6915f2336efSEd Maste struct linux_mq_notify_args {
692a39cdcd7SEdward Tomasz Napierala 	char mqd_l_[PADL_(l_mqd_t)]; l_mqd_t mqd; char mqd_r_[PADR_(l_mqd_t)];
693a39cdcd7SEdward Tomasz Napierala 	char abs_timeout_l_[PADL_(const struct l_timespec *)]; const struct l_timespec * abs_timeout; char abs_timeout_r_[PADR_(const struct l_timespec *)];
6945f2336efSEd Maste };
6955f2336efSEd Maste struct linux_mq_getsetattr_args {
696a39cdcd7SEdward Tomasz Napierala 	char mqd_l_[PADL_(l_mqd_t)]; l_mqd_t mqd; char mqd_r_[PADR_(l_mqd_t)];
697a39cdcd7SEdward Tomasz Napierala 	char attr_l_[PADL_(const struct mq_attr *)]; const struct mq_attr * attr; char attr_r_[PADR_(const struct mq_attr *)];
698a39cdcd7SEdward Tomasz Napierala 	char oattr_l_[PADL_(struct mq_attr *)]; struct mq_attr * oattr; char oattr_r_[PADR_(struct mq_attr *)];
6995f2336efSEd Maste };
7005f2336efSEd Maste struct linux_msgget_args {
7015f2336efSEd Maste 	char key_l_[PADL_(l_key_t)]; l_key_t key; char key_r_[PADR_(l_key_t)];
7025f2336efSEd Maste 	char msgflg_l_[PADL_(l_int)]; l_int msgflg; char msgflg_r_[PADR_(l_int)];
7035f2336efSEd Maste };
7045f2336efSEd Maste struct linux_msgctl_args {
7055f2336efSEd Maste 	char msqid_l_[PADL_(l_int)]; l_int msqid; char msqid_r_[PADR_(l_int)];
7065f2336efSEd Maste 	char cmd_l_[PADL_(l_int)]; l_int cmd; char cmd_r_[PADR_(l_int)];
7075f2336efSEd Maste 	char buf_l_[PADL_(struct l_msqid_ds *)]; struct l_msqid_ds * buf; char buf_r_[PADR_(struct l_msqid_ds *)];
7085f2336efSEd Maste };
7095f2336efSEd Maste struct linux_msgrcv_args {
7105f2336efSEd Maste 	char msqid_l_[PADL_(l_int)]; l_int msqid; char msqid_r_[PADR_(l_int)];
7115f2336efSEd Maste 	char msgp_l_[PADL_(struct l_msgbuf *)]; struct l_msgbuf * msgp; char msgp_r_[PADR_(struct l_msgbuf *)];
7125f2336efSEd Maste 	char msgsz_l_[PADL_(l_size_t)]; l_size_t msgsz; char msgsz_r_[PADR_(l_size_t)];
7135f2336efSEd Maste 	char msgtyp_l_[PADL_(l_long)]; l_long msgtyp; char msgtyp_r_[PADR_(l_long)];
7145f2336efSEd Maste 	char msgflg_l_[PADL_(l_int)]; l_int msgflg; char msgflg_r_[PADR_(l_int)];
7155f2336efSEd Maste };
7165f2336efSEd Maste struct linux_msgsnd_args {
7175f2336efSEd Maste 	char msqid_l_[PADL_(l_int)]; l_int msqid; char msqid_r_[PADR_(l_int)];
7185f2336efSEd Maste 	char msgp_l_[PADL_(struct l_msgbuf *)]; struct l_msgbuf * msgp; char msgp_r_[PADR_(struct l_msgbuf *)];
7195f2336efSEd Maste 	char msgsz_l_[PADL_(l_size_t)]; l_size_t msgsz; char msgsz_r_[PADR_(l_size_t)];
7205f2336efSEd Maste 	char msgflg_l_[PADL_(l_int)]; l_int msgflg; char msgflg_r_[PADR_(l_int)];
7215f2336efSEd Maste };
7225f2336efSEd Maste struct linux_semget_args {
7235f2336efSEd Maste 	char key_l_[PADL_(l_key_t)]; l_key_t key; char key_r_[PADR_(l_key_t)];
7245f2336efSEd Maste 	char nsems_l_[PADL_(l_int)]; l_int nsems; char nsems_r_[PADR_(l_int)];
7255f2336efSEd Maste 	char semflg_l_[PADL_(l_int)]; l_int semflg; char semflg_r_[PADR_(l_int)];
7265f2336efSEd Maste };
7275f2336efSEd Maste struct linux_semctl_args {
7285f2336efSEd Maste 	char semid_l_[PADL_(l_int)]; l_int semid; char semid_r_[PADR_(l_int)];
7295f2336efSEd Maste 	char semnum_l_[PADL_(l_int)]; l_int semnum; char semnum_r_[PADR_(l_int)];
7305f2336efSEd Maste 	char cmd_l_[PADL_(l_int)]; l_int cmd; char cmd_r_[PADR_(l_int)];
7315f2336efSEd Maste 	char arg_l_[PADL_(union l_semun)]; union l_semun arg; char arg_r_[PADR_(union l_semun)];
7325f2336efSEd Maste };
7335f2336efSEd Maste struct linux_semtimedop_args {
734430460d7SDmitry Chagin 	char semid_l_[PADL_(l_int)]; l_int semid; char semid_r_[PADR_(l_int)];
735430460d7SDmitry Chagin 	char tsops_l_[PADL_(struct sembuf *)]; struct sembuf * tsops; char tsops_r_[PADR_(struct sembuf *)];
736430460d7SDmitry Chagin 	char nsops_l_[PADL_(l_size_t)]; l_size_t nsops; char nsops_r_[PADR_(l_size_t)];
737430460d7SDmitry Chagin 	char timeout_l_[PADL_(struct l_timespec *)]; struct l_timespec * timeout; char timeout_r_[PADR_(struct l_timespec *)];
7385f2336efSEd Maste };
7395f2336efSEd Maste struct linux_shmget_args {
7405f2336efSEd Maste 	char key_l_[PADL_(l_key_t)]; l_key_t key; char key_r_[PADR_(l_key_t)];
7415f2336efSEd Maste 	char size_l_[PADL_(l_size_t)]; l_size_t size; char size_r_[PADR_(l_size_t)];
7425f2336efSEd Maste 	char shmflg_l_[PADL_(l_int)]; l_int shmflg; char shmflg_r_[PADR_(l_int)];
7435f2336efSEd Maste };
7445f2336efSEd Maste struct linux_shmctl_args {
7455f2336efSEd Maste 	char shmid_l_[PADL_(l_int)]; l_int shmid; char shmid_r_[PADR_(l_int)];
7465f2336efSEd Maste 	char cmd_l_[PADL_(l_int)]; l_int cmd; char cmd_r_[PADR_(l_int)];
7475f2336efSEd Maste 	char buf_l_[PADL_(struct l_shmid_ds *)]; struct l_shmid_ds * buf; char buf_r_[PADR_(struct l_shmid_ds *)];
7485f2336efSEd Maste };
7495f2336efSEd Maste struct linux_shmat_args {
7505f2336efSEd Maste 	char shmid_l_[PADL_(l_int)]; l_int shmid; char shmid_r_[PADR_(l_int)];
7515f2336efSEd Maste 	char shmaddr_l_[PADL_(char *)]; char * shmaddr; char shmaddr_r_[PADR_(char *)];
7525f2336efSEd Maste 	char shmflg_l_[PADL_(l_int)]; l_int shmflg; char shmflg_r_[PADR_(l_int)];
7535f2336efSEd Maste };
7545f2336efSEd Maste struct linux_shmdt_args {
7555f2336efSEd Maste 	char shmaddr_l_[PADL_(char *)]; char * shmaddr; char shmaddr_r_[PADR_(char *)];
7565f2336efSEd Maste };
7575f2336efSEd Maste struct linux_socket_args {
7585f2336efSEd Maste 	char domain_l_[PADL_(l_int)]; l_int domain; char domain_r_[PADR_(l_int)];
7595f2336efSEd Maste 	char type_l_[PADL_(l_int)]; l_int type; char type_r_[PADR_(l_int)];
7605f2336efSEd Maste 	char protocol_l_[PADL_(l_int)]; l_int protocol; char protocol_r_[PADR_(l_int)];
7615f2336efSEd Maste };
7625f2336efSEd Maste struct linux_socketpair_args {
7635f2336efSEd Maste 	char domain_l_[PADL_(l_int)]; l_int domain; char domain_r_[PADR_(l_int)];
7645f2336efSEd Maste 	char type_l_[PADL_(l_int)]; l_int type; char type_r_[PADR_(l_int)];
7655f2336efSEd Maste 	char protocol_l_[PADL_(l_int)]; l_int protocol; char protocol_r_[PADR_(l_int)];
7665f2336efSEd Maste 	char rsv_l_[PADL_(l_uintptr_t)]; l_uintptr_t rsv; char rsv_r_[PADR_(l_uintptr_t)];
7675f2336efSEd Maste };
7685f2336efSEd Maste struct linux_bind_args {
7695f2336efSEd Maste 	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
7705f2336efSEd Maste 	char name_l_[PADL_(l_uintptr_t)]; l_uintptr_t name; char name_r_[PADR_(l_uintptr_t)];
7715f2336efSEd Maste 	char namelen_l_[PADL_(l_int)]; l_int namelen; char namelen_r_[PADR_(l_int)];
7725f2336efSEd Maste };
7735f2336efSEd Maste struct linux_listen_args {
7745f2336efSEd Maste 	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
7755f2336efSEd Maste 	char backlog_l_[PADL_(l_int)]; l_int backlog; char backlog_r_[PADR_(l_int)];
7765f2336efSEd Maste };
7775f2336efSEd Maste struct linux_accept_args {
7785f2336efSEd Maste 	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
7795f2336efSEd Maste 	char addr_l_[PADL_(l_uintptr_t)]; l_uintptr_t addr; char addr_r_[PADR_(l_uintptr_t)];
7805f2336efSEd Maste 	char namelen_l_[PADL_(l_uintptr_t)]; l_uintptr_t namelen; char namelen_r_[PADR_(l_uintptr_t)];
7815f2336efSEd Maste };
7825f2336efSEd Maste struct linux_connect_args {
7835f2336efSEd Maste 	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
7845f2336efSEd Maste 	char name_l_[PADL_(l_uintptr_t)]; l_uintptr_t name; char name_r_[PADR_(l_uintptr_t)];
7855f2336efSEd Maste 	char namelen_l_[PADL_(l_int)]; l_int namelen; char namelen_r_[PADR_(l_int)];
7865f2336efSEd Maste };
7875f2336efSEd Maste struct linux_getsockname_args {
7885f2336efSEd Maste 	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
7895f2336efSEd Maste 	char addr_l_[PADL_(l_uintptr_t)]; l_uintptr_t addr; char addr_r_[PADR_(l_uintptr_t)];
7905f2336efSEd Maste 	char namelen_l_[PADL_(l_uintptr_t)]; l_uintptr_t namelen; char namelen_r_[PADR_(l_uintptr_t)];
7915f2336efSEd Maste };
7925f2336efSEd Maste struct linux_getpeername_args {
7935f2336efSEd Maste 	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
7945f2336efSEd Maste 	char addr_l_[PADL_(l_uintptr_t)]; l_uintptr_t addr; char addr_r_[PADR_(l_uintptr_t)];
7955f2336efSEd Maste 	char namelen_l_[PADL_(l_uintptr_t)]; l_uintptr_t namelen; char namelen_r_[PADR_(l_uintptr_t)];
7965f2336efSEd Maste };
7975f2336efSEd Maste struct linux_sendto_args {
7985f2336efSEd Maste 	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
7995f2336efSEd Maste 	char msg_l_[PADL_(l_uintptr_t)]; l_uintptr_t msg; char msg_r_[PADR_(l_uintptr_t)];
800a39cdcd7SEdward Tomasz Napierala 	char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)];
801a39cdcd7SEdward Tomasz Napierala 	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
8025f2336efSEd Maste 	char to_l_[PADL_(l_uintptr_t)]; l_uintptr_t to; char to_r_[PADR_(l_uintptr_t)];
8035f2336efSEd Maste 	char tolen_l_[PADL_(l_int)]; l_int tolen; char tolen_r_[PADR_(l_int)];
8045f2336efSEd Maste };
8055f2336efSEd Maste struct linux_recvfrom_args {
8065f2336efSEd Maste 	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
8075f2336efSEd Maste 	char buf_l_[PADL_(l_uintptr_t)]; l_uintptr_t buf; char buf_r_[PADR_(l_uintptr_t)];
8085f2336efSEd Maste 	char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)];
809a39cdcd7SEdward Tomasz Napierala 	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
8105f2336efSEd Maste 	char from_l_[PADL_(l_uintptr_t)]; l_uintptr_t from; char from_r_[PADR_(l_uintptr_t)];
8115f2336efSEd Maste 	char fromlen_l_[PADL_(l_uintptr_t)]; l_uintptr_t fromlen; char fromlen_r_[PADR_(l_uintptr_t)];
8125f2336efSEd Maste };
8135f2336efSEd Maste struct linux_setsockopt_args {
8145f2336efSEd Maste 	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
8155f2336efSEd Maste 	char level_l_[PADL_(l_int)]; l_int level; char level_r_[PADR_(l_int)];
8165f2336efSEd Maste 	char optname_l_[PADL_(l_int)]; l_int optname; char optname_r_[PADR_(l_int)];
8175f2336efSEd Maste 	char optval_l_[PADL_(l_uintptr_t)]; l_uintptr_t optval; char optval_r_[PADR_(l_uintptr_t)];
8185f2336efSEd Maste 	char optlen_l_[PADL_(l_int)]; l_int optlen; char optlen_r_[PADR_(l_int)];
8195f2336efSEd Maste };
8205f2336efSEd Maste struct linux_getsockopt_args {
8215f2336efSEd Maste 	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
8225f2336efSEd Maste 	char level_l_[PADL_(l_int)]; l_int level; char level_r_[PADR_(l_int)];
8235f2336efSEd Maste 	char optname_l_[PADL_(l_int)]; l_int optname; char optname_r_[PADR_(l_int)];
8245f2336efSEd Maste 	char optval_l_[PADL_(l_uintptr_t)]; l_uintptr_t optval; char optval_r_[PADR_(l_uintptr_t)];
8255f2336efSEd Maste 	char optlen_l_[PADL_(l_uintptr_t)]; l_uintptr_t optlen; char optlen_r_[PADR_(l_uintptr_t)];
8265f2336efSEd Maste };
8275f2336efSEd Maste struct linux_shutdown_args {
8285f2336efSEd Maste 	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
8295f2336efSEd Maste 	char how_l_[PADL_(l_int)]; l_int how; char how_r_[PADR_(l_int)];
8305f2336efSEd Maste };
8315f2336efSEd Maste struct linux_sendmsg_args {
8325f2336efSEd Maste 	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
8335f2336efSEd Maste 	char msg_l_[PADL_(l_uintptr_t)]; l_uintptr_t msg; char msg_r_[PADR_(l_uintptr_t)];
834a39cdcd7SEdward Tomasz Napierala 	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
8355f2336efSEd Maste };
8365f2336efSEd Maste struct linux_recvmsg_args {
8375f2336efSEd Maste 	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
8385f2336efSEd Maste 	char msg_l_[PADL_(l_uintptr_t)]; l_uintptr_t msg; char msg_r_[PADR_(l_uintptr_t)];
839a39cdcd7SEdward Tomasz Napierala 	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
8405f2336efSEd Maste };
8415f2336efSEd Maste struct linux_brk_args {
8425f2336efSEd Maste 	char dsend_l_[PADL_(l_ulong)]; l_ulong dsend; char dsend_r_[PADR_(l_ulong)];
8435f2336efSEd Maste };
8445f2336efSEd Maste struct linux_mremap_args {
8455f2336efSEd Maste 	char addr_l_[PADL_(l_ulong)]; l_ulong addr; char addr_r_[PADR_(l_ulong)];
8465f2336efSEd Maste 	char old_len_l_[PADL_(l_ulong)]; l_ulong old_len; char old_len_r_[PADR_(l_ulong)];
8475f2336efSEd Maste 	char new_len_l_[PADL_(l_ulong)]; l_ulong new_len; char new_len_r_[PADR_(l_ulong)];
8485f2336efSEd Maste 	char flags_l_[PADL_(l_ulong)]; l_ulong flags; char flags_r_[PADR_(l_ulong)];
8495f2336efSEd Maste 	char new_addr_l_[PADL_(l_ulong)]; l_ulong new_addr; char new_addr_r_[PADR_(l_ulong)];
8505f2336efSEd Maste };
8515f2336efSEd Maste struct linux_add_key_args {
8528601fca7SBrooks Davis 	syscallarg_t dummy;
8535f2336efSEd Maste };
8545f2336efSEd Maste struct linux_request_key_args {
8558601fca7SBrooks Davis 	syscallarg_t dummy;
8565f2336efSEd Maste };
8575f2336efSEd Maste struct linux_keyctl_args {
8588601fca7SBrooks Davis 	syscallarg_t dummy;
8595f2336efSEd Maste };
8605f2336efSEd Maste struct linux_clone_args {
861a39cdcd7SEdward Tomasz Napierala 	char flags_l_[PADL_(l_ulong)]; l_ulong flags; char flags_r_[PADR_(l_ulong)];
8620c08f34fSDmitry Chagin 	char stack_l_[PADL_(l_ulong)]; l_ulong stack; char stack_r_[PADR_(l_ulong)];
8630c08f34fSDmitry Chagin 	char parent_tidptr_l_[PADL_(l_int *)]; l_int * parent_tidptr; char parent_tidptr_r_[PADR_(l_int *)];
8640c08f34fSDmitry Chagin 	char tls_l_[PADL_(l_ulong)]; l_ulong tls; char tls_r_[PADR_(l_ulong)];
8650c08f34fSDmitry Chagin 	char child_tidptr_l_[PADL_(l_int *)]; l_int * child_tidptr; char child_tidptr_r_[PADR_(l_int *)];
8665f2336efSEd Maste };
8675f2336efSEd Maste struct linux_execve_args {
8685f2336efSEd Maste 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
869*eb98f779SDmitry Chagin 	char argp_l_[PADL_(l_uintptr_t *)]; l_uintptr_t * argp; char argp_r_[PADR_(l_uintptr_t *)];
870*eb98f779SDmitry Chagin 	char envp_l_[PADL_(l_uintptr_t *)]; l_uintptr_t * envp; char envp_r_[PADR_(l_uintptr_t *)];
8715f2336efSEd Maste };
8725f2336efSEd Maste struct linux_mmap2_args {
8735f2336efSEd Maste 	char addr_l_[PADL_(l_ulong)]; l_ulong addr; char addr_r_[PADR_(l_ulong)];
8745f2336efSEd Maste 	char len_l_[PADL_(l_ulong)]; l_ulong len; char len_r_[PADR_(l_ulong)];
8755f2336efSEd Maste 	char prot_l_[PADL_(l_ulong)]; l_ulong prot; char prot_r_[PADR_(l_ulong)];
8765f2336efSEd Maste 	char flags_l_[PADL_(l_ulong)]; l_ulong flags; char flags_r_[PADR_(l_ulong)];
8775f2336efSEd Maste 	char fd_l_[PADL_(l_ulong)]; l_ulong fd; char fd_r_[PADR_(l_ulong)];
8785f2336efSEd Maste 	char pgoff_l_[PADL_(l_ulong)]; l_ulong pgoff; char pgoff_r_[PADR_(l_ulong)];
8795f2336efSEd Maste };
8805f2336efSEd Maste struct linux_fadvise64_args {
8815f2336efSEd Maste 	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
8825f2336efSEd Maste 	char offset_l_[PADL_(l_loff_t)]; l_loff_t offset; char offset_r_[PADR_(l_loff_t)];
8835f2336efSEd Maste 	char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)];
8845f2336efSEd Maste 	char advice_l_[PADL_(l_int)]; l_int advice; char advice_r_[PADR_(l_int)];
8855f2336efSEd Maste };
8865f2336efSEd Maste struct linux_swapoff_args {
8878601fca7SBrooks Davis 	syscallarg_t dummy;
8885f2336efSEd Maste };
8895f2336efSEd Maste struct linux_mprotect_args {
890a39cdcd7SEdward Tomasz Napierala 	char addr_l_[PADL_(l_ulong)]; l_ulong addr; char addr_r_[PADR_(l_ulong)];
891a39cdcd7SEdward Tomasz Napierala 	char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)];
892a39cdcd7SEdward Tomasz Napierala 	char prot_l_[PADL_(l_ulong)]; l_ulong prot; char prot_r_[PADR_(l_ulong)];
8935f2336efSEd Maste };
8945f2336efSEd Maste struct linux_msync_args {
8955f2336efSEd Maste 	char addr_l_[PADL_(l_ulong)]; l_ulong addr; char addr_r_[PADR_(l_ulong)];
8965f2336efSEd Maste 	char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)];
8975f2336efSEd Maste 	char fl_l_[PADL_(l_int)]; l_int fl; char fl_r_[PADR_(l_int)];
8985f2336efSEd Maste };
8995f2336efSEd Maste struct linux_mincore_args {
9005f2336efSEd Maste 	char start_l_[PADL_(l_ulong)]; l_ulong start; char start_r_[PADR_(l_ulong)];
9015f2336efSEd Maste 	char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)];
9025f2336efSEd Maste 	char vec_l_[PADL_(u_char *)]; u_char * vec; char vec_r_[PADR_(u_char *)];
9035f2336efSEd Maste };
904bafd96b8SEdward Tomasz Napierala struct linux_madvise_args {
905a39cdcd7SEdward Tomasz Napierala 	char addr_l_[PADL_(l_ulong)]; l_ulong addr; char addr_r_[PADR_(l_ulong)];
906a39cdcd7SEdward Tomasz Napierala 	char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)];
907a39cdcd7SEdward Tomasz Napierala 	char behav_l_[PADL_(l_int)]; l_int behav; char behav_r_[PADR_(l_int)];
908bafd96b8SEdward Tomasz Napierala };
9095f2336efSEd Maste struct linux_remap_file_pages_args {
9108601fca7SBrooks Davis 	syscallarg_t dummy;
9115f2336efSEd Maste };
9125f2336efSEd Maste struct linux_mbind_args {
9138601fca7SBrooks Davis 	syscallarg_t dummy;
9145f2336efSEd Maste };
9155f2336efSEd Maste struct linux_get_mempolicy_args {
9168601fca7SBrooks Davis 	syscallarg_t dummy;
9175f2336efSEd Maste };
9185f2336efSEd Maste struct linux_set_mempolicy_args {
9198601fca7SBrooks Davis 	syscallarg_t dummy;
9205f2336efSEd Maste };
9215f2336efSEd Maste struct linux_migrate_pages_args {
9228601fca7SBrooks Davis 	syscallarg_t dummy;
9235f2336efSEd Maste };
9245f2336efSEd Maste struct linux_move_pages_args {
9258601fca7SBrooks Davis 	syscallarg_t dummy;
9265f2336efSEd Maste };
9275f2336efSEd Maste struct linux_rt_tgsigqueueinfo_args {
9285f2336efSEd Maste 	char tgid_l_[PADL_(l_pid_t)]; l_pid_t tgid; char tgid_r_[PADR_(l_pid_t)];
9295f2336efSEd Maste 	char tid_l_[PADL_(l_pid_t)]; l_pid_t tid; char tid_r_[PADR_(l_pid_t)];
9305f2336efSEd Maste 	char sig_l_[PADL_(l_int)]; l_int sig; char sig_r_[PADR_(l_int)];
9315f2336efSEd Maste 	char uinfo_l_[PADL_(l_siginfo_t *)]; l_siginfo_t * uinfo; char uinfo_r_[PADR_(l_siginfo_t *)];
9325f2336efSEd Maste };
9335f2336efSEd Maste struct linux_perf_event_open_args {
9348601fca7SBrooks Davis 	syscallarg_t dummy;
9355f2336efSEd Maste };
9365f2336efSEd Maste struct linux_accept4_args {
9375f2336efSEd Maste 	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
9385f2336efSEd Maste 	char addr_l_[PADL_(l_uintptr_t)]; l_uintptr_t addr; char addr_r_[PADR_(l_uintptr_t)];
9395f2336efSEd Maste 	char namelen_l_[PADL_(l_uintptr_t)]; l_uintptr_t namelen; char namelen_r_[PADR_(l_uintptr_t)];
940a39cdcd7SEdward Tomasz Napierala 	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
9415f2336efSEd Maste };
9425f2336efSEd Maste struct linux_recvmmsg_args {
9435f2336efSEd Maste 	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
9445f2336efSEd Maste 	char msg_l_[PADL_(struct l_mmsghdr *)]; struct l_mmsghdr * msg; char msg_r_[PADR_(struct l_mmsghdr *)];
9455f2336efSEd Maste 	char vlen_l_[PADL_(l_uint)]; l_uint vlen; char vlen_r_[PADR_(l_uint)];
9465f2336efSEd Maste 	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
9475f2336efSEd Maste 	char timeout_l_[PADL_(struct l_timespec *)]; struct l_timespec * timeout; char timeout_r_[PADR_(struct l_timespec *)];
9485f2336efSEd Maste };
9495f2336efSEd Maste struct linux_wait4_args {
9505f2336efSEd Maste 	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
9515f2336efSEd Maste 	char status_l_[PADL_(l_int *)]; l_int * status; char status_r_[PADR_(l_int *)];
9525f2336efSEd Maste 	char options_l_[PADL_(l_int)]; l_int options; char options_r_[PADR_(l_int)];
9535f2336efSEd Maste 	char rusage_l_[PADL_(struct rusage *)]; struct rusage * rusage; char rusage_r_[PADR_(struct rusage *)];
9545f2336efSEd Maste };
9555f2336efSEd Maste struct linux_prlimit64_args {
9565f2336efSEd Maste 	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
9575f2336efSEd Maste 	char resource_l_[PADL_(l_uint)]; l_uint resource; char resource_r_[PADR_(l_uint)];
9585f2336efSEd Maste 	char new_l_[PADL_(struct rlimit *)]; struct rlimit * new; char new_r_[PADR_(struct rlimit *)];
9595f2336efSEd Maste 	char old_l_[PADL_(struct rlimit *)]; struct rlimit * old; char old_r_[PADR_(struct rlimit *)];
9605f2336efSEd Maste };
9615f2336efSEd Maste struct linux_fanotify_init_args {
9628601fca7SBrooks Davis 	syscallarg_t dummy;
9635f2336efSEd Maste };
9645f2336efSEd Maste struct linux_fanotify_mark_args {
9658601fca7SBrooks Davis 	syscallarg_t dummy;
9665f2336efSEd Maste };
9675f2336efSEd Maste struct linux_name_to_handle_at_args {
96877eb9841SConrad Meyer 	char dirfd_l_[PADL_(l_int)]; l_int dirfd; char dirfd_r_[PADR_(l_int)];
96977eb9841SConrad Meyer 	char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)];
97077eb9841SConrad Meyer 	char handle_l_[PADL_(struct l_file_handle *)]; struct l_file_handle * handle; char handle_r_[PADR_(struct l_file_handle *)];
97177eb9841SConrad Meyer 	char mnt_id_l_[PADL_(l_int *)]; l_int * mnt_id; char mnt_id_r_[PADR_(l_int *)];
97277eb9841SConrad Meyer 	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
9735f2336efSEd Maste };
9745f2336efSEd Maste struct linux_open_by_handle_at_args {
97577eb9841SConrad Meyer 	char mountdirfd_l_[PADL_(l_int)]; l_int mountdirfd; char mountdirfd_r_[PADR_(l_int)];
97677eb9841SConrad Meyer 	char handle_l_[PADL_(struct l_file_handle *)]; struct l_file_handle * handle; char handle_r_[PADR_(struct l_file_handle *)];
97777eb9841SConrad Meyer 	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
9785f2336efSEd Maste };
9795f2336efSEd Maste struct linux_clock_adjtime_args {
9808601fca7SBrooks Davis 	syscallarg_t dummy;
9815f2336efSEd Maste };
9825f2336efSEd Maste struct linux_syncfs_args {
9835f2336efSEd Maste 	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
9845f2336efSEd Maste };
9855f2336efSEd Maste struct linux_setns_args {
9865f2336efSEd Maste 	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
9875f2336efSEd Maste 	char nstype_l_[PADL_(l_int)]; l_int nstype; char nstype_r_[PADR_(l_int)];
9885f2336efSEd Maste };
9895f2336efSEd Maste struct linux_sendmmsg_args {
9905f2336efSEd Maste 	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
9915f2336efSEd Maste 	char msg_l_[PADL_(struct l_mmsghdr *)]; struct l_mmsghdr * msg; char msg_r_[PADR_(struct l_mmsghdr *)];
9925f2336efSEd Maste 	char vlen_l_[PADL_(l_uint)]; l_uint vlen; char vlen_r_[PADR_(l_uint)];
9935f2336efSEd Maste 	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
9945f2336efSEd Maste };
9955f2336efSEd Maste struct linux_process_vm_readv_args {
9965f2336efSEd Maste 	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
9975f2336efSEd Maste 	char lvec_l_[PADL_(const struct iovec *)]; const struct iovec * lvec; char lvec_r_[PADR_(const struct iovec *)];
9985f2336efSEd Maste 	char liovcnt_l_[PADL_(l_ulong)]; l_ulong liovcnt; char liovcnt_r_[PADR_(l_ulong)];
9995f2336efSEd Maste 	char rvec_l_[PADL_(const struct iovec *)]; const struct iovec * rvec; char rvec_r_[PADR_(const struct iovec *)];
10005f2336efSEd Maste 	char riovcnt_l_[PADL_(l_ulong)]; l_ulong riovcnt; char riovcnt_r_[PADR_(l_ulong)];
10015f2336efSEd Maste 	char flags_l_[PADL_(l_ulong)]; l_ulong flags; char flags_r_[PADR_(l_ulong)];
10025f2336efSEd Maste };
10035f2336efSEd Maste struct linux_process_vm_writev_args {
10045f2336efSEd Maste 	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
10055f2336efSEd Maste 	char lvec_l_[PADL_(const struct iovec *)]; const struct iovec * lvec; char lvec_r_[PADR_(const struct iovec *)];
10065f2336efSEd Maste 	char liovcnt_l_[PADL_(l_ulong)]; l_ulong liovcnt; char liovcnt_r_[PADR_(l_ulong)];
10075f2336efSEd Maste 	char rvec_l_[PADL_(const struct iovec *)]; const struct iovec * rvec; char rvec_r_[PADR_(const struct iovec *)];
10085f2336efSEd Maste 	char riovcnt_l_[PADL_(l_ulong)]; l_ulong riovcnt; char riovcnt_r_[PADR_(l_ulong)];
10095f2336efSEd Maste 	char flags_l_[PADL_(l_ulong)]; l_ulong flags; char flags_r_[PADR_(l_ulong)];
10105f2336efSEd Maste };
10115f2336efSEd Maste struct linux_kcmp_args {
10125f2336efSEd Maste 	char pid1_l_[PADL_(l_pid_t)]; l_pid_t pid1; char pid1_r_[PADR_(l_pid_t)];
10135f2336efSEd Maste 	char pid2_l_[PADL_(l_pid_t)]; l_pid_t pid2; char pid2_r_[PADR_(l_pid_t)];
10145f2336efSEd Maste 	char type_l_[PADL_(l_int)]; l_int type; char type_r_[PADR_(l_int)];
10155f2336efSEd Maste 	char idx1_l_[PADL_(l_ulong)]; l_ulong idx1; char idx1_r_[PADR_(l_ulong)];
10165f2336efSEd Maste 	char idx_l_[PADL_(l_ulong)]; l_ulong idx; char idx_r_[PADR_(l_ulong)];
10175f2336efSEd Maste };
10185f2336efSEd Maste struct linux_finit_module_args {
10195f2336efSEd Maste 	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
10205f2336efSEd Maste 	char uargs_l_[PADL_(const char *)]; const char * uargs; char uargs_r_[PADR_(const char *)];
10215f2336efSEd Maste 	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
10225f2336efSEd Maste };
10235f2336efSEd Maste struct linux_sched_setattr_args {
10245f2336efSEd Maste 	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
10255f2336efSEd Maste 	char attr_l_[PADL_(void *)]; void * attr; char attr_r_[PADR_(void *)];
10265f2336efSEd Maste 	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
10275f2336efSEd Maste };
10285f2336efSEd Maste struct linux_sched_getattr_args {
10295f2336efSEd Maste 	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
10305f2336efSEd Maste 	char attr_l_[PADL_(void *)]; void * attr; char attr_r_[PADR_(void *)];
10315f2336efSEd Maste 	char size_l_[PADL_(l_uint)]; l_uint size; char size_r_[PADR_(l_uint)];
10325f2336efSEd Maste 	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
10335f2336efSEd Maste };
10345f2336efSEd Maste struct linux_renameat2_args {
103565ab1fddSEd Maste 	char olddfd_l_[PADL_(l_int)]; l_int olddfd; char olddfd_r_[PADR_(l_int)];
10365f2336efSEd Maste 	char oldname_l_[PADL_(const char *)]; const char * oldname; char oldname_r_[PADR_(const char *)];
103765ab1fddSEd Maste 	char newdfd_l_[PADL_(l_int)]; l_int newdfd; char newdfd_r_[PADR_(l_int)];
10385f2336efSEd Maste 	char newname_l_[PADL_(const char *)]; const char * newname; char newname_r_[PADR_(const char *)];
1039a39cdcd7SEdward Tomasz Napierala 	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
10405f2336efSEd Maste };
10415f2336efSEd Maste struct linux_seccomp_args {
10425f2336efSEd Maste 	char op_l_[PADL_(l_uint)]; l_uint op; char op_r_[PADR_(l_uint)];
10435f2336efSEd Maste 	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
10445f2336efSEd Maste 	char uargs_l_[PADL_(const char *)]; const char * uargs; char uargs_r_[PADR_(const char *)];
10455f2336efSEd Maste };
10465f2336efSEd Maste struct linux_getrandom_args {
10475f2336efSEd Maste 	char buf_l_[PADL_(char *)]; char * buf; char buf_r_[PADR_(char *)];
10485f2336efSEd Maste 	char count_l_[PADL_(l_size_t)]; l_size_t count; char count_r_[PADR_(l_size_t)];
10495f2336efSEd Maste 	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
10505f2336efSEd Maste };
10515f2336efSEd Maste struct linux_memfd_create_args {
10525f2336efSEd Maste 	char uname_ptr_l_[PADL_(const char *)]; const char * uname_ptr; char uname_ptr_r_[PADR_(const char *)];
10535f2336efSEd Maste 	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
10545f2336efSEd Maste };
10555f2336efSEd Maste struct linux_bpf_args {
10565f2336efSEd Maste 	char cmd_l_[PADL_(l_int)]; l_int cmd; char cmd_r_[PADR_(l_int)];
10575f2336efSEd Maste 	char attr_l_[PADL_(void *)]; void * attr; char attr_r_[PADR_(void *)];
10585f2336efSEd Maste 	char size_l_[PADL_(l_uint)]; l_uint size; char size_r_[PADR_(l_uint)];
10595f2336efSEd Maste };
10605f2336efSEd Maste struct linux_execveat_args {
10615f2336efSEd Maste 	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
10625f2336efSEd Maste 	char filename_l_[PADL_(const char *)]; const char * filename; char filename_r_[PADR_(const char *)];
10635f2336efSEd Maste 	char argv_l_[PADL_(const char **)]; const char ** argv; char argv_r_[PADR_(const char **)];
10645f2336efSEd Maste 	char envp_l_[PADL_(const char **)]; const char ** envp; char envp_r_[PADR_(const char **)];
10655f2336efSEd Maste 	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
10665f2336efSEd Maste };
10675f2336efSEd Maste struct linux_userfaultfd_args {
10685f2336efSEd Maste 	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
10695f2336efSEd Maste };
10705f2336efSEd Maste struct linux_membarrier_args {
10715f2336efSEd Maste 	char cmd_l_[PADL_(l_int)]; l_int cmd; char cmd_r_[PADR_(l_int)];
10725f2336efSEd Maste 	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
10735f2336efSEd Maste };
10745f2336efSEd Maste struct linux_mlock2_args {
10755f2336efSEd Maste 	char start_l_[PADL_(l_ulong)]; l_ulong start; char start_r_[PADR_(l_ulong)];
10765f2336efSEd Maste 	char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)];
10775f2336efSEd Maste 	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
10785f2336efSEd Maste };
10795f2336efSEd Maste struct linux_copy_file_range_args {
10805f2336efSEd Maste 	char fd_in_l_[PADL_(l_int)]; l_int fd_in; char fd_in_r_[PADR_(l_int)];
10815f2336efSEd Maste 	char off_in_l_[PADL_(l_loff_t *)]; l_loff_t * off_in; char off_in_r_[PADR_(l_loff_t *)];
10825f2336efSEd Maste 	char fd_out_l_[PADL_(l_int)]; l_int fd_out; char fd_out_r_[PADR_(l_int)];
10835f2336efSEd Maste 	char off_out_l_[PADL_(l_loff_t *)]; l_loff_t * off_out; char off_out_r_[PADR_(l_loff_t *)];
10845f2336efSEd Maste 	char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)];
10855f2336efSEd Maste 	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
10865f2336efSEd Maste };
10875f2336efSEd Maste struct linux_preadv2_args {
10885f2336efSEd Maste 	char fd_l_[PADL_(l_ulong)]; l_ulong fd; char fd_r_[PADR_(l_ulong)];
10895f2336efSEd Maste 	char vec_l_[PADL_(const struct iovec *)]; const struct iovec * vec; char vec_r_[PADR_(const struct iovec *)];
10905f2336efSEd Maste 	char vlen_l_[PADL_(l_ulong)]; l_ulong vlen; char vlen_r_[PADR_(l_ulong)];
10915f2336efSEd Maste 	char pos_l_l_[PADL_(l_ulong)]; l_ulong pos_l; char pos_l_r_[PADR_(l_ulong)];
10925f2336efSEd Maste 	char pos_h_l_[PADL_(l_ulong)]; l_ulong pos_h; char pos_h_r_[PADR_(l_ulong)];
10935f2336efSEd Maste 	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
10945f2336efSEd Maste };
10955f2336efSEd Maste struct linux_pwritev2_args {
10965f2336efSEd Maste 	char fd_l_[PADL_(l_ulong)]; l_ulong fd; char fd_r_[PADR_(l_ulong)];
10975f2336efSEd Maste 	char vec_l_[PADL_(const struct iovec *)]; const struct iovec * vec; char vec_r_[PADR_(const struct iovec *)];
10985f2336efSEd Maste 	char vlen_l_[PADL_(l_ulong)]; l_ulong vlen; char vlen_r_[PADR_(l_ulong)];
10995f2336efSEd Maste 	char pos_l_l_[PADL_(l_ulong)]; l_ulong pos_l; char pos_l_r_[PADR_(l_ulong)];
11005f2336efSEd Maste 	char pos_h_l_[PADL_(l_ulong)]; l_ulong pos_h; char pos_h_r_[PADR_(l_ulong)];
11015f2336efSEd Maste 	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
11025f2336efSEd Maste };
11035f2336efSEd Maste struct linux_pkey_mprotect_args {
11045f2336efSEd Maste 	char start_l_[PADL_(l_ulong)]; l_ulong start; char start_r_[PADR_(l_ulong)];
11055f2336efSEd Maste 	char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)];
11065f2336efSEd Maste 	char prot_l_[PADL_(l_ulong)]; l_ulong prot; char prot_r_[PADR_(l_ulong)];
11075f2336efSEd Maste 	char pkey_l_[PADL_(l_int)]; l_int pkey; char pkey_r_[PADR_(l_int)];
11085f2336efSEd Maste };
11095f2336efSEd Maste struct linux_pkey_alloc_args {
11105f2336efSEd Maste 	char flags_l_[PADL_(l_ulong)]; l_ulong flags; char flags_r_[PADR_(l_ulong)];
11115f2336efSEd Maste 	char init_val_l_[PADL_(l_ulong)]; l_ulong init_val; char init_val_r_[PADR_(l_ulong)];
11125f2336efSEd Maste };
11135f2336efSEd Maste struct linux_pkey_free_args {
11145f2336efSEd Maste 	char pkey_l_[PADL_(l_int)]; l_int pkey; char pkey_r_[PADR_(l_int)];
11155f2336efSEd Maste };
1116c0f17173SEdward Tomasz Napierala struct linux_statx_args {
1117c0f17173SEdward Tomasz Napierala 	char dirfd_l_[PADL_(l_int)]; l_int dirfd; char dirfd_r_[PADR_(l_int)];
1118c0f17173SEdward Tomasz Napierala 	char pathname_l_[PADL_(const char *)]; const char * pathname; char pathname_r_[PADR_(const char *)];
1119c0f17173SEdward Tomasz Napierala 	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
1120c0f17173SEdward Tomasz Napierala 	char mask_l_[PADL_(l_uint)]; l_uint mask; char mask_r_[PADR_(l_uint)];
1121c0f17173SEdward Tomasz Napierala 	char statxbuf_l_[PADL_(void *)]; void * statxbuf; char statxbuf_r_[PADR_(void *)];
1122c0f17173SEdward Tomasz Napierala };
1123c0f17173SEdward Tomasz Napierala struct linux_io_pgetevents_args {
11248601fca7SBrooks Davis 	syscallarg_t dummy;
1125c0f17173SEdward Tomasz Napierala };
1126c0f17173SEdward Tomasz Napierala struct linux_rseq_args {
112775e40949SDmitry Chagin 	char rseq_l_[PADL_(struct linux_rseq *)]; struct linux_rseq * rseq; char rseq_r_[PADR_(struct linux_rseq *)];
112875e40949SDmitry Chagin 	char rseq_len_l_[PADL_(uint32_t)]; uint32_t rseq_len; char rseq_len_r_[PADR_(uint32_t)];
112975e40949SDmitry Chagin 	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
113075e40949SDmitry Chagin 	char sig_l_[PADL_(uint32_t)]; uint32_t sig; char sig_r_[PADR_(uint32_t)];
1131c0f17173SEdward Tomasz Napierala };
1132c0f17173SEdward Tomasz Napierala struct linux_kexec_file_load_args {
11338601fca7SBrooks Davis 	syscallarg_t dummy;
1134c0f17173SEdward Tomasz Napierala };
1135c0f17173SEdward Tomasz Napierala struct linux_pidfd_send_signal_args {
1136c0f17173SEdward Tomasz Napierala 	char pidfd_l_[PADL_(l_int)]; l_int pidfd; char pidfd_r_[PADR_(l_int)];
1137c0f17173SEdward Tomasz Napierala 	char sig_l_[PADL_(l_int)]; l_int sig; char sig_r_[PADR_(l_int)];
1138c0f17173SEdward Tomasz Napierala 	char info_l_[PADL_(l_siginfo_t *)]; l_siginfo_t * info; char info_r_[PADR_(l_siginfo_t *)];
1139c0f17173SEdward Tomasz Napierala 	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
1140c0f17173SEdward Tomasz Napierala };
1141c0f17173SEdward Tomasz Napierala struct linux_io_uring_setup_args {
11428601fca7SBrooks Davis 	syscallarg_t dummy;
1143c0f17173SEdward Tomasz Napierala };
1144c0f17173SEdward Tomasz Napierala struct linux_io_uring_enter_args {
11458601fca7SBrooks Davis 	syscallarg_t dummy;
1146c0f17173SEdward Tomasz Napierala };
1147c0f17173SEdward Tomasz Napierala struct linux_io_uring_register_args {
11488601fca7SBrooks Davis 	syscallarg_t dummy;
1149c0f17173SEdward Tomasz Napierala };
1150c0f17173SEdward Tomasz Napierala struct linux_open_tree_args {
11518601fca7SBrooks Davis 	syscallarg_t dummy;
1152c0f17173SEdward Tomasz Napierala };
1153c0f17173SEdward Tomasz Napierala struct linux_move_mount_args {
11548601fca7SBrooks Davis 	syscallarg_t dummy;
1155c0f17173SEdward Tomasz Napierala };
1156c0f17173SEdward Tomasz Napierala struct linux_fsopen_args {
11578601fca7SBrooks Davis 	syscallarg_t dummy;
1158c0f17173SEdward Tomasz Napierala };
1159c0f17173SEdward Tomasz Napierala struct linux_fsconfig_args {
11608601fca7SBrooks Davis 	syscallarg_t dummy;
1161c0f17173SEdward Tomasz Napierala };
1162c0f17173SEdward Tomasz Napierala struct linux_fsmount_args {
11638601fca7SBrooks Davis 	syscallarg_t dummy;
1164c0f17173SEdward Tomasz Napierala };
1165c0f17173SEdward Tomasz Napierala struct linux_fspick_args {
11668601fca7SBrooks Davis 	syscallarg_t dummy;
1167c0f17173SEdward Tomasz Napierala };
1168c0f17173SEdward Tomasz Napierala struct linux_pidfd_open_args {
11698601fca7SBrooks Davis 	syscallarg_t dummy;
1170c0f17173SEdward Tomasz Napierala };
1171c0f17173SEdward Tomasz Napierala struct linux_clone3_args {
1172b356030eSDmitry Chagin 	char uargs_l_[PADL_(struct l_user_clone_args *)]; struct l_user_clone_args * uargs; char uargs_r_[PADR_(struct l_user_clone_args *)];
1173b356030eSDmitry Chagin 	char usize_l_[PADL_(l_size_t)]; l_size_t usize; char usize_r_[PADR_(l_size_t)];
1174c0f17173SEdward Tomasz Napierala };
1175c0f17173SEdward Tomasz Napierala struct linux_close_range_args {
117650111714SDmitry Chagin 	char first_l_[PADL_(l_uint)]; l_uint first; char first_r_[PADR_(l_uint)];
117750111714SDmitry Chagin 	char last_l_[PADL_(l_uint)]; l_uint last; char last_r_[PADR_(l_uint)];
117850111714SDmitry Chagin 	char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)];
1179c0f17173SEdward Tomasz Napierala };
1180c0f17173SEdward Tomasz Napierala struct linux_openat2_args {
11818601fca7SBrooks Davis 	syscallarg_t dummy;
1182c0f17173SEdward Tomasz Napierala };
1183c0f17173SEdward Tomasz Napierala struct linux_pidfd_getfd_args {
11848601fca7SBrooks Davis 	syscallarg_t dummy;
1185c0f17173SEdward Tomasz Napierala };
1186c0f17173SEdward Tomasz Napierala struct linux_faccessat2_args {
1187bee191e4SDmitry Chagin 	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
1188bee191e4SDmitry Chagin 	char filename_l_[PADL_(const char *)]; const char * filename; char filename_r_[PADR_(const char *)];
1189bee191e4SDmitry Chagin 	char amode_l_[PADL_(l_int)]; l_int amode; char amode_r_[PADR_(l_int)];
1190bee191e4SDmitry Chagin 	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
1191c0f17173SEdward Tomasz Napierala };
1192c0f17173SEdward Tomasz Napierala struct linux_process_madvise_args {
11938601fca7SBrooks Davis 	syscallarg_t dummy;
1194c0f17173SEdward Tomasz Napierala };
1195c0f17173SEdward Tomasz Napierala struct linux_epoll_pwait2_args {
1196df377f1fSDmitry Chagin 	char epfd_l_[PADL_(l_int)]; l_int epfd; char epfd_r_[PADR_(l_int)];
1197df377f1fSDmitry Chagin 	char events_l_[PADL_(struct epoll_event *)]; struct epoll_event * events; char events_r_[PADR_(struct epoll_event *)];
1198df377f1fSDmitry Chagin 	char maxevents_l_[PADL_(l_int)]; l_int maxevents; char maxevents_r_[PADR_(l_int)];
1199df377f1fSDmitry Chagin 	char timeout_l_[PADL_(struct l_timespec *)]; struct l_timespec * timeout; char timeout_r_[PADR_(struct l_timespec *)];
1200df377f1fSDmitry Chagin 	char mask_l_[PADL_(l_sigset_t *)]; l_sigset_t * mask; char mask_r_[PADR_(l_sigset_t *)];
1201df377f1fSDmitry Chagin 	char sigsetsize_l_[PADL_(l_size_t)]; l_size_t sigsetsize; char sigsetsize_r_[PADR_(l_size_t)];
1202c0f17173SEdward Tomasz Napierala };
1203c0f17173SEdward Tomasz Napierala struct linux_mount_setattr_args {
12048601fca7SBrooks Davis 	syscallarg_t dummy;
1205c0f17173SEdward Tomasz Napierala };
12065f2336efSEd Maste #define	nosys	linux_nosys
12075f2336efSEd Maste int	linux_setxattr(struct thread *, struct linux_setxattr_args *);
12085f2336efSEd Maste int	linux_lsetxattr(struct thread *, struct linux_lsetxattr_args *);
12095f2336efSEd Maste int	linux_fsetxattr(struct thread *, struct linux_fsetxattr_args *);
12105f2336efSEd Maste int	linux_getxattr(struct thread *, struct linux_getxattr_args *);
12115f2336efSEd Maste int	linux_lgetxattr(struct thread *, struct linux_lgetxattr_args *);
12125f2336efSEd Maste int	linux_fgetxattr(struct thread *, struct linux_fgetxattr_args *);
12135f2336efSEd Maste int	linux_listxattr(struct thread *, struct linux_listxattr_args *);
12145f2336efSEd Maste int	linux_llistxattr(struct thread *, struct linux_llistxattr_args *);
12155f2336efSEd Maste int	linux_flistxattr(struct thread *, struct linux_flistxattr_args *);
12165f2336efSEd Maste int	linux_removexattr(struct thread *, struct linux_removexattr_args *);
12175f2336efSEd Maste int	linux_lremovexattr(struct thread *, struct linux_lremovexattr_args *);
12185f2336efSEd Maste int	linux_fremovexattr(struct thread *, struct linux_fremovexattr_args *);
12195f2336efSEd Maste int	linux_getcwd(struct thread *, struct linux_getcwd_args *);
12205f2336efSEd Maste int	linux_lookup_dcookie(struct thread *, struct linux_lookup_dcookie_args *);
12215f2336efSEd Maste int	linux_eventfd2(struct thread *, struct linux_eventfd2_args *);
12225f2336efSEd Maste int	linux_epoll_create1(struct thread *, struct linux_epoll_create1_args *);
12235f2336efSEd Maste int	linux_epoll_ctl(struct thread *, struct linux_epoll_ctl_args *);
12245f2336efSEd Maste int	linux_epoll_pwait(struct thread *, struct linux_epoll_pwait_args *);
12255f2336efSEd Maste int	linux_dup3(struct thread *, struct linux_dup3_args *);
12265f2336efSEd Maste int	linux_fcntl(struct thread *, struct linux_fcntl_args *);
12275f2336efSEd Maste int	linux_inotify_init1(struct thread *, struct linux_inotify_init1_args *);
12285f2336efSEd Maste int	linux_inotify_add_watch(struct thread *, struct linux_inotify_add_watch_args *);
12295f2336efSEd Maste int	linux_inotify_rm_watch(struct thread *, struct linux_inotify_rm_watch_args *);
12305f2336efSEd Maste int	linux_ioctl(struct thread *, struct linux_ioctl_args *);
12315f2336efSEd Maste int	linux_ioprio_set(struct thread *, struct linux_ioprio_set_args *);
12325f2336efSEd Maste int	linux_ioprio_get(struct thread *, struct linux_ioprio_get_args *);
12335f2336efSEd Maste int	linux_mknodat(struct thread *, struct linux_mknodat_args *);
12345f2336efSEd Maste int	linux_mkdirat(struct thread *, struct linux_mkdirat_args *);
12355f2336efSEd Maste int	linux_unlinkat(struct thread *, struct linux_unlinkat_args *);
12365f2336efSEd Maste int	linux_symlinkat(struct thread *, struct linux_symlinkat_args *);
12375f2336efSEd Maste int	linux_linkat(struct thread *, struct linux_linkat_args *);
12385f2336efSEd Maste int	linux_renameat(struct thread *, struct linux_renameat_args *);
12395f2336efSEd Maste int	linux_mount(struct thread *, struct linux_mount_args *);
12405f2336efSEd Maste int	linux_pivot_root(struct thread *, struct linux_pivot_root_args *);
12415f2336efSEd Maste int	linux_statfs(struct thread *, struct linux_statfs_args *);
12425f2336efSEd Maste int	linux_fstatfs(struct thread *, struct linux_fstatfs_args *);
12435f2336efSEd Maste int	linux_truncate(struct thread *, struct linux_truncate_args *);
12445f2336efSEd Maste int	linux_ftruncate(struct thread *, struct linux_ftruncate_args *);
12455f2336efSEd Maste int	linux_fallocate(struct thread *, struct linux_fallocate_args *);
12465f2336efSEd Maste int	linux_faccessat(struct thread *, struct linux_faccessat_args *);
12475f2336efSEd Maste int	linux_chdir(struct thread *, struct linux_chdir_args *);
12485f2336efSEd Maste int	linux_fchmodat(struct thread *, struct linux_fchmodat_args *);
12495f2336efSEd Maste int	linux_fchownat(struct thread *, struct linux_fchownat_args *);
12505f2336efSEd Maste int	linux_openat(struct thread *, struct linux_openat_args *);
12515f2336efSEd Maste int	linux_vhangup(struct thread *, struct linux_vhangup_args *);
12525f2336efSEd Maste int	linux_pipe2(struct thread *, struct linux_pipe2_args *);
12535f2336efSEd Maste int	linux_getdents64(struct thread *, struct linux_getdents64_args *);
12545f2336efSEd Maste int	linux_lseek(struct thread *, struct linux_lseek_args *);
12555f2336efSEd Maste int	linux_pread(struct thread *, struct linux_pread_args *);
12565f2336efSEd Maste int	linux_pwrite(struct thread *, struct linux_pwrite_args *);
12575f2336efSEd Maste int	linux_preadv(struct thread *, struct linux_preadv_args *);
12585f2336efSEd Maste int	linux_pwritev(struct thread *, struct linux_pwritev_args *);
12595f2336efSEd Maste int	linux_sendfile(struct thread *, struct linux_sendfile_args *);
12605f2336efSEd Maste int	linux_pselect6(struct thread *, struct linux_pselect6_args *);
12615f2336efSEd Maste int	linux_ppoll(struct thread *, struct linux_ppoll_args *);
12625f2336efSEd Maste int	linux_signalfd4(struct thread *, struct linux_signalfd4_args *);
12635f2336efSEd Maste int	linux_vmsplice(struct thread *, struct linux_vmsplice_args *);
12645f2336efSEd Maste int	linux_splice(struct thread *, struct linux_splice_args *);
12655f2336efSEd Maste int	linux_tee(struct thread *, struct linux_tee_args *);
12665f2336efSEd Maste int	linux_readlinkat(struct thread *, struct linux_readlinkat_args *);
12675f2336efSEd Maste int	linux_newfstatat(struct thread *, struct linux_newfstatat_args *);
12685f2336efSEd Maste int	linux_newfstat(struct thread *, struct linux_newfstat_args *);
12695f2336efSEd Maste int	linux_fdatasync(struct thread *, struct linux_fdatasync_args *);
12705f2336efSEd Maste int	linux_sync_file_range(struct thread *, struct linux_sync_file_range_args *);
12715f2336efSEd Maste int	linux_timerfd_create(struct thread *, struct linux_timerfd_create_args *);
12725f2336efSEd Maste int	linux_timerfd_settime(struct thread *, struct linux_timerfd_settime_args *);
12735f2336efSEd Maste int	linux_timerfd_gettime(struct thread *, struct linux_timerfd_gettime_args *);
12745f2336efSEd Maste int	linux_utimensat(struct thread *, struct linux_utimensat_args *);
12755f2336efSEd Maste int	linux_capget(struct thread *, struct linux_capget_args *);
12765f2336efSEd Maste int	linux_capset(struct thread *, struct linux_capset_args *);
12775f2336efSEd Maste int	linux_personality(struct thread *, struct linux_personality_args *);
12785f2336efSEd Maste int	linux_exit(struct thread *, struct linux_exit_args *);
12795f2336efSEd Maste int	linux_exit_group(struct thread *, struct linux_exit_group_args *);
12805f2336efSEd Maste int	linux_waitid(struct thread *, struct linux_waitid_args *);
12815f2336efSEd Maste int	linux_set_tid_address(struct thread *, struct linux_set_tid_address_args *);
12825f2336efSEd Maste int	linux_unshare(struct thread *, struct linux_unshare_args *);
12835f2336efSEd Maste int	linux_sys_futex(struct thread *, struct linux_sys_futex_args *);
12845f2336efSEd Maste int	linux_set_robust_list(struct thread *, struct linux_set_robust_list_args *);
12855f2336efSEd Maste int	linux_get_robust_list(struct thread *, struct linux_get_robust_list_args *);
12865f2336efSEd Maste int	linux_nanosleep(struct thread *, struct linux_nanosleep_args *);
12875f2336efSEd Maste int	linux_getitimer(struct thread *, struct linux_getitimer_args *);
12885f2336efSEd Maste int	linux_setitimer(struct thread *, struct linux_setitimer_args *);
12895f2336efSEd Maste int	linux_kexec_load(struct thread *, struct linux_kexec_load_args *);
12905f2336efSEd Maste int	linux_init_module(struct thread *, struct linux_init_module_args *);
12915f2336efSEd Maste int	linux_delete_module(struct thread *, struct linux_delete_module_args *);
12925f2336efSEd Maste int	linux_timer_create(struct thread *, struct linux_timer_create_args *);
12935f2336efSEd Maste int	linux_timer_gettime(struct thread *, struct linux_timer_gettime_args *);
12945f2336efSEd Maste int	linux_timer_getoverrun(struct thread *, struct linux_timer_getoverrun_args *);
12955f2336efSEd Maste int	linux_timer_settime(struct thread *, struct linux_timer_settime_args *);
12965f2336efSEd Maste int	linux_timer_delete(struct thread *, struct linux_timer_delete_args *);
12975f2336efSEd Maste int	linux_clock_settime(struct thread *, struct linux_clock_settime_args *);
12985f2336efSEd Maste int	linux_clock_gettime(struct thread *, struct linux_clock_gettime_args *);
12995f2336efSEd Maste int	linux_clock_getres(struct thread *, struct linux_clock_getres_args *);
13005f2336efSEd Maste int	linux_clock_nanosleep(struct thread *, struct linux_clock_nanosleep_args *);
13015f2336efSEd Maste int	linux_syslog(struct thread *, struct linux_syslog_args *);
13025f2336efSEd Maste int	linux_ptrace(struct thread *, struct linux_ptrace_args *);
13035f2336efSEd Maste int	linux_sched_setparam(struct thread *, struct linux_sched_setparam_args *);
13045f2336efSEd Maste int	linux_sched_setscheduler(struct thread *, struct linux_sched_setscheduler_args *);
13055f2336efSEd Maste int	linux_sched_getscheduler(struct thread *, struct linux_sched_getscheduler_args *);
13065f2336efSEd Maste int	linux_sched_getparam(struct thread *, struct linux_sched_getparam_args *);
13075f2336efSEd Maste int	linux_sched_setaffinity(struct thread *, struct linux_sched_setaffinity_args *);
13085f2336efSEd Maste int	linux_sched_getaffinity(struct thread *, struct linux_sched_getaffinity_args *);
13095f2336efSEd Maste int	linux_sched_get_priority_max(struct thread *, struct linux_sched_get_priority_max_args *);
13105f2336efSEd Maste int	linux_sched_get_priority_min(struct thread *, struct linux_sched_get_priority_min_args *);
13115f2336efSEd Maste int	linux_sched_rr_get_interval(struct thread *, struct linux_sched_rr_get_interval_args *);
13125f2336efSEd Maste int	linux_kill(struct thread *, struct linux_kill_args *);
13135f2336efSEd Maste int	linux_tkill(struct thread *, struct linux_tkill_args *);
13145f2336efSEd Maste int	linux_tgkill(struct thread *, struct linux_tgkill_args *);
13155f2336efSEd Maste int	linux_sigaltstack(struct thread *, struct linux_sigaltstack_args *);
13165f2336efSEd Maste int	linux_rt_sigsuspend(struct thread *, struct linux_rt_sigsuspend_args *);
13175f2336efSEd Maste int	linux_rt_sigaction(struct thread *, struct linux_rt_sigaction_args *);
13185f2336efSEd Maste int	linux_rt_sigprocmask(struct thread *, struct linux_rt_sigprocmask_args *);
13195f2336efSEd Maste int	linux_rt_sigpending(struct thread *, struct linux_rt_sigpending_args *);
13205f2336efSEd Maste int	linux_rt_sigtimedwait(struct thread *, struct linux_rt_sigtimedwait_args *);
13215f2336efSEd Maste int	linux_rt_sigqueueinfo(struct thread *, struct linux_rt_sigqueueinfo_args *);
13225f2336efSEd Maste int	linux_rt_sigreturn(struct thread *, struct linux_rt_sigreturn_args *);
13235f2336efSEd Maste int	linux_getpriority(struct thread *, struct linux_getpriority_args *);
13245f2336efSEd Maste int	linux_reboot(struct thread *, struct linux_reboot_args *);
13255f2336efSEd Maste int	linux_setfsuid(struct thread *, struct linux_setfsuid_args *);
13265f2336efSEd Maste int	linux_setfsgid(struct thread *, struct linux_setfsgid_args *);
13275f2336efSEd Maste int	linux_times(struct thread *, struct linux_times_args *);
13285f2336efSEd Maste int	linux_getsid(struct thread *, struct linux_getsid_args *);
13295f2336efSEd Maste int	linux_getgroups(struct thread *, struct linux_getgroups_args *);
13305f2336efSEd Maste int	linux_setgroups(struct thread *, struct linux_setgroups_args *);
13315f2336efSEd Maste int	linux_newuname(struct thread *, struct linux_newuname_args *);
13325f2336efSEd Maste int	linux_sethostname(struct thread *, struct linux_sethostname_args *);
13335f2336efSEd Maste int	linux_setdomainname(struct thread *, struct linux_setdomainname_args *);
13345f2336efSEd Maste int	linux_getrlimit(struct thread *, struct linux_getrlimit_args *);
13355f2336efSEd Maste int	linux_setrlimit(struct thread *, struct linux_setrlimit_args *);
13365f2336efSEd Maste int	linux_prctl(struct thread *, struct linux_prctl_args *);
13375f2336efSEd Maste int	linux_getcpu(struct thread *, struct linux_getcpu_args *);
13385f2336efSEd Maste int	linux_adjtimex(struct thread *, struct linux_adjtimex_args *);
13395f2336efSEd Maste int	linux_getpid(struct thread *, struct linux_getpid_args *);
13405f2336efSEd Maste int	linux_getppid(struct thread *, struct linux_getppid_args *);
13415f2336efSEd Maste int	linux_getuid(struct thread *, struct linux_getuid_args *);
13425f2336efSEd Maste int	linux_getgid(struct thread *, struct linux_getgid_args *);
13435f2336efSEd Maste int	linux_gettid(struct thread *, struct linux_gettid_args *);
13445f2336efSEd Maste int	linux_sysinfo(struct thread *, struct linux_sysinfo_args *);
13455f2336efSEd Maste int	linux_mq_open(struct thread *, struct linux_mq_open_args *);
13465f2336efSEd Maste int	linux_mq_unlink(struct thread *, struct linux_mq_unlink_args *);
13475f2336efSEd Maste int	linux_mq_timedsend(struct thread *, struct linux_mq_timedsend_args *);
13485f2336efSEd Maste int	linux_mq_timedreceive(struct thread *, struct linux_mq_timedreceive_args *);
13495f2336efSEd Maste int	linux_mq_notify(struct thread *, struct linux_mq_notify_args *);
13505f2336efSEd Maste int	linux_mq_getsetattr(struct thread *, struct linux_mq_getsetattr_args *);
13515f2336efSEd Maste int	linux_msgget(struct thread *, struct linux_msgget_args *);
13525f2336efSEd Maste int	linux_msgctl(struct thread *, struct linux_msgctl_args *);
13535f2336efSEd Maste int	linux_msgrcv(struct thread *, struct linux_msgrcv_args *);
13545f2336efSEd Maste int	linux_msgsnd(struct thread *, struct linux_msgsnd_args *);
13555f2336efSEd Maste int	linux_semget(struct thread *, struct linux_semget_args *);
13565f2336efSEd Maste int	linux_semctl(struct thread *, struct linux_semctl_args *);
13575f2336efSEd Maste int	linux_semtimedop(struct thread *, struct linux_semtimedop_args *);
13585f2336efSEd Maste int	linux_shmget(struct thread *, struct linux_shmget_args *);
13595f2336efSEd Maste int	linux_shmctl(struct thread *, struct linux_shmctl_args *);
13605f2336efSEd Maste int	linux_shmat(struct thread *, struct linux_shmat_args *);
13615f2336efSEd Maste int	linux_shmdt(struct thread *, struct linux_shmdt_args *);
13625f2336efSEd Maste int	linux_socket(struct thread *, struct linux_socket_args *);
13635f2336efSEd Maste int	linux_socketpair(struct thread *, struct linux_socketpair_args *);
13645f2336efSEd Maste int	linux_bind(struct thread *, struct linux_bind_args *);
13655f2336efSEd Maste int	linux_listen(struct thread *, struct linux_listen_args *);
13665f2336efSEd Maste int	linux_accept(struct thread *, struct linux_accept_args *);
13675f2336efSEd Maste int	linux_connect(struct thread *, struct linux_connect_args *);
13685f2336efSEd Maste int	linux_getsockname(struct thread *, struct linux_getsockname_args *);
13695f2336efSEd Maste int	linux_getpeername(struct thread *, struct linux_getpeername_args *);
13705f2336efSEd Maste int	linux_sendto(struct thread *, struct linux_sendto_args *);
13715f2336efSEd Maste int	linux_recvfrom(struct thread *, struct linux_recvfrom_args *);
13725f2336efSEd Maste int	linux_setsockopt(struct thread *, struct linux_setsockopt_args *);
13735f2336efSEd Maste int	linux_getsockopt(struct thread *, struct linux_getsockopt_args *);
13745f2336efSEd Maste int	linux_shutdown(struct thread *, struct linux_shutdown_args *);
13755f2336efSEd Maste int	linux_sendmsg(struct thread *, struct linux_sendmsg_args *);
13765f2336efSEd Maste int	linux_recvmsg(struct thread *, struct linux_recvmsg_args *);
13775f2336efSEd Maste int	linux_brk(struct thread *, struct linux_brk_args *);
13785f2336efSEd Maste int	linux_mremap(struct thread *, struct linux_mremap_args *);
13795f2336efSEd Maste int	linux_add_key(struct thread *, struct linux_add_key_args *);
13805f2336efSEd Maste int	linux_request_key(struct thread *, struct linux_request_key_args *);
13815f2336efSEd Maste int	linux_keyctl(struct thread *, struct linux_keyctl_args *);
13825f2336efSEd Maste int	linux_clone(struct thread *, struct linux_clone_args *);
13835f2336efSEd Maste int	linux_execve(struct thread *, struct linux_execve_args *);
13845f2336efSEd Maste int	linux_mmap2(struct thread *, struct linux_mmap2_args *);
13855f2336efSEd Maste int	linux_fadvise64(struct thread *, struct linux_fadvise64_args *);
13865f2336efSEd Maste int	linux_swapoff(struct thread *, struct linux_swapoff_args *);
13875f2336efSEd Maste int	linux_mprotect(struct thread *, struct linux_mprotect_args *);
13885f2336efSEd Maste int	linux_msync(struct thread *, struct linux_msync_args *);
13895f2336efSEd Maste int	linux_mincore(struct thread *, struct linux_mincore_args *);
1390bafd96b8SEdward Tomasz Napierala int	linux_madvise(struct thread *, struct linux_madvise_args *);
13915f2336efSEd Maste int	linux_remap_file_pages(struct thread *, struct linux_remap_file_pages_args *);
13925f2336efSEd Maste int	linux_mbind(struct thread *, struct linux_mbind_args *);
13935f2336efSEd Maste int	linux_get_mempolicy(struct thread *, struct linux_get_mempolicy_args *);
13945f2336efSEd Maste int	linux_set_mempolicy(struct thread *, struct linux_set_mempolicy_args *);
13955f2336efSEd Maste int	linux_migrate_pages(struct thread *, struct linux_migrate_pages_args *);
13965f2336efSEd Maste int	linux_move_pages(struct thread *, struct linux_move_pages_args *);
13975f2336efSEd Maste int	linux_rt_tgsigqueueinfo(struct thread *, struct linux_rt_tgsigqueueinfo_args *);
13985f2336efSEd Maste int	linux_perf_event_open(struct thread *, struct linux_perf_event_open_args *);
13995f2336efSEd Maste int	linux_accept4(struct thread *, struct linux_accept4_args *);
14005f2336efSEd Maste int	linux_recvmmsg(struct thread *, struct linux_recvmmsg_args *);
14015f2336efSEd Maste int	linux_wait4(struct thread *, struct linux_wait4_args *);
14025f2336efSEd Maste int	linux_prlimit64(struct thread *, struct linux_prlimit64_args *);
14035f2336efSEd Maste int	linux_fanotify_init(struct thread *, struct linux_fanotify_init_args *);
14045f2336efSEd Maste int	linux_fanotify_mark(struct thread *, struct linux_fanotify_mark_args *);
14055f2336efSEd Maste int	linux_name_to_handle_at(struct thread *, struct linux_name_to_handle_at_args *);
14065f2336efSEd Maste int	linux_open_by_handle_at(struct thread *, struct linux_open_by_handle_at_args *);
14075f2336efSEd Maste int	linux_clock_adjtime(struct thread *, struct linux_clock_adjtime_args *);
14085f2336efSEd Maste int	linux_syncfs(struct thread *, struct linux_syncfs_args *);
14095f2336efSEd Maste int	linux_setns(struct thread *, struct linux_setns_args *);
14105f2336efSEd Maste int	linux_sendmmsg(struct thread *, struct linux_sendmmsg_args *);
14115f2336efSEd Maste int	linux_process_vm_readv(struct thread *, struct linux_process_vm_readv_args *);
14125f2336efSEd Maste int	linux_process_vm_writev(struct thread *, struct linux_process_vm_writev_args *);
14135f2336efSEd Maste int	linux_kcmp(struct thread *, struct linux_kcmp_args *);
14145f2336efSEd Maste int	linux_finit_module(struct thread *, struct linux_finit_module_args *);
14155f2336efSEd Maste int	linux_sched_setattr(struct thread *, struct linux_sched_setattr_args *);
14165f2336efSEd Maste int	linux_sched_getattr(struct thread *, struct linux_sched_getattr_args *);
14175f2336efSEd Maste int	linux_renameat2(struct thread *, struct linux_renameat2_args *);
14185f2336efSEd Maste int	linux_seccomp(struct thread *, struct linux_seccomp_args *);
14195f2336efSEd Maste int	linux_getrandom(struct thread *, struct linux_getrandom_args *);
14205f2336efSEd Maste int	linux_memfd_create(struct thread *, struct linux_memfd_create_args *);
14215f2336efSEd Maste int	linux_bpf(struct thread *, struct linux_bpf_args *);
14225f2336efSEd Maste int	linux_execveat(struct thread *, struct linux_execveat_args *);
14235f2336efSEd Maste int	linux_userfaultfd(struct thread *, struct linux_userfaultfd_args *);
14245f2336efSEd Maste int	linux_membarrier(struct thread *, struct linux_membarrier_args *);
14255f2336efSEd Maste int	linux_mlock2(struct thread *, struct linux_mlock2_args *);
14265f2336efSEd Maste int	linux_copy_file_range(struct thread *, struct linux_copy_file_range_args *);
14275f2336efSEd Maste int	linux_preadv2(struct thread *, struct linux_preadv2_args *);
14285f2336efSEd Maste int	linux_pwritev2(struct thread *, struct linux_pwritev2_args *);
14295f2336efSEd Maste int	linux_pkey_mprotect(struct thread *, struct linux_pkey_mprotect_args *);
14305f2336efSEd Maste int	linux_pkey_alloc(struct thread *, struct linux_pkey_alloc_args *);
14315f2336efSEd Maste int	linux_pkey_free(struct thread *, struct linux_pkey_free_args *);
1432c0f17173SEdward Tomasz Napierala int	linux_statx(struct thread *, struct linux_statx_args *);
1433c0f17173SEdward Tomasz Napierala int	linux_io_pgetevents(struct thread *, struct linux_io_pgetevents_args *);
1434c0f17173SEdward Tomasz Napierala int	linux_rseq(struct thread *, struct linux_rseq_args *);
1435c0f17173SEdward Tomasz Napierala int	linux_kexec_file_load(struct thread *, struct linux_kexec_file_load_args *);
1436c0f17173SEdward Tomasz Napierala int	linux_pidfd_send_signal(struct thread *, struct linux_pidfd_send_signal_args *);
1437c0f17173SEdward Tomasz Napierala int	linux_io_uring_setup(struct thread *, struct linux_io_uring_setup_args *);
1438c0f17173SEdward Tomasz Napierala int	linux_io_uring_enter(struct thread *, struct linux_io_uring_enter_args *);
1439c0f17173SEdward Tomasz Napierala int	linux_io_uring_register(struct thread *, struct linux_io_uring_register_args *);
1440c0f17173SEdward Tomasz Napierala int	linux_open_tree(struct thread *, struct linux_open_tree_args *);
1441c0f17173SEdward Tomasz Napierala int	linux_move_mount(struct thread *, struct linux_move_mount_args *);
1442c0f17173SEdward Tomasz Napierala int	linux_fsopen(struct thread *, struct linux_fsopen_args *);
1443c0f17173SEdward Tomasz Napierala int	linux_fsconfig(struct thread *, struct linux_fsconfig_args *);
1444c0f17173SEdward Tomasz Napierala int	linux_fsmount(struct thread *, struct linux_fsmount_args *);
1445c0f17173SEdward Tomasz Napierala int	linux_fspick(struct thread *, struct linux_fspick_args *);
1446c0f17173SEdward Tomasz Napierala int	linux_pidfd_open(struct thread *, struct linux_pidfd_open_args *);
1447c0f17173SEdward Tomasz Napierala int	linux_clone3(struct thread *, struct linux_clone3_args *);
1448c0f17173SEdward Tomasz Napierala int	linux_close_range(struct thread *, struct linux_close_range_args *);
1449c0f17173SEdward Tomasz Napierala int	linux_openat2(struct thread *, struct linux_openat2_args *);
1450c0f17173SEdward Tomasz Napierala int	linux_pidfd_getfd(struct thread *, struct linux_pidfd_getfd_args *);
1451c0f17173SEdward Tomasz Napierala int	linux_faccessat2(struct thread *, struct linux_faccessat2_args *);
1452c0f17173SEdward Tomasz Napierala int	linux_process_madvise(struct thread *, struct linux_process_madvise_args *);
1453c0f17173SEdward Tomasz Napierala int	linux_epoll_pwait2(struct thread *, struct linux_epoll_pwait2_args *);
1454c0f17173SEdward Tomasz Napierala int	linux_mount_setattr(struct thread *, struct linux_mount_setattr_args *);
14555f2336efSEd Maste #define	LINUX_SYS_AUE_linux_setxattr	AUE_NULL
14565f2336efSEd Maste #define	LINUX_SYS_AUE_linux_lsetxattr	AUE_NULL
14575f2336efSEd Maste #define	LINUX_SYS_AUE_linux_fsetxattr	AUE_NULL
14585f2336efSEd Maste #define	LINUX_SYS_AUE_linux_getxattr	AUE_NULL
14595f2336efSEd Maste #define	LINUX_SYS_AUE_linux_lgetxattr	AUE_NULL
14605f2336efSEd Maste #define	LINUX_SYS_AUE_linux_fgetxattr	AUE_NULL
14615f2336efSEd Maste #define	LINUX_SYS_AUE_linux_listxattr	AUE_NULL
14625f2336efSEd Maste #define	LINUX_SYS_AUE_linux_llistxattr	AUE_NULL
14635f2336efSEd Maste #define	LINUX_SYS_AUE_linux_flistxattr	AUE_NULL
14645f2336efSEd Maste #define	LINUX_SYS_AUE_linux_removexattr	AUE_NULL
14655f2336efSEd Maste #define	LINUX_SYS_AUE_linux_lremovexattr	AUE_NULL
14665f2336efSEd Maste #define	LINUX_SYS_AUE_linux_fremovexattr	AUE_NULL
14675f2336efSEd Maste #define	LINUX_SYS_AUE_linux_getcwd	AUE_GETCWD
14685f2336efSEd Maste #define	LINUX_SYS_AUE_linux_lookup_dcookie	AUE_NULL
14695f2336efSEd Maste #define	LINUX_SYS_AUE_linux_eventfd2	AUE_NULL
14705f2336efSEd Maste #define	LINUX_SYS_AUE_linux_epoll_create1	AUE_NULL
14715f2336efSEd Maste #define	LINUX_SYS_AUE_linux_epoll_ctl	AUE_NULL
14725f2336efSEd Maste #define	LINUX_SYS_AUE_linux_epoll_pwait	AUE_NULL
14735f2336efSEd Maste #define	LINUX_SYS_AUE_linux_dup3	AUE_NULL
14745f2336efSEd Maste #define	LINUX_SYS_AUE_linux_fcntl	AUE_FCNTL
14755f2336efSEd Maste #define	LINUX_SYS_AUE_linux_inotify_init1	AUE_NULL
14765f2336efSEd Maste #define	LINUX_SYS_AUE_linux_inotify_add_watch	AUE_NULL
14775f2336efSEd Maste #define	LINUX_SYS_AUE_linux_inotify_rm_watch	AUE_NULL
14785f2336efSEd Maste #define	LINUX_SYS_AUE_linux_ioctl	AUE_IOCTL
14795f2336efSEd Maste #define	LINUX_SYS_AUE_linux_ioprio_set	AUE_NULL
14805f2336efSEd Maste #define	LINUX_SYS_AUE_linux_ioprio_get	AUE_NULL
14815f2336efSEd Maste #define	LINUX_SYS_AUE_linux_mknodat	AUE_MKNODAT
14825f2336efSEd Maste #define	LINUX_SYS_AUE_linux_mkdirat	AUE_MKDIRAT
14835f2336efSEd Maste #define	LINUX_SYS_AUE_linux_unlinkat	AUE_UNLINKAT
14845f2336efSEd Maste #define	LINUX_SYS_AUE_linux_symlinkat	AUE_SYMLINKAT
14855f2336efSEd Maste #define	LINUX_SYS_AUE_linux_linkat	AUE_LINKAT
14865f2336efSEd Maste #define	LINUX_SYS_AUE_linux_renameat	AUE_RENAMEAT
14875f2336efSEd Maste #define	LINUX_SYS_AUE_linux_mount	AUE_MOUNT
14885f2336efSEd Maste #define	LINUX_SYS_AUE_linux_pivot_root	AUE_PIVOT_ROOT
14895f2336efSEd Maste #define	LINUX_SYS_AUE_linux_statfs	AUE_STATFS
14905f2336efSEd Maste #define	LINUX_SYS_AUE_linux_fstatfs	AUE_FSTATFS
14915f2336efSEd Maste #define	LINUX_SYS_AUE_linux_truncate	AUE_TRUNCATE
14925f2336efSEd Maste #define	LINUX_SYS_AUE_linux_ftruncate	AUE_FTRUNCATE
14935f2336efSEd Maste #define	LINUX_SYS_AUE_linux_fallocate	AUE_NULL
14945f2336efSEd Maste #define	LINUX_SYS_AUE_linux_faccessat	AUE_FACCESSAT
14955f2336efSEd Maste #define	LINUX_SYS_AUE_linux_chdir	AUE_CHDIR
14965f2336efSEd Maste #define	LINUX_SYS_AUE_linux_fchmodat	AUE_FCHMODAT
14975f2336efSEd Maste #define	LINUX_SYS_AUE_linux_fchownat	AUE_FCHOWNAT
14985f2336efSEd Maste #define	LINUX_SYS_AUE_linux_openat	AUE_OPEN_RWTC
14995f2336efSEd Maste #define	LINUX_SYS_AUE_linux_vhangup	AUE_NULL
15005f2336efSEd Maste #define	LINUX_SYS_AUE_linux_pipe2	AUE_NULL
15015f2336efSEd Maste #define	LINUX_SYS_AUE_linux_getdents64	AUE_GETDIRENTRIES
15025f2336efSEd Maste #define	LINUX_SYS_AUE_linux_lseek	AUE_LSEEK
15035f2336efSEd Maste #define	LINUX_SYS_AUE_linux_pread	AUE_PREAD
15045f2336efSEd Maste #define	LINUX_SYS_AUE_linux_pwrite	AUE_PWRITE
15055f2336efSEd Maste #define	LINUX_SYS_AUE_linux_preadv	AUE_NULL
15065f2336efSEd Maste #define	LINUX_SYS_AUE_linux_pwritev	AUE_NULL
15075f2336efSEd Maste #define	LINUX_SYS_AUE_linux_sendfile	AUE_SENDFILE
15085f2336efSEd Maste #define	LINUX_SYS_AUE_linux_pselect6	AUE_SELECT
15095f2336efSEd Maste #define	LINUX_SYS_AUE_linux_ppoll	AUE_POLL
15105f2336efSEd Maste #define	LINUX_SYS_AUE_linux_signalfd4	AUE_NULL
15115f2336efSEd Maste #define	LINUX_SYS_AUE_linux_vmsplice	AUE_NULL
15125f2336efSEd Maste #define	LINUX_SYS_AUE_linux_splice	AUE_NULL
15135f2336efSEd Maste #define	LINUX_SYS_AUE_linux_tee	AUE_NULL
15145f2336efSEd Maste #define	LINUX_SYS_AUE_linux_readlinkat	AUE_READLINKAT
15155f2336efSEd Maste #define	LINUX_SYS_AUE_linux_newfstatat	AUE_FSTATAT
15165f2336efSEd Maste #define	LINUX_SYS_AUE_linux_newfstat	AUE_FSTAT
15175f2336efSEd Maste #define	LINUX_SYS_AUE_linux_fdatasync	AUE_NULL
15185f2336efSEd Maste #define	LINUX_SYS_AUE_linux_sync_file_range	AUE_NULL
15195f2336efSEd Maste #define	LINUX_SYS_AUE_linux_timerfd_create	AUE_NULL
15205f2336efSEd Maste #define	LINUX_SYS_AUE_linux_timerfd_settime	AUE_NULL
15215f2336efSEd Maste #define	LINUX_SYS_AUE_linux_timerfd_gettime	AUE_NULL
15225f2336efSEd Maste #define	LINUX_SYS_AUE_linux_utimensat	AUE_FUTIMESAT
15235f2336efSEd Maste #define	LINUX_SYS_AUE_linux_capget	AUE_CAPGET
15245f2336efSEd Maste #define	LINUX_SYS_AUE_linux_capset	AUE_CAPSET
15255f2336efSEd Maste #define	LINUX_SYS_AUE_linux_personality	AUE_PERSONALITY
15265f2336efSEd Maste #define	LINUX_SYS_AUE_linux_exit	AUE_EXIT
15275f2336efSEd Maste #define	LINUX_SYS_AUE_linux_exit_group	AUE_EXIT
15285f2336efSEd Maste #define	LINUX_SYS_AUE_linux_waitid	AUE_WAIT6
15295f2336efSEd Maste #define	LINUX_SYS_AUE_linux_set_tid_address	AUE_NULL
15305f2336efSEd Maste #define	LINUX_SYS_AUE_linux_unshare	AUE_NULL
15315f2336efSEd Maste #define	LINUX_SYS_AUE_linux_sys_futex	AUE_NULL
15325f2336efSEd Maste #define	LINUX_SYS_AUE_linux_set_robust_list	AUE_NULL
15335f2336efSEd Maste #define	LINUX_SYS_AUE_linux_get_robust_list	AUE_NULL
15345f2336efSEd Maste #define	LINUX_SYS_AUE_linux_nanosleep	AUE_NULL
15355f2336efSEd Maste #define	LINUX_SYS_AUE_linux_getitimer	AUE_GETITIMER
15365f2336efSEd Maste #define	LINUX_SYS_AUE_linux_setitimer	AUE_SETITIMER
15375f2336efSEd Maste #define	LINUX_SYS_AUE_linux_kexec_load	AUE_NULL
15385f2336efSEd Maste #define	LINUX_SYS_AUE_linux_init_module	AUE_NULL
15395f2336efSEd Maste #define	LINUX_SYS_AUE_linux_delete_module	AUE_NULL
15405f2336efSEd Maste #define	LINUX_SYS_AUE_linux_timer_create	AUE_NULL
15415f2336efSEd Maste #define	LINUX_SYS_AUE_linux_timer_gettime	AUE_NULL
15425f2336efSEd Maste #define	LINUX_SYS_AUE_linux_timer_getoverrun	AUE_NULL
15435f2336efSEd Maste #define	LINUX_SYS_AUE_linux_timer_settime	AUE_NULL
15445f2336efSEd Maste #define	LINUX_SYS_AUE_linux_timer_delete	AUE_NULL
15455f2336efSEd Maste #define	LINUX_SYS_AUE_linux_clock_settime	AUE_CLOCK_SETTIME
15465f2336efSEd Maste #define	LINUX_SYS_AUE_linux_clock_gettime	AUE_NULL
15475f2336efSEd Maste #define	LINUX_SYS_AUE_linux_clock_getres	AUE_NULL
15485f2336efSEd Maste #define	LINUX_SYS_AUE_linux_clock_nanosleep	AUE_NULL
15495f2336efSEd Maste #define	LINUX_SYS_AUE_linux_syslog	AUE_NULL
15505f2336efSEd Maste #define	LINUX_SYS_AUE_linux_ptrace	AUE_PTRACE
15515f2336efSEd Maste #define	LINUX_SYS_AUE_linux_sched_setparam	AUE_SCHED_SETPARAM
15525f2336efSEd Maste #define	LINUX_SYS_AUE_linux_sched_setscheduler	AUE_SCHED_SETSCHEDULER
15535f2336efSEd Maste #define	LINUX_SYS_AUE_linux_sched_getscheduler	AUE_SCHED_GETSCHEDULER
15545f2336efSEd Maste #define	LINUX_SYS_AUE_linux_sched_getparam	AUE_SCHED_GETPARAM
15555f2336efSEd Maste #define	LINUX_SYS_AUE_linux_sched_setaffinity	AUE_NULL
15565f2336efSEd Maste #define	LINUX_SYS_AUE_linux_sched_getaffinity	AUE_NULL
15575f2336efSEd Maste #define	LINUX_SYS_AUE_linux_sched_get_priority_max	AUE_SCHED_GET_PRIORITY_MAX
15585f2336efSEd Maste #define	LINUX_SYS_AUE_linux_sched_get_priority_min	AUE_SCHED_GET_PRIORITY_MIN
15595f2336efSEd Maste #define	LINUX_SYS_AUE_linux_sched_rr_get_interval	AUE_SCHED_RR_GET_INTERVAL
15605f2336efSEd Maste #define	LINUX_SYS_AUE_linux_kill	AUE_KILL
15615f2336efSEd Maste #define	LINUX_SYS_AUE_linux_tkill	AUE_NULL
15625f2336efSEd Maste #define	LINUX_SYS_AUE_linux_tgkill	AUE_NULL
15635f2336efSEd Maste #define	LINUX_SYS_AUE_linux_sigaltstack	AUE_NULL
15645f2336efSEd Maste #define	LINUX_SYS_AUE_linux_rt_sigsuspend	AUE_NULL
15655f2336efSEd Maste #define	LINUX_SYS_AUE_linux_rt_sigaction	AUE_NULL
15665f2336efSEd Maste #define	LINUX_SYS_AUE_linux_rt_sigprocmask	AUE_NULL
15675f2336efSEd Maste #define	LINUX_SYS_AUE_linux_rt_sigpending	AUE_NULL
15685f2336efSEd Maste #define	LINUX_SYS_AUE_linux_rt_sigtimedwait	AUE_NULL
15695f2336efSEd Maste #define	LINUX_SYS_AUE_linux_rt_sigqueueinfo	AUE_NULL
15705f2336efSEd Maste #define	LINUX_SYS_AUE_linux_rt_sigreturn	AUE_NULL
15715f2336efSEd Maste #define	LINUX_SYS_AUE_linux_getpriority	AUE_GETPRIORITY
15725f2336efSEd Maste #define	LINUX_SYS_AUE_linux_reboot	AUE_REBOOT
15735f2336efSEd Maste #define	LINUX_SYS_AUE_linux_setfsuid	AUE_SETFSUID
15745f2336efSEd Maste #define	LINUX_SYS_AUE_linux_setfsgid	AUE_SETFSGID
15755f2336efSEd Maste #define	LINUX_SYS_AUE_linux_times	AUE_NULL
15765f2336efSEd Maste #define	LINUX_SYS_AUE_linux_getsid	AUE_GETSID
15775f2336efSEd Maste #define	LINUX_SYS_AUE_linux_getgroups	AUE_GETGROUPS
15785f2336efSEd Maste #define	LINUX_SYS_AUE_linux_setgroups	AUE_SETGROUPS
15795f2336efSEd Maste #define	LINUX_SYS_AUE_linux_newuname	AUE_NULL
15805f2336efSEd Maste #define	LINUX_SYS_AUE_linux_sethostname	AUE_SYSCTL
15815f2336efSEd Maste #define	LINUX_SYS_AUE_linux_setdomainname	AUE_SYSCTL
15825f2336efSEd Maste #define	LINUX_SYS_AUE_linux_getrlimit	AUE_GETRLIMIT
15835f2336efSEd Maste #define	LINUX_SYS_AUE_linux_setrlimit	AUE_SETRLIMIT
15845f2336efSEd Maste #define	LINUX_SYS_AUE_linux_prctl	AUE_PRCTL
15855f2336efSEd Maste #define	LINUX_SYS_AUE_linux_getcpu	AUE_NULL
15865f2336efSEd Maste #define	LINUX_SYS_AUE_linux_adjtimex	AUE_ADJTIME
15875f2336efSEd Maste #define	LINUX_SYS_AUE_linux_getpid	AUE_GETPID
15885f2336efSEd Maste #define	LINUX_SYS_AUE_linux_getppid	AUE_GETPPID
15895f2336efSEd Maste #define	LINUX_SYS_AUE_linux_getuid	AUE_GETUID
15905f2336efSEd Maste #define	LINUX_SYS_AUE_linux_getgid	AUE_GETGID
15915f2336efSEd Maste #define	LINUX_SYS_AUE_linux_gettid	AUE_NULL
15925f2336efSEd Maste #define	LINUX_SYS_AUE_linux_sysinfo	AUE_NULL
15935f2336efSEd Maste #define	LINUX_SYS_AUE_linux_mq_open	AUE_NULL
15945f2336efSEd Maste #define	LINUX_SYS_AUE_linux_mq_unlink	AUE_NULL
15955f2336efSEd Maste #define	LINUX_SYS_AUE_linux_mq_timedsend	AUE_NULL
15965f2336efSEd Maste #define	LINUX_SYS_AUE_linux_mq_timedreceive	AUE_NULL
15975f2336efSEd Maste #define	LINUX_SYS_AUE_linux_mq_notify	AUE_NULL
15985f2336efSEd Maste #define	LINUX_SYS_AUE_linux_mq_getsetattr	AUE_NULL
15995f2336efSEd Maste #define	LINUX_SYS_AUE_linux_msgget	AUE_NULL
16005f2336efSEd Maste #define	LINUX_SYS_AUE_linux_msgctl	AUE_NULL
16015f2336efSEd Maste #define	LINUX_SYS_AUE_linux_msgrcv	AUE_NULL
16025f2336efSEd Maste #define	LINUX_SYS_AUE_linux_msgsnd	AUE_NULL
16035f2336efSEd Maste #define	LINUX_SYS_AUE_linux_semget	AUE_NULL
16045f2336efSEd Maste #define	LINUX_SYS_AUE_linux_semctl	AUE_NULL
16055f2336efSEd Maste #define	LINUX_SYS_AUE_linux_semtimedop	AUE_NULL
16065f2336efSEd Maste #define	LINUX_SYS_AUE_linux_shmget	AUE_NULL
16075f2336efSEd Maste #define	LINUX_SYS_AUE_linux_shmctl	AUE_NULL
16085f2336efSEd Maste #define	LINUX_SYS_AUE_linux_shmat	AUE_NULL
16095f2336efSEd Maste #define	LINUX_SYS_AUE_linux_shmdt	AUE_NULL
16105f2336efSEd Maste #define	LINUX_SYS_AUE_linux_socket	AUE_SOCKET
16115f2336efSEd Maste #define	LINUX_SYS_AUE_linux_socketpair	AUE_SOCKETPAIR
16125f2336efSEd Maste #define	LINUX_SYS_AUE_linux_bind	AUE_BIND
16135f2336efSEd Maste #define	LINUX_SYS_AUE_linux_listen	AUE_LISTEN
16145f2336efSEd Maste #define	LINUX_SYS_AUE_linux_accept	AUE_ACCEPT
16155f2336efSEd Maste #define	LINUX_SYS_AUE_linux_connect	AUE_CONNECT
16165f2336efSEd Maste #define	LINUX_SYS_AUE_linux_getsockname	AUE_GETSOCKNAME
16175f2336efSEd Maste #define	LINUX_SYS_AUE_linux_getpeername	AUE_GETPEERNAME
16185f2336efSEd Maste #define	LINUX_SYS_AUE_linux_sendto	AUE_SENDTO
16195f2336efSEd Maste #define	LINUX_SYS_AUE_linux_recvfrom	AUE_RECVFROM
16205f2336efSEd Maste #define	LINUX_SYS_AUE_linux_setsockopt	AUE_SETSOCKOPT
16215f2336efSEd Maste #define	LINUX_SYS_AUE_linux_getsockopt	AUE_GETSOCKOPT
16225f2336efSEd Maste #define	LINUX_SYS_AUE_linux_shutdown	AUE_NULL
16235f2336efSEd Maste #define	LINUX_SYS_AUE_linux_sendmsg	AUE_SENDMSG
16245f2336efSEd Maste #define	LINUX_SYS_AUE_linux_recvmsg	AUE_RECVMSG
16255f2336efSEd Maste #define	LINUX_SYS_AUE_linux_brk	AUE_NULL
16265f2336efSEd Maste #define	LINUX_SYS_AUE_linux_mremap	AUE_NULL
16275f2336efSEd Maste #define	LINUX_SYS_AUE_linux_add_key	AUE_NULL
16285f2336efSEd Maste #define	LINUX_SYS_AUE_linux_request_key	AUE_NULL
16295f2336efSEd Maste #define	LINUX_SYS_AUE_linux_keyctl	AUE_NULL
16305f2336efSEd Maste #define	LINUX_SYS_AUE_linux_clone	AUE_RFORK
16315f2336efSEd Maste #define	LINUX_SYS_AUE_linux_execve	AUE_EXECVE
16325f2336efSEd Maste #define	LINUX_SYS_AUE_linux_mmap2	AUE_MMAP
16335f2336efSEd Maste #define	LINUX_SYS_AUE_linux_fadvise64	AUE_NULL
16345f2336efSEd Maste #define	LINUX_SYS_AUE_linux_swapoff	AUE_SWAPOFF
16355f2336efSEd Maste #define	LINUX_SYS_AUE_linux_mprotect	AUE_MPROTECT
16365f2336efSEd Maste #define	LINUX_SYS_AUE_linux_msync	AUE_MSYNC
16375f2336efSEd Maste #define	LINUX_SYS_AUE_linux_mincore	AUE_MINCORE
1638bafd96b8SEdward Tomasz Napierala #define	LINUX_SYS_AUE_linux_madvise	AUE_MADVISE
16395f2336efSEd Maste #define	LINUX_SYS_AUE_linux_remap_file_pages	AUE_NULL
16405f2336efSEd Maste #define	LINUX_SYS_AUE_linux_mbind	AUE_NULL
16415f2336efSEd Maste #define	LINUX_SYS_AUE_linux_get_mempolicy	AUE_NULL
16425f2336efSEd Maste #define	LINUX_SYS_AUE_linux_set_mempolicy	AUE_NULL
16435f2336efSEd Maste #define	LINUX_SYS_AUE_linux_migrate_pages	AUE_NULL
16445f2336efSEd Maste #define	LINUX_SYS_AUE_linux_move_pages	AUE_NULL
16455f2336efSEd Maste #define	LINUX_SYS_AUE_linux_rt_tgsigqueueinfo	AUE_NULL
16465f2336efSEd Maste #define	LINUX_SYS_AUE_linux_perf_event_open	AUE_NULL
16475f2336efSEd Maste #define	LINUX_SYS_AUE_linux_accept4	AUE_ACCEPT
16485f2336efSEd Maste #define	LINUX_SYS_AUE_linux_recvmmsg	AUE_NULL
16495f2336efSEd Maste #define	LINUX_SYS_AUE_linux_wait4	AUE_WAIT4
16505f2336efSEd Maste #define	LINUX_SYS_AUE_linux_prlimit64	AUE_NULL
16515f2336efSEd Maste #define	LINUX_SYS_AUE_linux_fanotify_init	AUE_NULL
16525f2336efSEd Maste #define	LINUX_SYS_AUE_linux_fanotify_mark	AUE_NULL
16535f2336efSEd Maste #define	LINUX_SYS_AUE_linux_name_to_handle_at	AUE_NULL
16545f2336efSEd Maste #define	LINUX_SYS_AUE_linux_open_by_handle_at	AUE_NULL
16555f2336efSEd Maste #define	LINUX_SYS_AUE_linux_clock_adjtime	AUE_NULL
16565f2336efSEd Maste #define	LINUX_SYS_AUE_linux_syncfs	AUE_SYNC
16575f2336efSEd Maste #define	LINUX_SYS_AUE_linux_setns	AUE_NULL
16585f2336efSEd Maste #define	LINUX_SYS_AUE_linux_sendmmsg	AUE_NULL
16595f2336efSEd Maste #define	LINUX_SYS_AUE_linux_process_vm_readv	AUE_NULL
16605f2336efSEd Maste #define	LINUX_SYS_AUE_linux_process_vm_writev	AUE_NULL
16615f2336efSEd Maste #define	LINUX_SYS_AUE_linux_kcmp	AUE_NULL
16625f2336efSEd Maste #define	LINUX_SYS_AUE_linux_finit_module	AUE_NULL
16635f2336efSEd Maste #define	LINUX_SYS_AUE_linux_sched_setattr	AUE_NULL
16645f2336efSEd Maste #define	LINUX_SYS_AUE_linux_sched_getattr	AUE_NULL
16655f2336efSEd Maste #define	LINUX_SYS_AUE_linux_renameat2	AUE_NULL
16665f2336efSEd Maste #define	LINUX_SYS_AUE_linux_seccomp	AUE_NULL
16675f2336efSEd Maste #define	LINUX_SYS_AUE_linux_getrandom	AUE_NULL
16685f2336efSEd Maste #define	LINUX_SYS_AUE_linux_memfd_create	AUE_NULL
16695f2336efSEd Maste #define	LINUX_SYS_AUE_linux_bpf	AUE_NULL
16705f2336efSEd Maste #define	LINUX_SYS_AUE_linux_execveat	AUE_NULL
16715f2336efSEd Maste #define	LINUX_SYS_AUE_linux_userfaultfd	AUE_NULL
16725f2336efSEd Maste #define	LINUX_SYS_AUE_linux_membarrier	AUE_NULL
16735f2336efSEd Maste #define	LINUX_SYS_AUE_linux_mlock2	AUE_NULL
16745f2336efSEd Maste #define	LINUX_SYS_AUE_linux_copy_file_range	AUE_NULL
16755f2336efSEd Maste #define	LINUX_SYS_AUE_linux_preadv2	AUE_NULL
16765f2336efSEd Maste #define	LINUX_SYS_AUE_linux_pwritev2	AUE_NULL
16775f2336efSEd Maste #define	LINUX_SYS_AUE_linux_pkey_mprotect	AUE_NULL
16785f2336efSEd Maste #define	LINUX_SYS_AUE_linux_pkey_alloc	AUE_NULL
16795f2336efSEd Maste #define	LINUX_SYS_AUE_linux_pkey_free	AUE_NULL
1680c0f17173SEdward Tomasz Napierala #define	LINUX_SYS_AUE_linux_statx	AUE_NULL
1681c0f17173SEdward Tomasz Napierala #define	LINUX_SYS_AUE_linux_io_pgetevents	AUE_NULL
1682c0f17173SEdward Tomasz Napierala #define	LINUX_SYS_AUE_linux_rseq	AUE_NULL
1683c0f17173SEdward Tomasz Napierala #define	LINUX_SYS_AUE_linux_kexec_file_load	AUE_NULL
1684c0f17173SEdward Tomasz Napierala #define	LINUX_SYS_AUE_linux_pidfd_send_signal	AUE_NULL
1685c0f17173SEdward Tomasz Napierala #define	LINUX_SYS_AUE_linux_io_uring_setup	AUE_NULL
1686c0f17173SEdward Tomasz Napierala #define	LINUX_SYS_AUE_linux_io_uring_enter	AUE_NULL
1687c0f17173SEdward Tomasz Napierala #define	LINUX_SYS_AUE_linux_io_uring_register	AUE_NULL
1688c0f17173SEdward Tomasz Napierala #define	LINUX_SYS_AUE_linux_open_tree	AUE_NULL
1689c0f17173SEdward Tomasz Napierala #define	LINUX_SYS_AUE_linux_move_mount	AUE_NULL
1690c0f17173SEdward Tomasz Napierala #define	LINUX_SYS_AUE_linux_fsopen	AUE_NULL
1691c0f17173SEdward Tomasz Napierala #define	LINUX_SYS_AUE_linux_fsconfig	AUE_NULL
1692c0f17173SEdward Tomasz Napierala #define	LINUX_SYS_AUE_linux_fsmount	AUE_NULL
1693c0f17173SEdward Tomasz Napierala #define	LINUX_SYS_AUE_linux_fspick	AUE_NULL
1694c0f17173SEdward Tomasz Napierala #define	LINUX_SYS_AUE_linux_pidfd_open	AUE_NULL
1695c0f17173SEdward Tomasz Napierala #define	LINUX_SYS_AUE_linux_clone3	AUE_NULL
169650111714SDmitry Chagin #define	LINUX_SYS_AUE_linux_close_range	AUE_CLOSERANGE
1697c0f17173SEdward Tomasz Napierala #define	LINUX_SYS_AUE_linux_openat2	AUE_NULL
1698c0f17173SEdward Tomasz Napierala #define	LINUX_SYS_AUE_linux_pidfd_getfd	AUE_NULL
1699c0f17173SEdward Tomasz Napierala #define	LINUX_SYS_AUE_linux_faccessat2	AUE_NULL
1700c0f17173SEdward Tomasz Napierala #define	LINUX_SYS_AUE_linux_process_madvise	AUE_NULL
1701c0f17173SEdward Tomasz Napierala #define	LINUX_SYS_AUE_linux_epoll_pwait2	AUE_NULL
1702c0f17173SEdward Tomasz Napierala #define	LINUX_SYS_AUE_linux_mount_setattr	AUE_NULL
17035f2336efSEd Maste 
17045f2336efSEd Maste #undef PAD_
17055f2336efSEd Maste #undef PADL_
17065f2336efSEd Maste #undef PADR_
17075f2336efSEd Maste 
17085f2336efSEd Maste #endif /* !_LINUX_SYSPROTO_H_ */
1709