xref: /freebsd/sys/arm64/linux/linux_systrace_args.c (revision 76ab72e8283712e508bc3f4c2b8c219b49b64d4c)
15f2336efSEd Maste /*
2*76ab72e8SBrooks Davis  * System call argument to DTrace register array conversion.
35f2336efSEd Maste  *
45f2336efSEd Maste  * This file is part of the DTrace syscall provider.
5d9d2e3abSBrooks Davis  *
6d9d2e3abSBrooks Davis  * DO NOT EDIT-- this file is automatically @generated.
75f2336efSEd Maste  */
85f2336efSEd Maste 
95f2336efSEd Maste static void
systrace_args(int sysnum,void * params,uint64_t * uarg,int * n_args)105f2336efSEd Maste systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
115f2336efSEd Maste {
125f2336efSEd Maste 	int64_t *iarg = (int64_t *)uarg;
136b7c23a0SBrooks Davis 	int a = 0;
145f2336efSEd Maste 	switch (sysnum) {
155f2336efSEd Maste 	/* linux_setxattr */
165f2336efSEd Maste 	case 5: {
17a39cdcd7SEdward Tomasz Napierala 		struct linux_setxattr_args *p = params;
186b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->path; /* const char * */
196b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->name; /* const char * */
20d9c2dc6bSDmitry Chagin 		uarg[a++] = (intptr_t)p->value; /* void * */
216b7c23a0SBrooks Davis 		iarg[a++] = p->size; /* l_size_t */
226b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_int */
23a39cdcd7SEdward Tomasz Napierala 		*n_args = 5;
245f2336efSEd Maste 		break;
255f2336efSEd Maste 	}
265f2336efSEd Maste 	/* linux_lsetxattr */
275f2336efSEd Maste 	case 6: {
28a39cdcd7SEdward Tomasz Napierala 		struct linux_lsetxattr_args *p = params;
296b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->path; /* const char * */
306b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->name; /* const char * */
31d9c2dc6bSDmitry Chagin 		uarg[a++] = (intptr_t)p->value; /* void * */
326b7c23a0SBrooks Davis 		iarg[a++] = p->size; /* l_size_t */
336b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_int */
34a39cdcd7SEdward Tomasz Napierala 		*n_args = 5;
355f2336efSEd Maste 		break;
365f2336efSEd Maste 	}
375f2336efSEd Maste 	/* linux_fsetxattr */
385f2336efSEd Maste 	case 7: {
39a39cdcd7SEdward Tomasz Napierala 		struct linux_fsetxattr_args *p = params;
406b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* l_int */
416b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->name; /* const char * */
42d9c2dc6bSDmitry Chagin 		uarg[a++] = (intptr_t)p->value; /* void * */
436b7c23a0SBrooks Davis 		iarg[a++] = p->size; /* l_size_t */
446b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_int */
45a39cdcd7SEdward Tomasz Napierala 		*n_args = 5;
465f2336efSEd Maste 		break;
475f2336efSEd Maste 	}
485f2336efSEd Maste 	/* linux_getxattr */
495f2336efSEd Maste 	case 8: {
50a39cdcd7SEdward Tomasz Napierala 		struct linux_getxattr_args *p = params;
516b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->path; /* const char * */
526b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->name; /* const char * */
53d9c2dc6bSDmitry Chagin 		uarg[a++] = (intptr_t)p->value; /* void * */
546b7c23a0SBrooks Davis 		iarg[a++] = p->size; /* l_size_t */
55a39cdcd7SEdward Tomasz Napierala 		*n_args = 4;
565f2336efSEd Maste 		break;
575f2336efSEd Maste 	}
585f2336efSEd Maste 	/* linux_lgetxattr */
595f2336efSEd Maste 	case 9: {
60a39cdcd7SEdward Tomasz Napierala 		struct linux_lgetxattr_args *p = params;
616b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->path; /* const char * */
626b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->name; /* const char * */
63d9c2dc6bSDmitry Chagin 		uarg[a++] = (intptr_t)p->value; /* void * */
646b7c23a0SBrooks Davis 		iarg[a++] = p->size; /* l_size_t */
65a39cdcd7SEdward Tomasz Napierala 		*n_args = 4;
665f2336efSEd Maste 		break;
675f2336efSEd Maste 	}
685f2336efSEd Maste 	/* linux_fgetxattr */
695f2336efSEd Maste 	case 10: {
70a39cdcd7SEdward Tomasz Napierala 		struct linux_fgetxattr_args *p = params;
716b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* l_int */
726b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->name; /* const char * */
73d9c2dc6bSDmitry Chagin 		uarg[a++] = (intptr_t)p->value; /* void * */
746b7c23a0SBrooks Davis 		iarg[a++] = p->size; /* l_size_t */
75a39cdcd7SEdward Tomasz Napierala 		*n_args = 4;
765f2336efSEd Maste 		break;
775f2336efSEd Maste 	}
785f2336efSEd Maste 	/* linux_listxattr */
795f2336efSEd Maste 	case 11: {
80a39cdcd7SEdward Tomasz Napierala 		struct linux_listxattr_args *p = params;
816b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->path; /* const char * */
82d9c2dc6bSDmitry Chagin 		uarg[a++] = (intptr_t)p->list; /* char * */
836b7c23a0SBrooks Davis 		iarg[a++] = p->size; /* l_size_t */
84a39cdcd7SEdward Tomasz Napierala 		*n_args = 3;
855f2336efSEd Maste 		break;
865f2336efSEd Maste 	}
875f2336efSEd Maste 	/* linux_llistxattr */
885f2336efSEd Maste 	case 12: {
89a39cdcd7SEdward Tomasz Napierala 		struct linux_llistxattr_args *p = params;
906b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->path; /* const char * */
91d9c2dc6bSDmitry Chagin 		uarg[a++] = (intptr_t)p->list; /* char * */
926b7c23a0SBrooks Davis 		iarg[a++] = p->size; /* l_size_t */
93a39cdcd7SEdward Tomasz Napierala 		*n_args = 3;
945f2336efSEd Maste 		break;
955f2336efSEd Maste 	}
965f2336efSEd Maste 	/* linux_flistxattr */
975f2336efSEd Maste 	case 13: {
98a39cdcd7SEdward Tomasz Napierala 		struct linux_flistxattr_args *p = params;
996b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* l_int */
100d9c2dc6bSDmitry Chagin 		uarg[a++] = (intptr_t)p->list; /* char * */
1016b7c23a0SBrooks Davis 		iarg[a++] = p->size; /* l_size_t */
102a39cdcd7SEdward Tomasz Napierala 		*n_args = 3;
1035f2336efSEd Maste 		break;
1045f2336efSEd Maste 	}
1055f2336efSEd Maste 	/* linux_removexattr */
1065f2336efSEd Maste 	case 14: {
107a39cdcd7SEdward Tomasz Napierala 		struct linux_removexattr_args *p = params;
1086b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->path; /* const char * */
1096b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->name; /* const char * */
110a39cdcd7SEdward Tomasz Napierala 		*n_args = 2;
1115f2336efSEd Maste 		break;
1125f2336efSEd Maste 	}
1135f2336efSEd Maste 	/* linux_lremovexattr */
1145f2336efSEd Maste 	case 15: {
115a39cdcd7SEdward Tomasz Napierala 		struct linux_lremovexattr_args *p = params;
1166b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->path; /* const char * */
1176b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->name; /* const char * */
118a39cdcd7SEdward Tomasz Napierala 		*n_args = 2;
1195f2336efSEd Maste 		break;
1205f2336efSEd Maste 	}
1215f2336efSEd Maste 	/* linux_fremovexattr */
1225f2336efSEd Maste 	case 16: {
123a39cdcd7SEdward Tomasz Napierala 		struct linux_fremovexattr_args *p = params;
1246b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* l_int */
1256b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->name; /* const char * */
126a39cdcd7SEdward Tomasz Napierala 		*n_args = 2;
1275f2336efSEd Maste 		break;
1285f2336efSEd Maste 	}
1295f2336efSEd Maste 	/* linux_getcwd */
1305f2336efSEd Maste 	case 17: {
1315f2336efSEd Maste 		struct linux_getcwd_args *p = params;
1326b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->buf; /* char * */
1336b7c23a0SBrooks Davis 		iarg[a++] = p->bufsize; /* l_ulong */
1345f2336efSEd Maste 		*n_args = 2;
1355f2336efSEd Maste 		break;
1365f2336efSEd Maste 	}
1375f2336efSEd Maste 	/* linux_lookup_dcookie */
1385f2336efSEd Maste 	case 18: {
1395f2336efSEd Maste 		*n_args = 0;
1405f2336efSEd Maste 		break;
1415f2336efSEd Maste 	}
1425f2336efSEd Maste 	/* linux_eventfd2 */
1435f2336efSEd Maste 	case 19: {
1445f2336efSEd Maste 		struct linux_eventfd2_args *p = params;
1456b7c23a0SBrooks Davis 		iarg[a++] = p->initval; /* l_uint */
1466b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_int */
1475f2336efSEd Maste 		*n_args = 2;
1485f2336efSEd Maste 		break;
1495f2336efSEd Maste 	}
1505f2336efSEd Maste 	/* linux_epoll_create1 */
1515f2336efSEd Maste 	case 20: {
1525f2336efSEd Maste 		struct linux_epoll_create1_args *p = params;
1536b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_int */
1545f2336efSEd Maste 		*n_args = 1;
1555f2336efSEd Maste 		break;
1565f2336efSEd Maste 	}
1575f2336efSEd Maste 	/* linux_epoll_ctl */
1585f2336efSEd Maste 	case 21: {
1595f2336efSEd Maste 		struct linux_epoll_ctl_args *p = params;
1606b7c23a0SBrooks Davis 		iarg[a++] = p->epfd; /* l_int */
1616b7c23a0SBrooks Davis 		iarg[a++] = p->op; /* l_int */
1626b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* l_int */
1636b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->event; /* struct epoll_event * */
1645f2336efSEd Maste 		*n_args = 4;
1655f2336efSEd Maste 		break;
1665f2336efSEd Maste 	}
1675f2336efSEd Maste 	/* linux_epoll_pwait */
1685f2336efSEd Maste 	case 22: {
1695f2336efSEd Maste 		struct linux_epoll_pwait_args *p = params;
1706b7c23a0SBrooks Davis 		iarg[a++] = p->epfd; /* l_int */
1716b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->events; /* struct epoll_event * */
1726b7c23a0SBrooks Davis 		iarg[a++] = p->maxevents; /* l_int */
1736b7c23a0SBrooks Davis 		iarg[a++] = p->timeout; /* l_int */
1746b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */
1756b7c23a0SBrooks Davis 		iarg[a++] = p->sigsetsize; /* l_size_t */
1765f2336efSEd Maste 		*n_args = 6;
1775f2336efSEd Maste 		break;
1785f2336efSEd Maste 	}
179c4db0baaSEd Maste 	/* dup */
180c4db0baaSEd Maste 	case 23: {
181c4db0baaSEd Maste 		struct dup_args *p = params;
1826b7c23a0SBrooks Davis 		uarg[a++] = p->fd; /* u_int */
183c4db0baaSEd Maste 		*n_args = 1;
184c4db0baaSEd Maste 		break;
185c4db0baaSEd Maste 	}
1865f2336efSEd Maste 	/* linux_dup3 */
1875f2336efSEd Maste 	case 24: {
1885f2336efSEd Maste 		struct linux_dup3_args *p = params;
1896b7c23a0SBrooks Davis 		iarg[a++] = p->oldfd; /* l_int */
1906b7c23a0SBrooks Davis 		iarg[a++] = p->newfd; /* l_int */
1916b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_int */
1925f2336efSEd Maste 		*n_args = 3;
1935f2336efSEd Maste 		break;
1945f2336efSEd Maste 	}
1955f2336efSEd Maste 	/* linux_fcntl */
1965f2336efSEd Maste 	case 25: {
1975f2336efSEd Maste 		struct linux_fcntl_args *p = params;
1986b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* l_uint */
1996b7c23a0SBrooks Davis 		iarg[a++] = p->cmd; /* l_uint */
2006b7c23a0SBrooks Davis 		iarg[a++] = p->arg; /* l_ulong */
2015f2336efSEd Maste 		*n_args = 3;
2025f2336efSEd Maste 		break;
2035f2336efSEd Maste 	}
2045f2336efSEd Maste 	/* linux_inotify_init1 */
2055f2336efSEd Maste 	case 26: {
2065f2336efSEd Maste 		struct linux_inotify_init1_args *p = params;
2076b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_int */
2085f2336efSEd Maste 		*n_args = 1;
2095f2336efSEd Maste 		break;
2105f2336efSEd Maste 	}
2115f2336efSEd Maste 	/* linux_inotify_add_watch */
2125f2336efSEd Maste 	case 27: {
2135f2336efSEd Maste 		*n_args = 0;
2145f2336efSEd Maste 		break;
2155f2336efSEd Maste 	}
2165f2336efSEd Maste 	/* linux_inotify_rm_watch */
2175f2336efSEd Maste 	case 28: {
2185f2336efSEd Maste 		*n_args = 0;
2195f2336efSEd Maste 		break;
2205f2336efSEd Maste 	}
2215f2336efSEd Maste 	/* linux_ioctl */
2225f2336efSEd Maste 	case 29: {
2235f2336efSEd Maste 		struct linux_ioctl_args *p = params;
2246b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* l_uint */
2256b7c23a0SBrooks Davis 		iarg[a++] = p->cmd; /* l_uint */
2266b7c23a0SBrooks Davis 		iarg[a++] = p->arg; /* l_ulong */
2275f2336efSEd Maste 		*n_args = 3;
2285f2336efSEd Maste 		break;
2295f2336efSEd Maste 	}
2305f2336efSEd Maste 	/* linux_ioprio_set */
2315f2336efSEd Maste 	case 30: {
232b5c0b955SDmitry Chagin 		struct linux_ioprio_set_args *p = params;
233b5c0b955SDmitry Chagin 		iarg[a++] = p->which; /* l_int */
234b5c0b955SDmitry Chagin 		iarg[a++] = p->who; /* l_int */
235b5c0b955SDmitry Chagin 		iarg[a++] = p->ioprio; /* l_int */
236b5c0b955SDmitry Chagin 		*n_args = 3;
2375f2336efSEd Maste 		break;
2385f2336efSEd Maste 	}
2395f2336efSEd Maste 	/* linux_ioprio_get */
2405f2336efSEd Maste 	case 31: {
241b5c0b955SDmitry Chagin 		struct linux_ioprio_get_args *p = params;
242b5c0b955SDmitry Chagin 		iarg[a++] = p->which; /* l_int */
243b5c0b955SDmitry Chagin 		iarg[a++] = p->who; /* l_int */
244b5c0b955SDmitry Chagin 		*n_args = 2;
2455f2336efSEd Maste 		break;
2465f2336efSEd Maste 	}
2475f2336efSEd Maste 	/* flock */
2485f2336efSEd Maste 	case 32: {
2495f2336efSEd Maste 		struct flock_args *p = params;
2506b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* int */
2516b7c23a0SBrooks Davis 		iarg[a++] = p->how; /* int */
2525f2336efSEd Maste 		*n_args = 2;
2535f2336efSEd Maste 		break;
2545f2336efSEd Maste 	}
2555f2336efSEd Maste 	/* linux_mknodat */
2565f2336efSEd Maste 	case 33: {
2575f2336efSEd Maste 		struct linux_mknodat_args *p = params;
2586b7c23a0SBrooks Davis 		iarg[a++] = p->dfd; /* l_int */
2596b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->filename; /* const char * */
2606b7c23a0SBrooks Davis 		iarg[a++] = p->mode; /* l_int */
261cd0fca82SDmitry Chagin 		iarg[a++] = p->dev; /* l_dev_t */
2625f2336efSEd Maste 		*n_args = 4;
2635f2336efSEd Maste 		break;
2645f2336efSEd Maste 	}
2655f2336efSEd Maste 	/* linux_mkdirat */
2665f2336efSEd Maste 	case 34: {
2675f2336efSEd Maste 		struct linux_mkdirat_args *p = params;
2686b7c23a0SBrooks Davis 		iarg[a++] = p->dfd; /* l_int */
2696b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->pathname; /* const char * */
2706b7c23a0SBrooks Davis 		iarg[a++] = p->mode; /* l_mode_t */
2715f2336efSEd Maste 		*n_args = 3;
2725f2336efSEd Maste 		break;
2735f2336efSEd Maste 	}
2745f2336efSEd Maste 	/* linux_unlinkat */
2755f2336efSEd Maste 	case 35: {
2765f2336efSEd Maste 		struct linux_unlinkat_args *p = params;
2776b7c23a0SBrooks Davis 		iarg[a++] = p->dfd; /* l_int */
2786b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->pathname; /* const char * */
2796b7c23a0SBrooks Davis 		iarg[a++] = p->flag; /* l_int */
2805f2336efSEd Maste 		*n_args = 3;
2815f2336efSEd Maste 		break;
2825f2336efSEd Maste 	}
2835f2336efSEd Maste 	/* linux_symlinkat */
2845f2336efSEd Maste 	case 36: {
2855f2336efSEd Maste 		struct linux_symlinkat_args *p = params;
2866b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->oldname; /* const char * */
2876b7c23a0SBrooks Davis 		iarg[a++] = p->newdfd; /* l_int */
2886b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->newname; /* const char * */
2895f2336efSEd Maste 		*n_args = 3;
2905f2336efSEd Maste 		break;
2915f2336efSEd Maste 	}
2925f2336efSEd Maste 	/* linux_linkat */
2935f2336efSEd Maste 	case 37: {
2945f2336efSEd Maste 		struct linux_linkat_args *p = params;
2956b7c23a0SBrooks Davis 		iarg[a++] = p->olddfd; /* l_int */
2966b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->oldname; /* const char * */
2976b7c23a0SBrooks Davis 		iarg[a++] = p->newdfd; /* l_int */
2986b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->newname; /* const char * */
2996b7c23a0SBrooks Davis 		iarg[a++] = p->flag; /* l_int */
3005f2336efSEd Maste 		*n_args = 5;
3015f2336efSEd Maste 		break;
3025f2336efSEd Maste 	}
3035f2336efSEd Maste 	/* linux_renameat */
3045f2336efSEd Maste 	case 38: {
3055f2336efSEd Maste 		struct linux_renameat_args *p = params;
3066b7c23a0SBrooks Davis 		iarg[a++] = p->olddfd; /* l_int */
3076b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->oldname; /* const char * */
3086b7c23a0SBrooks Davis 		iarg[a++] = p->newdfd; /* l_int */
3096b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->newname; /* const char * */
3105f2336efSEd Maste 		*n_args = 4;
3115f2336efSEd Maste 		break;
3125f2336efSEd Maste 	}
3135f2336efSEd Maste 	/* linux_mount */
3145f2336efSEd Maste 	case 40: {
3155f2336efSEd Maste 		struct linux_mount_args *p = params;
3166b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->specialfile; /* char * */
3176b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->dir; /* char * */
3186b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->filesystemtype; /* char * */
3196b7c23a0SBrooks Davis 		iarg[a++] = p->rwflag; /* l_ulong */
3206b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->data; /* void * */
3215f2336efSEd Maste 		*n_args = 5;
3225f2336efSEd Maste 		break;
3235f2336efSEd Maste 	}
3245f2336efSEd Maste 	/* linux_pivot_root */
3255f2336efSEd Maste 	case 41: {
3265f2336efSEd Maste 		*n_args = 0;
3275f2336efSEd Maste 		break;
3285f2336efSEd Maste 	}
3295f2336efSEd Maste 	/* linux_statfs */
3305f2336efSEd Maste 	case 43: {
3315f2336efSEd Maste 		struct linux_statfs_args *p = params;
3326b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->path; /* char * */
3336b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->buf; /* struct l_statfs_buf * */
3345f2336efSEd Maste 		*n_args = 2;
3355f2336efSEd Maste 		break;
3365f2336efSEd Maste 	}
3375f2336efSEd Maste 	/* linux_fstatfs */
3385f2336efSEd Maste 	case 44: {
3395f2336efSEd Maste 		struct linux_fstatfs_args *p = params;
3406b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* l_uint */
3416b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->buf; /* struct l_statfs_buf * */
3425f2336efSEd Maste 		*n_args = 2;
3435f2336efSEd Maste 		break;
3445f2336efSEd Maste 	}
3455f2336efSEd Maste 	/* linux_truncate */
3465f2336efSEd Maste 	case 45: {
3475f2336efSEd Maste 		struct linux_truncate_args *p = params;
3486b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->path; /* char * */
3496b7c23a0SBrooks Davis 		iarg[a++] = p->length; /* l_ulong */
3505f2336efSEd Maste 		*n_args = 2;
3515f2336efSEd Maste 		break;
3525f2336efSEd Maste 	}
3535f2336efSEd Maste 	/* linux_ftruncate */
3545f2336efSEd Maste 	case 46: {
3555f2336efSEd Maste 		struct linux_ftruncate_args *p = params;
3566b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* l_int */
3576b7c23a0SBrooks Davis 		iarg[a++] = p->length; /* l_long */
3585f2336efSEd Maste 		*n_args = 2;
3595f2336efSEd Maste 		break;
3605f2336efSEd Maste 	}
3615f2336efSEd Maste 	/* linux_fallocate */
3625f2336efSEd Maste 	case 47: {
3635f2336efSEd Maste 		struct linux_fallocate_args *p = params;
3646b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* l_int */
3656b7c23a0SBrooks Davis 		iarg[a++] = p->mode; /* l_int */
3666b7c23a0SBrooks Davis 		iarg[a++] = p->offset; /* l_loff_t */
3676b7c23a0SBrooks Davis 		iarg[a++] = p->len; /* l_loff_t */
3685f2336efSEd Maste 		*n_args = 4;
3695f2336efSEd Maste 		break;
3705f2336efSEd Maste 	}
3715f2336efSEd Maste 	/* linux_faccessat */
3725f2336efSEd Maste 	case 48: {
3735f2336efSEd Maste 		struct linux_faccessat_args *p = params;
3746b7c23a0SBrooks Davis 		iarg[a++] = p->dfd; /* l_int */
3756b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->filename; /* const char * */
3766b7c23a0SBrooks Davis 		iarg[a++] = p->amode; /* l_int */
3775f2336efSEd Maste 		*n_args = 3;
3785f2336efSEd Maste 		break;
3795f2336efSEd Maste 	}
3805f2336efSEd Maste 	/* linux_chdir */
3815f2336efSEd Maste 	case 49: {
3825f2336efSEd Maste 		struct linux_chdir_args *p = params;
3836b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->path; /* char * */
3845f2336efSEd Maste 		*n_args = 1;
3855f2336efSEd Maste 		break;
3865f2336efSEd Maste 	}
3875f2336efSEd Maste 	/* fchdir */
3885f2336efSEd Maste 	case 50: {
3895f2336efSEd Maste 		struct fchdir_args *p = params;
3906b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* int */
3915f2336efSEd Maste 		*n_args = 1;
3925f2336efSEd Maste 		break;
3935f2336efSEd Maste 	}
3945f2336efSEd Maste 	/* chroot */
3955f2336efSEd Maste 	case 51: {
3965f2336efSEd Maste 		struct chroot_args *p = params;
3976b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->path; /* char * */
3985f2336efSEd Maste 		*n_args = 1;
3995f2336efSEd Maste 		break;
4005f2336efSEd Maste 	}
4015f2336efSEd Maste 	/* fchmod */
4025f2336efSEd Maste 	case 52: {
4035f2336efSEd Maste 		struct fchmod_args *p = params;
4046b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* int */
4056b7c23a0SBrooks Davis 		iarg[a++] = p->mode; /* int */
4065f2336efSEd Maste 		*n_args = 2;
4075f2336efSEd Maste 		break;
4085f2336efSEd Maste 	}
4095f2336efSEd Maste 	/* linux_fchmodat */
4105f2336efSEd Maste 	case 53: {
4115f2336efSEd Maste 		struct linux_fchmodat_args *p = params;
4126b7c23a0SBrooks Davis 		iarg[a++] = p->dfd; /* l_int */
4136b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->filename; /* const char * */
4146b7c23a0SBrooks Davis 		iarg[a++] = p->mode; /* l_mode_t */
4155f2336efSEd Maste 		*n_args = 3;
4165f2336efSEd Maste 		break;
4175f2336efSEd Maste 	}
4185f2336efSEd Maste 	/* linux_fchownat */
4195f2336efSEd Maste 	case 54: {
4205f2336efSEd Maste 		struct linux_fchownat_args *p = params;
4216b7c23a0SBrooks Davis 		iarg[a++] = p->dfd; /* l_int */
4226b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->filename; /* const char * */
4236b7c23a0SBrooks Davis 		iarg[a++] = p->uid; /* l_uid_t */
4246b7c23a0SBrooks Davis 		iarg[a++] = p->gid; /* l_gid_t */
4256b7c23a0SBrooks Davis 		iarg[a++] = p->flag; /* l_int */
4265f2336efSEd Maste 		*n_args = 5;
4275f2336efSEd Maste 		break;
4285f2336efSEd Maste 	}
4295f2336efSEd Maste 	/* fchown */
4305f2336efSEd Maste 	case 55: {
4315f2336efSEd Maste 		struct fchown_args *p = params;
4326b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* int */
4336b7c23a0SBrooks Davis 		iarg[a++] = p->uid; /* int */
4346b7c23a0SBrooks Davis 		iarg[a++] = p->gid; /* int */
4355f2336efSEd Maste 		*n_args = 3;
4365f2336efSEd Maste 		break;
4375f2336efSEd Maste 	}
4385f2336efSEd Maste 	/* linux_openat */
4395f2336efSEd Maste 	case 56: {
4405f2336efSEd Maste 		struct linux_openat_args *p = params;
4416b7c23a0SBrooks Davis 		iarg[a++] = p->dfd; /* l_int */
4426b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->filename; /* const char * */
4436b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_int */
4446b7c23a0SBrooks Davis 		iarg[a++] = p->mode; /* l_mode_t */
4455f2336efSEd Maste 		*n_args = 4;
4465f2336efSEd Maste 		break;
4475f2336efSEd Maste 	}
4485f2336efSEd Maste 	/* close */
4495f2336efSEd Maste 	case 57: {
4505f2336efSEd Maste 		struct close_args *p = params;
4516b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* int */
4525f2336efSEd Maste 		*n_args = 1;
4535f2336efSEd Maste 		break;
4545f2336efSEd Maste 	}
4555f2336efSEd Maste 	/* linux_vhangup */
4565f2336efSEd Maste 	case 58: {
4575f2336efSEd Maste 		*n_args = 0;
4585f2336efSEd Maste 		break;
4595f2336efSEd Maste 	}
4605f2336efSEd Maste 	/* linux_pipe2 */
4615f2336efSEd Maste 	case 59: {
4625f2336efSEd Maste 		struct linux_pipe2_args *p = params;
4636b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->pipefds; /* l_int * */
4646b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_int */
4655f2336efSEd Maste 		*n_args = 2;
4665f2336efSEd Maste 		break;
4675f2336efSEd Maste 	}
4685f2336efSEd Maste 	/* linux_getdents64 */
4695f2336efSEd Maste 	case 61: {
4705f2336efSEd Maste 		struct linux_getdents64_args *p = params;
4716b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* l_uint */
4726b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->dirent; /* void * */
4736b7c23a0SBrooks Davis 		iarg[a++] = p->count; /* l_uint */
4745f2336efSEd Maste 		*n_args = 3;
4755f2336efSEd Maste 		break;
4765f2336efSEd Maste 	}
4775f2336efSEd Maste 	/* linux_lseek */
4785f2336efSEd Maste 	case 62: {
4795f2336efSEd Maste 		struct linux_lseek_args *p = params;
4806b7c23a0SBrooks Davis 		iarg[a++] = p->fdes; /* l_uint */
4816b7c23a0SBrooks Davis 		iarg[a++] = p->off; /* l_off_t */
4826b7c23a0SBrooks Davis 		iarg[a++] = p->whence; /* l_int */
4835f2336efSEd Maste 		*n_args = 3;
4845f2336efSEd Maste 		break;
4855f2336efSEd Maste 	}
4865f2336efSEd Maste 	/* read */
4875f2336efSEd Maste 	case 63: {
4885f2336efSEd Maste 		struct read_args *p = params;
4896b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* int */
4906b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->buf; /* char * */
4916b7c23a0SBrooks Davis 		iarg[a++] = p->nbyte; /* l_size_t */
4925f2336efSEd Maste 		*n_args = 3;
4935f2336efSEd Maste 		break;
4945f2336efSEd Maste 	}
49589d270b2SDmitry Chagin 	/* linux_write */
4965f2336efSEd Maste 	case 64: {
49789d270b2SDmitry Chagin 		struct linux_write_args *p = params;
4986b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* int */
4996b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->buf; /* char * */
5006b7c23a0SBrooks Davis 		iarg[a++] = p->nbyte; /* l_size_t */
5015f2336efSEd Maste 		*n_args = 3;
5025f2336efSEd Maste 		break;
5035f2336efSEd Maste 	}
5045f2336efSEd Maste 	/* readv */
5055f2336efSEd Maste 	case 65: {
5065f2336efSEd Maste 		struct readv_args *p = params;
5076b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* int */
5086b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->iovp; /* struct iovec * */
5096b7c23a0SBrooks Davis 		uarg[a++] = p->iovcnt; /* u_int */
5105f2336efSEd Maste 		*n_args = 3;
5115f2336efSEd Maste 		break;
5125f2336efSEd Maste 	}
5131f9d71eeSDmitry Chagin 	/* linux_writev */
5145f2336efSEd Maste 	case 66: {
5151f9d71eeSDmitry Chagin 		struct linux_writev_args *p = params;
5166b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* int */
5176b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->iovp; /* struct iovec * */
5186b7c23a0SBrooks Davis 		uarg[a++] = p->iovcnt; /* u_int */
5195f2336efSEd Maste 		*n_args = 3;
5205f2336efSEd Maste 		break;
5215f2336efSEd Maste 	}
5225f2336efSEd Maste 	/* linux_pread */
5235f2336efSEd Maste 	case 67: {
5245f2336efSEd Maste 		struct linux_pread_args *p = params;
5256b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* l_uint */
5266b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->buf; /* char * */
5276b7c23a0SBrooks Davis 		iarg[a++] = p->nbyte; /* l_size_t */
5286b7c23a0SBrooks Davis 		iarg[a++] = p->offset; /* l_loff_t */
5295f2336efSEd Maste 		*n_args = 4;
5305f2336efSEd Maste 		break;
5315f2336efSEd Maste 	}
5325f2336efSEd Maste 	/* linux_pwrite */
5335f2336efSEd Maste 	case 68: {
5345f2336efSEd Maste 		struct linux_pwrite_args *p = params;
5356b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* l_uint */
5366b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->buf; /* char * */
5376b7c23a0SBrooks Davis 		iarg[a++] = p->nbyte; /* l_size_t */
5386b7c23a0SBrooks Davis 		iarg[a++] = p->offset; /* l_loff_t */
5395f2336efSEd Maste 		*n_args = 4;
5405f2336efSEd Maste 		break;
5415f2336efSEd Maste 	}
5425f2336efSEd Maste 	/* linux_preadv */
5435f2336efSEd Maste 	case 69: {
5445f2336efSEd Maste 		struct linux_preadv_args *p = params;
5456b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* l_ulong */
5466b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->vec; /* struct iovec * */
5476b7c23a0SBrooks Davis 		iarg[a++] = p->vlen; /* l_ulong */
5486b7c23a0SBrooks Davis 		iarg[a++] = p->pos_l; /* l_ulong */
5496b7c23a0SBrooks Davis 		iarg[a++] = p->pos_h; /* l_ulong */
5505f2336efSEd Maste 		*n_args = 5;
5515f2336efSEd Maste 		break;
5525f2336efSEd Maste 	}
5535f2336efSEd Maste 	/* linux_pwritev */
5545f2336efSEd Maste 	case 70: {
5555f2336efSEd Maste 		struct linux_pwritev_args *p = params;
5566b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* l_ulong */
5576b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->vec; /* struct iovec * */
5586b7c23a0SBrooks Davis 		iarg[a++] = p->vlen; /* l_ulong */
5596b7c23a0SBrooks Davis 		iarg[a++] = p->pos_l; /* l_ulong */
5606b7c23a0SBrooks Davis 		iarg[a++] = p->pos_h; /* l_ulong */
5615f2336efSEd Maste 		*n_args = 5;
5625f2336efSEd Maste 		break;
5635f2336efSEd Maste 	}
5645f2336efSEd Maste 	/* linux_sendfile */
5655f2336efSEd Maste 	case 71: {
5665f2336efSEd Maste 		struct linux_sendfile_args *p = params;
5676b7c23a0SBrooks Davis 		iarg[a++] = p->out; /* l_int */
5686b7c23a0SBrooks Davis 		iarg[a++] = p->in; /* l_int */
5696b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->offset; /* l_off_t * */
5706b7c23a0SBrooks Davis 		iarg[a++] = p->count; /* l_size_t */
5715f2336efSEd Maste 		*n_args = 4;
5725f2336efSEd Maste 		break;
5735f2336efSEd Maste 	}
5745f2336efSEd Maste 	/* linux_pselect6 */
5755f2336efSEd Maste 	case 72: {
5765f2336efSEd Maste 		struct linux_pselect6_args *p = params;
5776b7c23a0SBrooks Davis 		iarg[a++] = p->nfds; /* l_int */
5786b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->readfds; /* l_fd_set * */
5796b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->writefds; /* l_fd_set * */
5806b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->exceptfds; /* l_fd_set * */
5816b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->tsp; /* struct l_timespec * */
5826b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->sig; /* l_uintptr_t * */
5835f2336efSEd Maste 		*n_args = 6;
5845f2336efSEd Maste 		break;
5855f2336efSEd Maste 	}
5865f2336efSEd Maste 	/* linux_ppoll */
5875f2336efSEd Maste 	case 73: {
5885f2336efSEd Maste 		struct linux_ppoll_args *p = params;
5896b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->fds; /* struct pollfd * */
5906b7c23a0SBrooks Davis 		iarg[a++] = p->nfds; /* l_uint */
5916b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->tsp; /* struct l_timespec * */
5926b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->sset; /* l_sigset_t * */
5936b7c23a0SBrooks Davis 		iarg[a++] = p->ssize; /* l_size_t */
5945f2336efSEd Maste 		*n_args = 5;
5955f2336efSEd Maste 		break;
5965f2336efSEd Maste 	}
5975f2336efSEd Maste 	/* linux_signalfd4 */
5985f2336efSEd Maste 	case 74: {
5995f2336efSEd Maste 		*n_args = 0;
6005f2336efSEd Maste 		break;
6015f2336efSEd Maste 	}
6025f2336efSEd Maste 	/* linux_vmsplice */
6035f2336efSEd Maste 	case 75: {
6045f2336efSEd Maste 		*n_args = 0;
6055f2336efSEd Maste 		break;
6065f2336efSEd Maste 	}
6075f2336efSEd Maste 	/* linux_splice */
6085f2336efSEd Maste 	case 76: {
6093e9a2142SEdward Tomasz Napierala 		struct linux_splice_args *p = params;
6106b7c23a0SBrooks Davis 		iarg[a++] = p->fd_in; /* int */
6116b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->off_in; /* l_loff_t * */
6126b7c23a0SBrooks Davis 		iarg[a++] = p->fd_out; /* int */
6136b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->off_out; /* l_loff_t * */
6146b7c23a0SBrooks Davis 		iarg[a++] = p->len; /* l_size_t */
6156b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_uint */
6163e9a2142SEdward Tomasz Napierala 		*n_args = 6;
6175f2336efSEd Maste 		break;
6185f2336efSEd Maste 	}
6195f2336efSEd Maste 	/* linux_tee */
6205f2336efSEd Maste 	case 77: {
6215f2336efSEd Maste 		*n_args = 0;
6225f2336efSEd Maste 		break;
6235f2336efSEd Maste 	}
6245f2336efSEd Maste 	/* linux_readlinkat */
6255f2336efSEd Maste 	case 78: {
6265f2336efSEd Maste 		struct linux_readlinkat_args *p = params;
6276b7c23a0SBrooks Davis 		iarg[a++] = p->dfd; /* l_int */
6286b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->path; /* const char * */
6296b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->buf; /* char * */
6306b7c23a0SBrooks Davis 		iarg[a++] = p->bufsiz; /* l_int */
6315f2336efSEd Maste 		*n_args = 4;
6325f2336efSEd Maste 		break;
6335f2336efSEd Maste 	}
6345f2336efSEd Maste 	/* linux_newfstatat */
6355f2336efSEd Maste 	case 79: {
6365f2336efSEd Maste 		struct linux_newfstatat_args *p = params;
6376b7c23a0SBrooks Davis 		iarg[a++] = p->dfd; /* l_int */
6386b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->pathname; /* char * */
6396b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->statbuf; /* struct l_stat64 * */
6406b7c23a0SBrooks Davis 		iarg[a++] = p->flag; /* l_int */
6415f2336efSEd Maste 		*n_args = 4;
6425f2336efSEd Maste 		break;
6435f2336efSEd Maste 	}
6445f2336efSEd Maste 	/* linux_newfstat */
6455f2336efSEd Maste 	case 80: {
6465f2336efSEd Maste 		struct linux_newfstat_args *p = params;
6476b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* l_uint */
6486b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->buf; /* struct l_newstat * */
6495f2336efSEd Maste 		*n_args = 2;
6505f2336efSEd Maste 		break;
6515f2336efSEd Maste 	}
6525f2336efSEd Maste 	/* fsync */
6535f2336efSEd Maste 	case 82: {
6545f2336efSEd Maste 		struct fsync_args *p = params;
6556b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* int */
6565f2336efSEd Maste 		*n_args = 1;
6575f2336efSEd Maste 		break;
6585f2336efSEd Maste 	}
6595f2336efSEd Maste 	/* linux_fdatasync */
6605f2336efSEd Maste 	case 83: {
6615f2336efSEd Maste 		struct linux_fdatasync_args *p = params;
6626b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* l_uint */
6635f2336efSEd Maste 		*n_args = 1;
6645f2336efSEd Maste 		break;
6655f2336efSEd Maste 	}
6665f2336efSEd Maste 	/* linux_sync_file_range */
6675f2336efSEd Maste 	case 84: {
6680cde2b32SEdward Tomasz Napierala 		struct linux_sync_file_range_args *p = params;
6696b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* l_int */
6706b7c23a0SBrooks Davis 		iarg[a++] = p->offset; /* l_loff_t */
6716b7c23a0SBrooks Davis 		iarg[a++] = p->nbytes; /* l_loff_t */
6726b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_uint */
6730cde2b32SEdward Tomasz Napierala 		*n_args = 4;
6745f2336efSEd Maste 		break;
6755f2336efSEd Maste 	}
6765f2336efSEd Maste 	/* linux_timerfd_create */
6775f2336efSEd Maste 	case 85: {
6785f2336efSEd Maste 		struct linux_timerfd_create_args *p = params;
6796b7c23a0SBrooks Davis 		iarg[a++] = p->clockid; /* l_int */
6806b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_int */
6815f2336efSEd Maste 		*n_args = 2;
6825f2336efSEd Maste 		break;
6835f2336efSEd Maste 	}
6845f2336efSEd Maste 	/* linux_timerfd_settime */
6855f2336efSEd Maste 	case 86: {
6865f2336efSEd Maste 		struct linux_timerfd_settime_args *p = params;
6876b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* l_int */
6886b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_int */
6896b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->new_value; /* const struct l_itimerspec * */
6906b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->old_value; /* struct l_itimerspec * */
6915f2336efSEd Maste 		*n_args = 4;
6925f2336efSEd Maste 		break;
6935f2336efSEd Maste 	}
6945f2336efSEd Maste 	/* linux_timerfd_gettime */
6955f2336efSEd Maste 	case 87: {
6965f2336efSEd Maste 		struct linux_timerfd_gettime_args *p = params;
6976b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* l_int */
6986b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->old_value; /* struct l_itimerspec * */
6995f2336efSEd Maste 		*n_args = 2;
7005f2336efSEd Maste 		break;
7015f2336efSEd Maste 	}
7025f2336efSEd Maste 	/* linux_utimensat */
7035f2336efSEd Maste 	case 88: {
7045f2336efSEd Maste 		struct linux_utimensat_args *p = params;
7056b7c23a0SBrooks Davis 		iarg[a++] = p->dfd; /* l_int */
7066b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->pathname; /* const char * */
7076b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->times; /* const struct l_timespec * */
7086b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_int */
7095f2336efSEd Maste 		*n_args = 4;
7105f2336efSEd Maste 		break;
7115f2336efSEd Maste 	}
7125f2336efSEd Maste 	/* acct */
7135f2336efSEd Maste 	case 89: {
7145f2336efSEd Maste 		struct acct_args *p = params;
7156b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->path; /* char * */
7165f2336efSEd Maste 		*n_args = 1;
7175f2336efSEd Maste 		break;
7185f2336efSEd Maste 	}
7195f2336efSEd Maste 	/* linux_capget */
7205f2336efSEd Maste 	case 90: {
7215f2336efSEd Maste 		struct linux_capget_args *p = params;
7226b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->hdrp; /* struct l_user_cap_header * */
7236b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->datap; /* struct l_user_cap_data * */
7245f2336efSEd Maste 		*n_args = 2;
7255f2336efSEd Maste 		break;
7265f2336efSEd Maste 	}
7275f2336efSEd Maste 	/* linux_capset */
7285f2336efSEd Maste 	case 91: {
7295f2336efSEd Maste 		struct linux_capset_args *p = params;
7306b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->hdrp; /* struct l_user_cap_header * */
7316b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->datap; /* struct l_user_cap_data * */
7325f2336efSEd Maste 		*n_args = 2;
7335f2336efSEd Maste 		break;
7345f2336efSEd Maste 	}
7355f2336efSEd Maste 	/* linux_personality */
7365f2336efSEd Maste 	case 92: {
7375f2336efSEd Maste 		struct linux_personality_args *p = params;
7386b7c23a0SBrooks Davis 		iarg[a++] = p->per; /* l_uint */
7395f2336efSEd Maste 		*n_args = 1;
7405f2336efSEd Maste 		break;
7415f2336efSEd Maste 	}
7425f2336efSEd Maste 	/* linux_exit */
7435f2336efSEd Maste 	case 93: {
7445f2336efSEd Maste 		struct linux_exit_args *p = params;
7456b7c23a0SBrooks Davis 		uarg[a++] = p->rval; /* u_int */
7465f2336efSEd Maste 		*n_args = 1;
7475f2336efSEd Maste 		break;
7485f2336efSEd Maste 	}
7495f2336efSEd Maste 	/* linux_exit_group */
7505f2336efSEd Maste 	case 94: {
7515f2336efSEd Maste 		struct linux_exit_group_args *p = params;
7526b7c23a0SBrooks Davis 		iarg[a++] = p->error_code; /* l_int */
7535f2336efSEd Maste 		*n_args = 1;
7545f2336efSEd Maste 		break;
7555f2336efSEd Maste 	}
7565f2336efSEd Maste 	/* linux_waitid */
7575f2336efSEd Maste 	case 95: {
7585f2336efSEd Maste 		struct linux_waitid_args *p = params;
7596b7c23a0SBrooks Davis 		iarg[a++] = p->idtype; /* l_int */
7606b7c23a0SBrooks Davis 		iarg[a++] = p->id; /* l_pid_t */
7616b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->info; /* l_siginfo_t * */
7626b7c23a0SBrooks Davis 		iarg[a++] = p->options; /* l_int */
7636b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->rusage; /* struct rusage * */
7645f2336efSEd Maste 		*n_args = 5;
7655f2336efSEd Maste 		break;
7665f2336efSEd Maste 	}
7675f2336efSEd Maste 	/* linux_set_tid_address */
7685f2336efSEd Maste 	case 96: {
7695f2336efSEd Maste 		struct linux_set_tid_address_args *p = params;
7706b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->tidptr; /* l_int * */
7715f2336efSEd Maste 		*n_args = 1;
7725f2336efSEd Maste 		break;
7735f2336efSEd Maste 	}
7745f2336efSEd Maste 	/* linux_unshare */
7755f2336efSEd Maste 	case 97: {
7765f2336efSEd Maste 		*n_args = 0;
7775f2336efSEd Maste 		break;
7785f2336efSEd Maste 	}
7795f2336efSEd Maste 	/* linux_sys_futex */
7805f2336efSEd Maste 	case 98: {
7815f2336efSEd Maste 		struct linux_sys_futex_args *p = params;
7826b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->uaddr; /* uint32_t * */
7836b7c23a0SBrooks Davis 		iarg[a++] = p->op; /* l_int */
7846b7c23a0SBrooks Davis 		uarg[a++] = p->val; /* uint32_t */
7856b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec * */
7866b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->uaddr2; /* uint32_t * */
7876b7c23a0SBrooks Davis 		uarg[a++] = p->val3; /* uint32_t */
7885f2336efSEd Maste 		*n_args = 6;
7895f2336efSEd Maste 		break;
7905f2336efSEd Maste 	}
7915f2336efSEd Maste 	/* linux_set_robust_list */
7925f2336efSEd Maste 	case 99: {
7935f2336efSEd Maste 		struct linux_set_robust_list_args *p = params;
7946b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->head; /* struct linux_robust_list_head * */
7956b7c23a0SBrooks Davis 		iarg[a++] = p->len; /* l_size_t */
7965f2336efSEd Maste 		*n_args = 2;
7975f2336efSEd Maste 		break;
7985f2336efSEd Maste 	}
7995f2336efSEd Maste 	/* linux_get_robust_list */
8005f2336efSEd Maste 	case 100: {
8015f2336efSEd Maste 		struct linux_get_robust_list_args *p = params;
8026b7c23a0SBrooks Davis 		iarg[a++] = p->pid; /* l_int */
8036b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->head; /* struct linux_robust_list_head ** */
8046b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->len; /* l_size_t * */
8055f2336efSEd Maste 		*n_args = 3;
8065f2336efSEd Maste 		break;
8075f2336efSEd Maste 	}
8085f2336efSEd Maste 	/* linux_nanosleep */
8095f2336efSEd Maste 	case 101: {
8105f2336efSEd Maste 		struct linux_nanosleep_args *p = params;
8116b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->rqtp; /* const struct l_timespec * */
8126b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->rmtp; /* struct l_timespec * */
8135f2336efSEd Maste 		*n_args = 2;
8145f2336efSEd Maste 		break;
8155f2336efSEd Maste 	}
8165f2336efSEd Maste 	/* linux_getitimer */
8175f2336efSEd Maste 	case 102: {
8185f2336efSEd Maste 		struct linux_getitimer_args *p = params;
8196b7c23a0SBrooks Davis 		iarg[a++] = p->which; /* l_int */
8206b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->itv; /* struct l_itimerval * */
8215f2336efSEd Maste 		*n_args = 2;
8225f2336efSEd Maste 		break;
8235f2336efSEd Maste 	}
8245f2336efSEd Maste 	/* linux_setitimer */
8255f2336efSEd Maste 	case 103: {
8265f2336efSEd Maste 		struct linux_setitimer_args *p = params;
8276b7c23a0SBrooks Davis 		iarg[a++] = p->which; /* l_int */
8286b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->itv; /* struct l_itimerval * */
8296b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->oitv; /* struct l_itimerval * */
8305f2336efSEd Maste 		*n_args = 3;
8315f2336efSEd Maste 		break;
8325f2336efSEd Maste 	}
8335f2336efSEd Maste 	/* linux_kexec_load */
8345f2336efSEd Maste 	case 104: {
8355f2336efSEd Maste 		*n_args = 0;
8365f2336efSEd Maste 		break;
8375f2336efSEd Maste 	}
8385f2336efSEd Maste 	/* linux_init_module */
8395f2336efSEd Maste 	case 105: {
8405f2336efSEd Maste 		*n_args = 0;
8415f2336efSEd Maste 		break;
8425f2336efSEd Maste 	}
8435f2336efSEd Maste 	/* linux_delete_module */
8445f2336efSEd Maste 	case 106: {
8455f2336efSEd Maste 		*n_args = 0;
8465f2336efSEd Maste 		break;
8475f2336efSEd Maste 	}
8485f2336efSEd Maste 	/* linux_timer_create */
8495f2336efSEd Maste 	case 107: {
8505f2336efSEd Maste 		struct linux_timer_create_args *p = params;
8516b7c23a0SBrooks Davis 		iarg[a++] = p->clock_id; /* clockid_t */
852bedbaee8SWarner Losh 		uarg[a++] = (intptr_t)p->evp; /* struct l_sigevent * */
8536b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->timerid; /* l_timer_t * */
8545f2336efSEd Maste 		*n_args = 3;
8555f2336efSEd Maste 		break;
8565f2336efSEd Maste 	}
8575f2336efSEd Maste 	/* linux_timer_gettime */
8585f2336efSEd Maste 	case 108: {
8595f2336efSEd Maste 		struct linux_timer_gettime_args *p = params;
8606b7c23a0SBrooks Davis 		iarg[a++] = p->timerid; /* l_timer_t */
8616b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->setting; /* struct itimerspec * */
8625f2336efSEd Maste 		*n_args = 2;
8635f2336efSEd Maste 		break;
8645f2336efSEd Maste 	}
8655f2336efSEd Maste 	/* linux_timer_getoverrun */
8665f2336efSEd Maste 	case 109: {
8675f2336efSEd Maste 		struct linux_timer_getoverrun_args *p = params;
8686b7c23a0SBrooks Davis 		iarg[a++] = p->timerid; /* l_timer_t */
8695f2336efSEd Maste 		*n_args = 1;
8705f2336efSEd Maste 		break;
8715f2336efSEd Maste 	}
8725f2336efSEd Maste 	/* linux_timer_settime */
8735f2336efSEd Maste 	case 110: {
8745f2336efSEd Maste 		struct linux_timer_settime_args *p = params;
8756b7c23a0SBrooks Davis 		iarg[a++] = p->timerid; /* l_timer_t */
8766b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_int */
8776b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->new; /* const struct itimerspec * */
8786b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->old; /* struct itimerspec * */
8795f2336efSEd Maste 		*n_args = 4;
8805f2336efSEd Maste 		break;
8815f2336efSEd Maste 	}
8825f2336efSEd Maste 	/* linux_timer_delete */
8835f2336efSEd Maste 	case 111: {
8845f2336efSEd Maste 		struct linux_timer_delete_args *p = params;
8856b7c23a0SBrooks Davis 		iarg[a++] = p->timerid; /* l_timer_t */
8865f2336efSEd Maste 		*n_args = 1;
8875f2336efSEd Maste 		break;
8885f2336efSEd Maste 	}
8895f2336efSEd Maste 	/* linux_clock_settime */
8905f2336efSEd Maste 	case 112: {
8915f2336efSEd Maste 		struct linux_clock_settime_args *p = params;
8926b7c23a0SBrooks Davis 		iarg[a++] = p->which; /* clockid_t */
8936b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->tp; /* struct l_timespec * */
8945f2336efSEd Maste 		*n_args = 2;
8955f2336efSEd Maste 		break;
8965f2336efSEd Maste 	}
8975f2336efSEd Maste 	/* linux_clock_gettime */
8985f2336efSEd Maste 	case 113: {
8995f2336efSEd Maste 		struct linux_clock_gettime_args *p = params;
9006b7c23a0SBrooks Davis 		iarg[a++] = p->which; /* clockid_t */
9016b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->tp; /* struct l_timespec * */
9025f2336efSEd Maste 		*n_args = 2;
9035f2336efSEd Maste 		break;
9045f2336efSEd Maste 	}
9055f2336efSEd Maste 	/* linux_clock_getres */
9065f2336efSEd Maste 	case 114: {
9075f2336efSEd Maste 		struct linux_clock_getres_args *p = params;
9086b7c23a0SBrooks Davis 		iarg[a++] = p->which; /* clockid_t */
9096b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->tp; /* struct l_timespec * */
9105f2336efSEd Maste 		*n_args = 2;
9115f2336efSEd Maste 		break;
9125f2336efSEd Maste 	}
9135f2336efSEd Maste 	/* linux_clock_nanosleep */
9145f2336efSEd Maste 	case 115: {
9155f2336efSEd Maste 		struct linux_clock_nanosleep_args *p = params;
9166b7c23a0SBrooks Davis 		iarg[a++] = p->which; /* clockid_t */
9176b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_int */
9186b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->rqtp; /* struct l_timespec * */
9196b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->rmtp; /* struct l_timespec * */
9205f2336efSEd Maste 		*n_args = 4;
9215f2336efSEd Maste 		break;
9225f2336efSEd Maste 	}
9235f2336efSEd Maste 	/* linux_syslog */
9245f2336efSEd Maste 	case 116: {
9255f2336efSEd Maste 		struct linux_syslog_args *p = params;
9266b7c23a0SBrooks Davis 		iarg[a++] = p->type; /* l_int */
9276b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->buf; /* char * */
9286b7c23a0SBrooks Davis 		iarg[a++] = p->len; /* l_int */
9295f2336efSEd Maste 		*n_args = 3;
9305f2336efSEd Maste 		break;
9315f2336efSEd Maste 	}
9325f2336efSEd Maste 	/* linux_ptrace */
9335f2336efSEd Maste 	case 117: {
9345f2336efSEd Maste 		struct linux_ptrace_args *p = params;
9356b7c23a0SBrooks Davis 		iarg[a++] = p->req; /* l_long */
9366b7c23a0SBrooks Davis 		iarg[a++] = p->pid; /* l_long */
9376b7c23a0SBrooks Davis 		iarg[a++] = p->addr; /* l_ulong */
9386b7c23a0SBrooks Davis 		iarg[a++] = p->data; /* l_ulong */
9395f2336efSEd Maste 		*n_args = 4;
9405f2336efSEd Maste 		break;
9415f2336efSEd Maste 	}
9425f2336efSEd Maste 	/* linux_sched_setparam */
9435f2336efSEd Maste 	case 118: {
9445f2336efSEd Maste 		struct linux_sched_setparam_args *p = params;
9456b7c23a0SBrooks Davis 		iarg[a++] = p->pid; /* l_pid_t */
9466b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->param; /* struct sched_param * */
9475f2336efSEd Maste 		*n_args = 2;
9485f2336efSEd Maste 		break;
9495f2336efSEd Maste 	}
9505f2336efSEd Maste 	/* linux_sched_setscheduler */
9515f2336efSEd Maste 	case 119: {
9525f2336efSEd Maste 		struct linux_sched_setscheduler_args *p = params;
9536b7c23a0SBrooks Davis 		iarg[a++] = p->pid; /* l_pid_t */
9546b7c23a0SBrooks Davis 		iarg[a++] = p->policy; /* l_int */
9556b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->param; /* struct sched_param * */
9565f2336efSEd Maste 		*n_args = 3;
9575f2336efSEd Maste 		break;
9585f2336efSEd Maste 	}
9595f2336efSEd Maste 	/* linux_sched_getscheduler */
9605f2336efSEd Maste 	case 120: {
9615f2336efSEd Maste 		struct linux_sched_getscheduler_args *p = params;
9626b7c23a0SBrooks Davis 		iarg[a++] = p->pid; /* l_pid_t */
9635f2336efSEd Maste 		*n_args = 1;
9645f2336efSEd Maste 		break;
9655f2336efSEd Maste 	}
9665f2336efSEd Maste 	/* linux_sched_getparam */
9675f2336efSEd Maste 	case 121: {
9685f2336efSEd Maste 		struct linux_sched_getparam_args *p = params;
9696b7c23a0SBrooks Davis 		iarg[a++] = p->pid; /* l_pid_t */
9706b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->param; /* struct sched_param * */
9715f2336efSEd Maste 		*n_args = 2;
9725f2336efSEd Maste 		break;
9735f2336efSEd Maste 	}
9745f2336efSEd Maste 	/* linux_sched_setaffinity */
9755f2336efSEd Maste 	case 122: {
9765f2336efSEd Maste 		struct linux_sched_setaffinity_args *p = params;
9776b7c23a0SBrooks Davis 		iarg[a++] = p->pid; /* l_pid_t */
9786b7c23a0SBrooks Davis 		iarg[a++] = p->len; /* l_uint */
9796b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->user_mask_ptr; /* l_ulong * */
9805f2336efSEd Maste 		*n_args = 3;
9815f2336efSEd Maste 		break;
9825f2336efSEd Maste 	}
9835f2336efSEd Maste 	/* linux_sched_getaffinity */
9845f2336efSEd Maste 	case 123: {
9855f2336efSEd Maste 		struct linux_sched_getaffinity_args *p = params;
9866b7c23a0SBrooks Davis 		iarg[a++] = p->pid; /* l_pid_t */
9876b7c23a0SBrooks Davis 		iarg[a++] = p->len; /* l_uint */
9886b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->user_mask_ptr; /* l_ulong * */
9895f2336efSEd Maste 		*n_args = 3;
9905f2336efSEd Maste 		break;
9915f2336efSEd Maste 	}
9925f2336efSEd Maste 	/* sched_yield */
9935f2336efSEd Maste 	case 124: {
9945f2336efSEd Maste 		*n_args = 0;
9955f2336efSEd Maste 		break;
9965f2336efSEd Maste 	}
9975f2336efSEd Maste 	/* linux_sched_get_priority_max */
9985f2336efSEd Maste 	case 125: {
9995f2336efSEd Maste 		struct linux_sched_get_priority_max_args *p = params;
10006b7c23a0SBrooks Davis 		iarg[a++] = p->policy; /* l_int */
10015f2336efSEd Maste 		*n_args = 1;
10025f2336efSEd Maste 		break;
10035f2336efSEd Maste 	}
10045f2336efSEd Maste 	/* linux_sched_get_priority_min */
10055f2336efSEd Maste 	case 126: {
10065f2336efSEd Maste 		struct linux_sched_get_priority_min_args *p = params;
10076b7c23a0SBrooks Davis 		iarg[a++] = p->policy; /* l_int */
10085f2336efSEd Maste 		*n_args = 1;
10095f2336efSEd Maste 		break;
10105f2336efSEd Maste 	}
10115f2336efSEd Maste 	/* linux_sched_rr_get_interval */
10125f2336efSEd Maste 	case 127: {
10135f2336efSEd Maste 		struct linux_sched_rr_get_interval_args *p = params;
10146b7c23a0SBrooks Davis 		iarg[a++] = p->pid; /* l_pid_t */
10156b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->interval; /* struct l_timespec * */
10165f2336efSEd Maste 		*n_args = 2;
10175f2336efSEd Maste 		break;
10185f2336efSEd Maste 	}
10195f2336efSEd Maste 	/* linux_kill */
10205f2336efSEd Maste 	case 129: {
10215f2336efSEd Maste 		struct linux_kill_args *p = params;
10226b7c23a0SBrooks Davis 		iarg[a++] = p->pid; /* l_pid_t */
10236b7c23a0SBrooks Davis 		iarg[a++] = p->signum; /* l_int */
10245f2336efSEd Maste 		*n_args = 2;
10255f2336efSEd Maste 		break;
10265f2336efSEd Maste 	}
10275f2336efSEd Maste 	/* linux_tkill */
10285f2336efSEd Maste 	case 130: {
10295f2336efSEd Maste 		struct linux_tkill_args *p = params;
10306b7c23a0SBrooks Davis 		iarg[a++] = p->tid; /* l_pid_t */
10316b7c23a0SBrooks Davis 		iarg[a++] = p->sig; /* l_int */
10325f2336efSEd Maste 		*n_args = 2;
10335f2336efSEd Maste 		break;
10345f2336efSEd Maste 	}
10355f2336efSEd Maste 	/* linux_tgkill */
10365f2336efSEd Maste 	case 131: {
10375f2336efSEd Maste 		struct linux_tgkill_args *p = params;
10386b7c23a0SBrooks Davis 		iarg[a++] = p->tgid; /* l_pid_t */
10396b7c23a0SBrooks Davis 		iarg[a++] = p->pid; /* l_pid_t */
10406b7c23a0SBrooks Davis 		iarg[a++] = p->sig; /* l_int */
10415f2336efSEd Maste 		*n_args = 3;
10425f2336efSEd Maste 		break;
10435f2336efSEd Maste 	}
10445f2336efSEd Maste 	/* linux_sigaltstack */
10455f2336efSEd Maste 	case 132: {
10465f2336efSEd Maste 		struct linux_sigaltstack_args *p = params;
10476b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->uss; /* l_stack_t * */
10486b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->uoss; /* l_stack_t * */
10495f2336efSEd Maste 		*n_args = 2;
10505f2336efSEd Maste 		break;
10515f2336efSEd Maste 	}
10525f2336efSEd Maste 	/* linux_rt_sigsuspend */
10535f2336efSEd Maste 	case 133: {
10545f2336efSEd Maste 		struct linux_rt_sigsuspend_args *p = params;
10556b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->newset; /* l_sigset_t * */
10566b7c23a0SBrooks Davis 		iarg[a++] = p->sigsetsize; /* l_size_t */
10575f2336efSEd Maste 		*n_args = 2;
10585f2336efSEd Maste 		break;
10595f2336efSEd Maste 	}
10605f2336efSEd Maste 	/* linux_rt_sigaction */
10615f2336efSEd Maste 	case 134: {
10625f2336efSEd Maste 		struct linux_rt_sigaction_args *p = params;
10636b7c23a0SBrooks Davis 		iarg[a++] = p->sig; /* l_int */
10646b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->act; /* l_sigaction_t * */
10656b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->oact; /* l_sigaction_t * */
10666b7c23a0SBrooks Davis 		iarg[a++] = p->sigsetsize; /* l_size_t */
10675f2336efSEd Maste 		*n_args = 4;
10685f2336efSEd Maste 		break;
10695f2336efSEd Maste 	}
10705f2336efSEd Maste 	/* linux_rt_sigprocmask */
10715f2336efSEd Maste 	case 135: {
10725f2336efSEd Maste 		struct linux_rt_sigprocmask_args *p = params;
10736b7c23a0SBrooks Davis 		iarg[a++] = p->how; /* l_int */
10746b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */
10756b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->omask; /* l_sigset_t * */
10766b7c23a0SBrooks Davis 		iarg[a++] = p->sigsetsize; /* l_size_t */
10775f2336efSEd Maste 		*n_args = 4;
10785f2336efSEd Maste 		break;
10795f2336efSEd Maste 	}
10805f2336efSEd Maste 	/* linux_rt_sigpending */
10815f2336efSEd Maste 	case 136: {
10825f2336efSEd Maste 		struct linux_rt_sigpending_args *p = params;
10836b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->set; /* l_sigset_t * */
10846b7c23a0SBrooks Davis 		iarg[a++] = p->sigsetsize; /* l_size_t */
10855f2336efSEd Maste 		*n_args = 2;
10865f2336efSEd Maste 		break;
10875f2336efSEd Maste 	}
10885f2336efSEd Maste 	/* linux_rt_sigtimedwait */
10895f2336efSEd Maste 	case 137: {
10905f2336efSEd Maste 		struct linux_rt_sigtimedwait_args *p = params;
10916b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */
10926b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->ptr; /* l_siginfo_t * */
10936b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec * */
10946b7c23a0SBrooks Davis 		iarg[a++] = p->sigsetsize; /* l_size_t */
10955f2336efSEd Maste 		*n_args = 4;
10965f2336efSEd Maste 		break;
10975f2336efSEd Maste 	}
10985f2336efSEd Maste 	/* linux_rt_sigqueueinfo */
10995f2336efSEd Maste 	case 138: {
11005f2336efSEd Maste 		struct linux_rt_sigqueueinfo_args *p = params;
11016b7c23a0SBrooks Davis 		iarg[a++] = p->pid; /* l_pid_t */
11026b7c23a0SBrooks Davis 		iarg[a++] = p->sig; /* l_int */
11036b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->info; /* l_siginfo_t * */
11045f2336efSEd Maste 		*n_args = 3;
11055f2336efSEd Maste 		break;
11065f2336efSEd Maste 	}
11075f2336efSEd Maste 	/* linux_rt_sigreturn */
11085f2336efSEd Maste 	case 139: {
11098bc3dc01SEdward Tomasz Napierala 		*n_args = 0;
11105f2336efSEd Maste 		break;
11115f2336efSEd Maste 	}
11125f2336efSEd Maste 	/* setpriority */
11135f2336efSEd Maste 	case 140: {
11145f2336efSEd Maste 		struct setpriority_args *p = params;
11156b7c23a0SBrooks Davis 		iarg[a++] = p->which; /* int */
11166b7c23a0SBrooks Davis 		iarg[a++] = p->who; /* int */
11176b7c23a0SBrooks Davis 		iarg[a++] = p->prio; /* int */
11185f2336efSEd Maste 		*n_args = 3;
11195f2336efSEd Maste 		break;
11205f2336efSEd Maste 	}
11215f2336efSEd Maste 	/* linux_getpriority */
11225f2336efSEd Maste 	case 141: {
11235f2336efSEd Maste 		struct linux_getpriority_args *p = params;
11246b7c23a0SBrooks Davis 		iarg[a++] = p->which; /* l_int */
11256b7c23a0SBrooks Davis 		iarg[a++] = p->who; /* l_int */
11265f2336efSEd Maste 		*n_args = 2;
11275f2336efSEd Maste 		break;
11285f2336efSEd Maste 	}
11295f2336efSEd Maste 	/* linux_reboot */
11305f2336efSEd Maste 	case 142: {
11315f2336efSEd Maste 		struct linux_reboot_args *p = params;
11326b7c23a0SBrooks Davis 		iarg[a++] = p->magic1; /* l_int */
11336b7c23a0SBrooks Davis 		iarg[a++] = p->magic2; /* l_int */
11346b7c23a0SBrooks Davis 		iarg[a++] = p->cmd; /* l_uint */
11356b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->arg; /* void * */
11365f2336efSEd Maste 		*n_args = 4;
11375f2336efSEd Maste 		break;
11385f2336efSEd Maste 	}
11395f2336efSEd Maste 	/* setregid */
11405f2336efSEd Maste 	case 143: {
11415f2336efSEd Maste 		struct setregid_args *p = params;
11426b7c23a0SBrooks Davis 		iarg[a++] = p->rgid; /* gid_t */
11436b7c23a0SBrooks Davis 		iarg[a++] = p->egid; /* gid_t */
11445f2336efSEd Maste 		*n_args = 2;
11455f2336efSEd Maste 		break;
11465f2336efSEd Maste 	}
11475f2336efSEd Maste 	/* setgid */
11485f2336efSEd Maste 	case 144: {
11495f2336efSEd Maste 		struct setgid_args *p = params;
11506b7c23a0SBrooks Davis 		iarg[a++] = p->gid; /* gid_t */
11515f2336efSEd Maste 		*n_args = 1;
11525f2336efSEd Maste 		break;
11535f2336efSEd Maste 	}
11545f2336efSEd Maste 	/* setreuid */
11555f2336efSEd Maste 	case 145: {
11565f2336efSEd Maste 		struct setreuid_args *p = params;
11576b7c23a0SBrooks Davis 		uarg[a++] = p->ruid; /* uid_t */
11586b7c23a0SBrooks Davis 		uarg[a++] = p->euid; /* uid_t */
11595f2336efSEd Maste 		*n_args = 2;
11605f2336efSEd Maste 		break;
11615f2336efSEd Maste 	}
11625f2336efSEd Maste 	/* setuid */
11635f2336efSEd Maste 	case 146: {
11645f2336efSEd Maste 		struct setuid_args *p = params;
11656b7c23a0SBrooks Davis 		uarg[a++] = p->uid; /* uid_t */
11665f2336efSEd Maste 		*n_args = 1;
11675f2336efSEd Maste 		break;
11685f2336efSEd Maste 	}
11695f2336efSEd Maste 	/* setresuid */
11705f2336efSEd Maste 	case 147: {
11715f2336efSEd Maste 		struct setresuid_args *p = params;
11726b7c23a0SBrooks Davis 		uarg[a++] = p->ruid; /* uid_t */
11736b7c23a0SBrooks Davis 		uarg[a++] = p->euid; /* uid_t */
11746b7c23a0SBrooks Davis 		uarg[a++] = p->suid; /* uid_t */
11755f2336efSEd Maste 		*n_args = 3;
11765f2336efSEd Maste 		break;
11775f2336efSEd Maste 	}
11785f2336efSEd Maste 	/* getresuid */
11795f2336efSEd Maste 	case 148: {
11805f2336efSEd Maste 		struct getresuid_args *p = params;
11816b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->ruid; /* uid_t * */
11826b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->euid; /* uid_t * */
11836b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->suid; /* uid_t * */
11845f2336efSEd Maste 		*n_args = 3;
11855f2336efSEd Maste 		break;
11865f2336efSEd Maste 	}
11875f2336efSEd Maste 	/* setresgid */
11885f2336efSEd Maste 	case 149: {
11895f2336efSEd Maste 		struct setresgid_args *p = params;
11906b7c23a0SBrooks Davis 		iarg[a++] = p->rgid; /* gid_t */
11916b7c23a0SBrooks Davis 		iarg[a++] = p->egid; /* gid_t */
11926b7c23a0SBrooks Davis 		iarg[a++] = p->sgid; /* gid_t */
11935f2336efSEd Maste 		*n_args = 3;
11945f2336efSEd Maste 		break;
11955f2336efSEd Maste 	}
11965f2336efSEd Maste 	/* getresgid */
11975f2336efSEd Maste 	case 150: {
11985f2336efSEd Maste 		struct getresgid_args *p = params;
11996b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->rgid; /* gid_t * */
12006b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->egid; /* gid_t * */
12016b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->sgid; /* gid_t * */
12025f2336efSEd Maste 		*n_args = 3;
12035f2336efSEd Maste 		break;
12045f2336efSEd Maste 	}
12055f2336efSEd Maste 	/* linux_setfsuid */
12065f2336efSEd Maste 	case 151: {
12075f2336efSEd Maste 		struct linux_setfsuid_args *p = params;
12086b7c23a0SBrooks Davis 		iarg[a++] = p->uid; /* l_uid_t */
12095f2336efSEd Maste 		*n_args = 1;
12105f2336efSEd Maste 		break;
12115f2336efSEd Maste 	}
12125f2336efSEd Maste 	/* linux_setfsgid */
12135f2336efSEd Maste 	case 152: {
12145f2336efSEd Maste 		struct linux_setfsgid_args *p = params;
12156b7c23a0SBrooks Davis 		iarg[a++] = p->gid; /* l_gid_t */
12165f2336efSEd Maste 		*n_args = 1;
12175f2336efSEd Maste 		break;
12185f2336efSEd Maste 	}
12195f2336efSEd Maste 	/* linux_times */
12205f2336efSEd Maste 	case 153: {
12215f2336efSEd Maste 		struct linux_times_args *p = params;
12226b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->buf; /* struct l_times_argv * */
12235f2336efSEd Maste 		*n_args = 1;
12245f2336efSEd Maste 		break;
12255f2336efSEd Maste 	}
12265f2336efSEd Maste 	/* setpgid */
12275f2336efSEd Maste 	case 154: {
12285f2336efSEd Maste 		struct setpgid_args *p = params;
12296b7c23a0SBrooks Davis 		iarg[a++] = p->pid; /* int */
12306b7c23a0SBrooks Davis 		iarg[a++] = p->pgid; /* int */
12315f2336efSEd Maste 		*n_args = 2;
12325f2336efSEd Maste 		break;
12335f2336efSEd Maste 	}
12345f2336efSEd Maste 	/* getpgid */
12355f2336efSEd Maste 	case 155: {
12365f2336efSEd Maste 		struct getpgid_args *p = params;
12376b7c23a0SBrooks Davis 		iarg[a++] = p->pid; /* int */
12385f2336efSEd Maste 		*n_args = 1;
12395f2336efSEd Maste 		break;
12405f2336efSEd Maste 	}
12415f2336efSEd Maste 	/* linux_getsid */
12425f2336efSEd Maste 	case 156: {
12435f2336efSEd Maste 		struct linux_getsid_args *p = params;
12446b7c23a0SBrooks Davis 		iarg[a++] = p->pid; /* l_pid_t */
12455f2336efSEd Maste 		*n_args = 1;
12465f2336efSEd Maste 		break;
12475f2336efSEd Maste 	}
12485f2336efSEd Maste 	/* setsid */
12495f2336efSEd Maste 	case 157: {
12505f2336efSEd Maste 		*n_args = 0;
12515f2336efSEd Maste 		break;
12525f2336efSEd Maste 	}
12535f2336efSEd Maste 	/* linux_getgroups */
12545f2336efSEd Maste 	case 158: {
12555f2336efSEd Maste 		struct linux_getgroups_args *p = params;
12566b7c23a0SBrooks Davis 		iarg[a++] = p->gidsetsize; /* l_int */
12576b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->grouplist; /* l_gid_t * */
12585f2336efSEd Maste 		*n_args = 2;
12595f2336efSEd Maste 		break;
12605f2336efSEd Maste 	}
12615f2336efSEd Maste 	/* linux_setgroups */
12625f2336efSEd Maste 	case 159: {
12635f2336efSEd Maste 		struct linux_setgroups_args *p = params;
12646b7c23a0SBrooks Davis 		iarg[a++] = p->gidsetsize; /* l_int */
12656b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->grouplist; /* l_gid_t * */
12665f2336efSEd Maste 		*n_args = 2;
12675f2336efSEd Maste 		break;
12685f2336efSEd Maste 	}
12695f2336efSEd Maste 	/* linux_newuname */
12705f2336efSEd Maste 	case 160: {
12715f2336efSEd Maste 		struct linux_newuname_args *p = params;
12726b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->buf; /* struct l_new_utsname * */
12735f2336efSEd Maste 		*n_args = 1;
12745f2336efSEd Maste 		break;
12755f2336efSEd Maste 	}
12765f2336efSEd Maste 	/* linux_sethostname */
12775f2336efSEd Maste 	case 161: {
12785f2336efSEd Maste 		struct linux_sethostname_args *p = params;
12796b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->hostname; /* char * */
12806b7c23a0SBrooks Davis 		iarg[a++] = p->len; /* l_uint */
12815f2336efSEd Maste 		*n_args = 2;
12825f2336efSEd Maste 		break;
12835f2336efSEd Maste 	}
12845f2336efSEd Maste 	/* linux_setdomainname */
12855f2336efSEd Maste 	case 162: {
12865f2336efSEd Maste 		struct linux_setdomainname_args *p = params;
12876b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->name; /* char * */
12886b7c23a0SBrooks Davis 		iarg[a++] = p->len; /* l_int */
12895f2336efSEd Maste 		*n_args = 2;
12905f2336efSEd Maste 		break;
12915f2336efSEd Maste 	}
12925f2336efSEd Maste 	/* linux_getrlimit */
12935f2336efSEd Maste 	case 163: {
12945f2336efSEd Maste 		struct linux_getrlimit_args *p = params;
12956b7c23a0SBrooks Davis 		iarg[a++] = p->resource; /* l_uint */
12966b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->rlim; /* struct l_rlimit * */
12975f2336efSEd Maste 		*n_args = 2;
12985f2336efSEd Maste 		break;
12995f2336efSEd Maste 	}
13005f2336efSEd Maste 	/* linux_setrlimit */
13015f2336efSEd Maste 	case 164: {
13025f2336efSEd Maste 		struct linux_setrlimit_args *p = params;
13036b7c23a0SBrooks Davis 		iarg[a++] = p->resource; /* l_uint */
13046b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->rlim; /* struct l_rlimit * */
13055f2336efSEd Maste 		*n_args = 2;
13065f2336efSEd Maste 		break;
13075f2336efSEd Maste 	}
13085f2336efSEd Maste 	/* getrusage */
13095f2336efSEd Maste 	case 165: {
13105f2336efSEd Maste 		struct getrusage_args *p = params;
13116b7c23a0SBrooks Davis 		iarg[a++] = p->who; /* int */
13126b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->rusage; /* struct rusage * */
13135f2336efSEd Maste 		*n_args = 2;
13145f2336efSEd Maste 		break;
13155f2336efSEd Maste 	}
13165f2336efSEd Maste 	/* umask */
13175f2336efSEd Maste 	case 166: {
13185f2336efSEd Maste 		struct umask_args *p = params;
13196b7c23a0SBrooks Davis 		iarg[a++] = p->newmask; /* int */
13205f2336efSEd Maste 		*n_args = 1;
13215f2336efSEd Maste 		break;
13225f2336efSEd Maste 	}
13235f2336efSEd Maste 	/* linux_prctl */
13245f2336efSEd Maste 	case 167: {
13255f2336efSEd Maste 		struct linux_prctl_args *p = params;
13266b7c23a0SBrooks Davis 		iarg[a++] = p->option; /* l_int */
13276b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->arg2; /* l_uintptr_t */
13286b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->arg3; /* l_uintptr_t */
13296b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->arg4; /* l_uintptr_t */
13306b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->arg5; /* l_uintptr_t */
13315f2336efSEd Maste 		*n_args = 5;
13325f2336efSEd Maste 		break;
13335f2336efSEd Maste 	}
13345f2336efSEd Maste 	/* linux_getcpu */
13355f2336efSEd Maste 	case 168: {
13365f2336efSEd Maste 		struct linux_getcpu_args *p = params;
13376b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->cpu; /* l_uint * */
13386b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->node; /* l_uint * */
13396b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->cache; /* void * */
13405f2336efSEd Maste 		*n_args = 3;
13415f2336efSEd Maste 		break;
13425f2336efSEd Maste 	}
13435f2336efSEd Maste 	/* gettimeofday */
13445f2336efSEd Maste 	case 169: {
13455f2336efSEd Maste 		struct gettimeofday_args *p = params;
13466b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->tp; /* struct l_timeval * */
13476b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->tzp; /* struct timezone * */
13485f2336efSEd Maste 		*n_args = 2;
13495f2336efSEd Maste 		break;
13505f2336efSEd Maste 	}
13515f2336efSEd Maste 	/* settimeofday */
13525f2336efSEd Maste 	case 170: {
13535f2336efSEd Maste 		struct settimeofday_args *p = params;
13546b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->tv; /* struct l_timeval * */
13556b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->tzp; /* struct timezone * */
13565f2336efSEd Maste 		*n_args = 2;
13575f2336efSEd Maste 		break;
13585f2336efSEd Maste 	}
13595f2336efSEd Maste 	/* linux_adjtimex */
13605f2336efSEd Maste 	case 171: {
13615f2336efSEd Maste 		*n_args = 0;
13625f2336efSEd Maste 		break;
13635f2336efSEd Maste 	}
13645f2336efSEd Maste 	/* linux_getpid */
13655f2336efSEd Maste 	case 172: {
13665f2336efSEd Maste 		*n_args = 0;
13675f2336efSEd Maste 		break;
13685f2336efSEd Maste 	}
13695f2336efSEd Maste 	/* linux_getppid */
13705f2336efSEd Maste 	case 173: {
13715f2336efSEd Maste 		*n_args = 0;
13725f2336efSEd Maste 		break;
13735f2336efSEd Maste 	}
13745f2336efSEd Maste 	/* linux_getuid */
13755f2336efSEd Maste 	case 174: {
13765f2336efSEd Maste 		*n_args = 0;
13775f2336efSEd Maste 		break;
13785f2336efSEd Maste 	}
13795f2336efSEd Maste 	/* geteuid */
13805f2336efSEd Maste 	case 175: {
13815f2336efSEd Maste 		*n_args = 0;
13825f2336efSEd Maste 		break;
13835f2336efSEd Maste 	}
13845f2336efSEd Maste 	/* linux_getgid */
13855f2336efSEd Maste 	case 176: {
13865f2336efSEd Maste 		*n_args = 0;
13875f2336efSEd Maste 		break;
13885f2336efSEd Maste 	}
13895f2336efSEd Maste 	/* getegid */
13905f2336efSEd Maste 	case 177: {
13915f2336efSEd Maste 		*n_args = 0;
13925f2336efSEd Maste 		break;
13935f2336efSEd Maste 	}
13945f2336efSEd Maste 	/* linux_gettid */
13955f2336efSEd Maste 	case 178: {
13965f2336efSEd Maste 		*n_args = 0;
13975f2336efSEd Maste 		break;
13985f2336efSEd Maste 	}
13995f2336efSEd Maste 	/* linux_sysinfo */
14005f2336efSEd Maste 	case 179: {
14015f2336efSEd Maste 		struct linux_sysinfo_args *p = params;
14026b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->info; /* struct l_sysinfo * */
14035f2336efSEd Maste 		*n_args = 1;
14045f2336efSEd Maste 		break;
14055f2336efSEd Maste 	}
14065f2336efSEd Maste 	/* linux_mq_open */
14075f2336efSEd Maste 	case 180: {
1408a39cdcd7SEdward Tomasz Napierala 		struct linux_mq_open_args *p = params;
14096b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->name; /* const char * */
14106b7c23a0SBrooks Davis 		iarg[a++] = p->oflag; /* l_int */
14116b7c23a0SBrooks Davis 		iarg[a++] = p->mode; /* l_mode_t */
14126b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->attr; /* struct mq_attr * */
1413a39cdcd7SEdward Tomasz Napierala 		*n_args = 4;
14145f2336efSEd Maste 		break;
14155f2336efSEd Maste 	}
14165f2336efSEd Maste 	/* linux_mq_unlink */
14175f2336efSEd Maste 	case 181: {
1418a39cdcd7SEdward Tomasz Napierala 		struct linux_mq_unlink_args *p = params;
14196b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->name; /* const char * */
1420a39cdcd7SEdward Tomasz Napierala 		*n_args = 1;
14215f2336efSEd Maste 		break;
14225f2336efSEd Maste 	}
14235f2336efSEd Maste 	/* linux_mq_timedsend */
14245f2336efSEd Maste 	case 182: {
1425a39cdcd7SEdward Tomasz Napierala 		struct linux_mq_timedsend_args *p = params;
14266b7c23a0SBrooks Davis 		iarg[a++] = p->mqd; /* l_mqd_t */
14276b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->msg_ptr; /* const char * */
14286b7c23a0SBrooks Davis 		iarg[a++] = p->msg_len; /* l_size_t */
14296b7c23a0SBrooks Davis 		iarg[a++] = p->msg_prio; /* l_uint */
14306b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->abs_timeout; /* const struct l_timespec * */
1431a39cdcd7SEdward Tomasz Napierala 		*n_args = 5;
14325f2336efSEd Maste 		break;
14335f2336efSEd Maste 	}
14345f2336efSEd Maste 	/* linux_mq_timedreceive */
14355f2336efSEd Maste 	case 183: {
1436a39cdcd7SEdward Tomasz Napierala 		struct linux_mq_timedreceive_args *p = params;
14376b7c23a0SBrooks Davis 		iarg[a++] = p->mqd; /* l_mqd_t */
14386b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->msg_ptr; /* char * */
14396b7c23a0SBrooks Davis 		iarg[a++] = p->msg_len; /* l_size_t */
14406b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->msg_prio; /* l_uint * */
14416b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->abs_timeout; /* const struct l_timespec * */
1442a39cdcd7SEdward Tomasz Napierala 		*n_args = 5;
14435f2336efSEd Maste 		break;
14445f2336efSEd Maste 	}
14455f2336efSEd Maste 	/* linux_mq_notify */
14465f2336efSEd Maste 	case 184: {
1447a39cdcd7SEdward Tomasz Napierala 		struct linux_mq_notify_args *p = params;
14486b7c23a0SBrooks Davis 		iarg[a++] = p->mqd; /* l_mqd_t */
1449bedbaee8SWarner Losh 		uarg[a++] = (intptr_t)p->sevp; /* const struct l_sigevent * */
1450a39cdcd7SEdward Tomasz Napierala 		*n_args = 2;
14515f2336efSEd Maste 		break;
14525f2336efSEd Maste 	}
14535f2336efSEd Maste 	/* linux_mq_getsetattr */
14545f2336efSEd Maste 	case 185: {
1455a39cdcd7SEdward Tomasz Napierala 		struct linux_mq_getsetattr_args *p = params;
14566b7c23a0SBrooks Davis 		iarg[a++] = p->mqd; /* l_mqd_t */
14576b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->attr; /* const struct mq_attr * */
14586b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->oattr; /* struct mq_attr * */
1459a39cdcd7SEdward Tomasz Napierala 		*n_args = 3;
14605f2336efSEd Maste 		break;
14615f2336efSEd Maste 	}
14625f2336efSEd Maste 	/* linux_msgget */
14635f2336efSEd Maste 	case 186: {
14645f2336efSEd Maste 		struct linux_msgget_args *p = params;
14656b7c23a0SBrooks Davis 		iarg[a++] = p->key; /* l_key_t */
14666b7c23a0SBrooks Davis 		iarg[a++] = p->msgflg; /* l_int */
14675f2336efSEd Maste 		*n_args = 2;
14685f2336efSEd Maste 		break;
14695f2336efSEd Maste 	}
14705f2336efSEd Maste 	/* linux_msgctl */
14715f2336efSEd Maste 	case 187: {
14725f2336efSEd Maste 		struct linux_msgctl_args *p = params;
14736b7c23a0SBrooks Davis 		iarg[a++] = p->msqid; /* l_int */
14746b7c23a0SBrooks Davis 		iarg[a++] = p->cmd; /* l_int */
14756b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->buf; /* struct l_msqid_ds * */
14765f2336efSEd Maste 		*n_args = 3;
14775f2336efSEd Maste 		break;
14785f2336efSEd Maste 	}
14795f2336efSEd Maste 	/* linux_msgrcv */
14805f2336efSEd Maste 	case 188: {
14815f2336efSEd Maste 		struct linux_msgrcv_args *p = params;
14826b7c23a0SBrooks Davis 		iarg[a++] = p->msqid; /* l_int */
14836b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->msgp; /* struct l_msgbuf * */
14846b7c23a0SBrooks Davis 		iarg[a++] = p->msgsz; /* l_size_t */
14856b7c23a0SBrooks Davis 		iarg[a++] = p->msgtyp; /* l_long */
14866b7c23a0SBrooks Davis 		iarg[a++] = p->msgflg; /* l_int */
14875f2336efSEd Maste 		*n_args = 5;
14885f2336efSEd Maste 		break;
14895f2336efSEd Maste 	}
14905f2336efSEd Maste 	/* linux_msgsnd */
14915f2336efSEd Maste 	case 189: {
14925f2336efSEd Maste 		struct linux_msgsnd_args *p = params;
14936b7c23a0SBrooks Davis 		iarg[a++] = p->msqid; /* l_int */
14946b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->msgp; /* struct l_msgbuf * */
14956b7c23a0SBrooks Davis 		iarg[a++] = p->msgsz; /* l_size_t */
14966b7c23a0SBrooks Davis 		iarg[a++] = p->msgflg; /* l_int */
14975f2336efSEd Maste 		*n_args = 4;
14985f2336efSEd Maste 		break;
14995f2336efSEd Maste 	}
15005f2336efSEd Maste 	/* linux_semget */
15015f2336efSEd Maste 	case 190: {
15025f2336efSEd Maste 		struct linux_semget_args *p = params;
15036b7c23a0SBrooks Davis 		iarg[a++] = p->key; /* l_key_t */
15046b7c23a0SBrooks Davis 		iarg[a++] = p->nsems; /* l_int */
15056b7c23a0SBrooks Davis 		iarg[a++] = p->semflg; /* l_int */
15065f2336efSEd Maste 		*n_args = 3;
15075f2336efSEd Maste 		break;
15085f2336efSEd Maste 	}
15095f2336efSEd Maste 	/* linux_semctl */
15105f2336efSEd Maste 	case 191: {
15115f2336efSEd Maste 		struct linux_semctl_args *p = params;
15126b7c23a0SBrooks Davis 		iarg[a++] = p->semid; /* l_int */
15136b7c23a0SBrooks Davis 		iarg[a++] = p->semnum; /* l_int */
15146b7c23a0SBrooks Davis 		iarg[a++] = p->cmd; /* l_int */
15156b7c23a0SBrooks Davis 		uarg[a++] = p->arg.buf; /* union l_semun */
15165f2336efSEd Maste 		*n_args = 4;
15175f2336efSEd Maste 		break;
15185f2336efSEd Maste 	}
15195f2336efSEd Maste 	/* linux_semtimedop */
15205f2336efSEd Maste 	case 192: {
1521430460d7SDmitry Chagin 		struct linux_semtimedop_args *p = params;
1522430460d7SDmitry Chagin 		iarg[a++] = p->semid; /* l_int */
1523430460d7SDmitry Chagin 		uarg[a++] = (intptr_t)p->tsops; /* struct sembuf * */
1524430460d7SDmitry Chagin 		iarg[a++] = p->nsops; /* l_size_t */
1525430460d7SDmitry Chagin 		uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec * */
1526430460d7SDmitry Chagin 		*n_args = 4;
15275f2336efSEd Maste 		break;
15285f2336efSEd Maste 	}
1529cd875998SDmitry Chagin 	/* semop */
15305f2336efSEd Maste 	case 193: {
1531cd875998SDmitry Chagin 		struct semop_args *p = params;
15326b7c23a0SBrooks Davis 		iarg[a++] = p->semid; /* l_int */
1533cd875998SDmitry Chagin 		uarg[a++] = (intptr_t)p->sops; /* struct sembuf * */
1534cd875998SDmitry Chagin 		iarg[a++] = p->nsops; /* l_size_t */
15355f2336efSEd Maste 		*n_args = 3;
15365f2336efSEd Maste 		break;
15375f2336efSEd Maste 	}
15385f2336efSEd Maste 	/* linux_shmget */
15395f2336efSEd Maste 	case 194: {
15405f2336efSEd Maste 		struct linux_shmget_args *p = params;
15416b7c23a0SBrooks Davis 		iarg[a++] = p->key; /* l_key_t */
15426b7c23a0SBrooks Davis 		iarg[a++] = p->size; /* l_size_t */
15436b7c23a0SBrooks Davis 		iarg[a++] = p->shmflg; /* l_int */
15445f2336efSEd Maste 		*n_args = 3;
15455f2336efSEd Maste 		break;
15465f2336efSEd Maste 	}
15475f2336efSEd Maste 	/* linux_shmctl */
15485f2336efSEd Maste 	case 195: {
15495f2336efSEd Maste 		struct linux_shmctl_args *p = params;
15506b7c23a0SBrooks Davis 		iarg[a++] = p->shmid; /* l_int */
15516b7c23a0SBrooks Davis 		iarg[a++] = p->cmd; /* l_int */
15526b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->buf; /* struct l_shmid_ds * */
15535f2336efSEd Maste 		*n_args = 3;
15545f2336efSEd Maste 		break;
15555f2336efSEd Maste 	}
15565f2336efSEd Maste 	/* linux_shmat */
15575f2336efSEd Maste 	case 196: {
15585f2336efSEd Maste 		struct linux_shmat_args *p = params;
15596b7c23a0SBrooks Davis 		iarg[a++] = p->shmid; /* l_int */
15606b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->shmaddr; /* char * */
15616b7c23a0SBrooks Davis 		iarg[a++] = p->shmflg; /* l_int */
15625f2336efSEd Maste 		*n_args = 3;
15635f2336efSEd Maste 		break;
15645f2336efSEd Maste 	}
15655f2336efSEd Maste 	/* linux_shmdt */
15665f2336efSEd Maste 	case 197: {
15675f2336efSEd Maste 		struct linux_shmdt_args *p = params;
15686b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->shmaddr; /* char * */
15695f2336efSEd Maste 		*n_args = 1;
15705f2336efSEd Maste 		break;
15715f2336efSEd Maste 	}
15725f2336efSEd Maste 	/* linux_socket */
15735f2336efSEd Maste 	case 198: {
15745f2336efSEd Maste 		struct linux_socket_args *p = params;
15756b7c23a0SBrooks Davis 		iarg[a++] = p->domain; /* l_int */
15766b7c23a0SBrooks Davis 		iarg[a++] = p->type; /* l_int */
15776b7c23a0SBrooks Davis 		iarg[a++] = p->protocol; /* l_int */
15785f2336efSEd Maste 		*n_args = 3;
15795f2336efSEd Maste 		break;
15805f2336efSEd Maste 	}
15815f2336efSEd Maste 	/* linux_socketpair */
15825f2336efSEd Maste 	case 199: {
15835f2336efSEd Maste 		struct linux_socketpair_args *p = params;
15846b7c23a0SBrooks Davis 		iarg[a++] = p->domain; /* l_int */
15856b7c23a0SBrooks Davis 		iarg[a++] = p->type; /* l_int */
15866b7c23a0SBrooks Davis 		iarg[a++] = p->protocol; /* l_int */
15876b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->rsv; /* l_uintptr_t */
15885f2336efSEd Maste 		*n_args = 4;
15895f2336efSEd Maste 		break;
15905f2336efSEd Maste 	}
15915f2336efSEd Maste 	/* linux_bind */
15925f2336efSEd Maste 	case 200: {
15935f2336efSEd Maste 		struct linux_bind_args *p = params;
15946b7c23a0SBrooks Davis 		iarg[a++] = p->s; /* l_int */
15956b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->name; /* l_uintptr_t */
15966b7c23a0SBrooks Davis 		iarg[a++] = p->namelen; /* l_int */
15975f2336efSEd Maste 		*n_args = 3;
15985f2336efSEd Maste 		break;
15995f2336efSEd Maste 	}
16005f2336efSEd Maste 	/* linux_listen */
16015f2336efSEd Maste 	case 201: {
16025f2336efSEd Maste 		struct linux_listen_args *p = params;
16036b7c23a0SBrooks Davis 		iarg[a++] = p->s; /* l_int */
16046b7c23a0SBrooks Davis 		iarg[a++] = p->backlog; /* l_int */
16055f2336efSEd Maste 		*n_args = 2;
16065f2336efSEd Maste 		break;
16075f2336efSEd Maste 	}
16085f2336efSEd Maste 	/* linux_accept */
16095f2336efSEd Maste 	case 202: {
16105f2336efSEd Maste 		struct linux_accept_args *p = params;
16116b7c23a0SBrooks Davis 		iarg[a++] = p->s; /* l_int */
16126b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->addr; /* l_uintptr_t */
16136b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->namelen; /* l_uintptr_t */
16145f2336efSEd Maste 		*n_args = 3;
16155f2336efSEd Maste 		break;
16165f2336efSEd Maste 	}
16175f2336efSEd Maste 	/* linux_connect */
16185f2336efSEd Maste 	case 203: {
16195f2336efSEd Maste 		struct linux_connect_args *p = params;
16206b7c23a0SBrooks Davis 		iarg[a++] = p->s; /* l_int */
16216b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->name; /* l_uintptr_t */
16226b7c23a0SBrooks Davis 		iarg[a++] = p->namelen; /* l_int */
16235f2336efSEd Maste 		*n_args = 3;
16245f2336efSEd Maste 		break;
16255f2336efSEd Maste 	}
16265f2336efSEd Maste 	/* linux_getsockname */
16275f2336efSEd Maste 	case 204: {
16285f2336efSEd Maste 		struct linux_getsockname_args *p = params;
16296b7c23a0SBrooks Davis 		iarg[a++] = p->s; /* l_int */
16306b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->addr; /* l_uintptr_t */
16316b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->namelen; /* l_uintptr_t */
16325f2336efSEd Maste 		*n_args = 3;
16335f2336efSEd Maste 		break;
16345f2336efSEd Maste 	}
16355f2336efSEd Maste 	/* linux_getpeername */
16365f2336efSEd Maste 	case 205: {
16375f2336efSEd Maste 		struct linux_getpeername_args *p = params;
16386b7c23a0SBrooks Davis 		iarg[a++] = p->s; /* l_int */
16396b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->addr; /* l_uintptr_t */
16406b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->namelen; /* l_uintptr_t */
16415f2336efSEd Maste 		*n_args = 3;
16425f2336efSEd Maste 		break;
16435f2336efSEd Maste 	}
16445f2336efSEd Maste 	/* linux_sendto */
16455f2336efSEd Maste 	case 206: {
16465f2336efSEd Maste 		struct linux_sendto_args *p = params;
16476b7c23a0SBrooks Davis 		iarg[a++] = p->s; /* l_int */
16486b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->msg; /* l_uintptr_t */
16496b7c23a0SBrooks Davis 		iarg[a++] = p->len; /* l_size_t */
16506b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_uint */
16516b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->to; /* l_uintptr_t */
16526b7c23a0SBrooks Davis 		iarg[a++] = p->tolen; /* l_int */
16535f2336efSEd Maste 		*n_args = 6;
16545f2336efSEd Maste 		break;
16555f2336efSEd Maste 	}
16565f2336efSEd Maste 	/* linux_recvfrom */
16575f2336efSEd Maste 	case 207: {
16585f2336efSEd Maste 		struct linux_recvfrom_args *p = params;
16596b7c23a0SBrooks Davis 		iarg[a++] = p->s; /* l_int */
16606b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->buf; /* l_uintptr_t */
16616b7c23a0SBrooks Davis 		iarg[a++] = p->len; /* l_size_t */
16626b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_uint */
16636b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->from; /* l_uintptr_t */
16646b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->fromlen; /* l_uintptr_t */
16655f2336efSEd Maste 		*n_args = 6;
16665f2336efSEd Maste 		break;
16675f2336efSEd Maste 	}
16685f2336efSEd Maste 	/* linux_setsockopt */
16695f2336efSEd Maste 	case 208: {
16705f2336efSEd Maste 		struct linux_setsockopt_args *p = params;
16716b7c23a0SBrooks Davis 		iarg[a++] = p->s; /* l_int */
16726b7c23a0SBrooks Davis 		iarg[a++] = p->level; /* l_int */
16736b7c23a0SBrooks Davis 		iarg[a++] = p->optname; /* l_int */
16746b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->optval; /* l_uintptr_t */
16756b7c23a0SBrooks Davis 		iarg[a++] = p->optlen; /* l_int */
16765f2336efSEd Maste 		*n_args = 5;
16775f2336efSEd Maste 		break;
16785f2336efSEd Maste 	}
16795f2336efSEd Maste 	/* linux_getsockopt */
16805f2336efSEd Maste 	case 209: {
16815f2336efSEd Maste 		struct linux_getsockopt_args *p = params;
16826b7c23a0SBrooks Davis 		iarg[a++] = p->s; /* l_int */
16836b7c23a0SBrooks Davis 		iarg[a++] = p->level; /* l_int */
16846b7c23a0SBrooks Davis 		iarg[a++] = p->optname; /* l_int */
16856b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->optval; /* l_uintptr_t */
16866b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->optlen; /* l_uintptr_t */
16875f2336efSEd Maste 		*n_args = 5;
16885f2336efSEd Maste 		break;
16895f2336efSEd Maste 	}
16905f2336efSEd Maste 	/* linux_shutdown */
16915f2336efSEd Maste 	case 210: {
16925f2336efSEd Maste 		struct linux_shutdown_args *p = params;
16936b7c23a0SBrooks Davis 		iarg[a++] = p->s; /* l_int */
16946b7c23a0SBrooks Davis 		iarg[a++] = p->how; /* l_int */
16955f2336efSEd Maste 		*n_args = 2;
16965f2336efSEd Maste 		break;
16975f2336efSEd Maste 	}
16985f2336efSEd Maste 	/* linux_sendmsg */
16995f2336efSEd Maste 	case 211: {
17005f2336efSEd Maste 		struct linux_sendmsg_args *p = params;
17016b7c23a0SBrooks Davis 		iarg[a++] = p->s; /* l_int */
17026b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->msg; /* l_uintptr_t */
17036b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_uint */
17045f2336efSEd Maste 		*n_args = 3;
17055f2336efSEd Maste 		break;
17065f2336efSEd Maste 	}
17075f2336efSEd Maste 	/* linux_recvmsg */
17085f2336efSEd Maste 	case 212: {
17095f2336efSEd Maste 		struct linux_recvmsg_args *p = params;
17106b7c23a0SBrooks Davis 		iarg[a++] = p->s; /* l_int */
17116b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->msg; /* l_uintptr_t */
17126b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_uint */
17135f2336efSEd Maste 		*n_args = 3;
17145f2336efSEd Maste 		break;
17155f2336efSEd Maste 	}
17165f2336efSEd Maste 	/* linux_brk */
17175f2336efSEd Maste 	case 214: {
17185f2336efSEd Maste 		struct linux_brk_args *p = params;
17196b7c23a0SBrooks Davis 		iarg[a++] = p->dsend; /* l_ulong */
17205f2336efSEd Maste 		*n_args = 1;
17215f2336efSEd Maste 		break;
17225f2336efSEd Maste 	}
17235f2336efSEd Maste 	/* munmap */
17245f2336efSEd Maste 	case 215: {
17255f2336efSEd Maste 		struct munmap_args *p = params;
17266b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->addr; /* void * */
17276b7c23a0SBrooks Davis 		iarg[a++] = p->len; /* l_size_t */
17285f2336efSEd Maste 		*n_args = 2;
17295f2336efSEd Maste 		break;
17305f2336efSEd Maste 	}
17315f2336efSEd Maste 	/* linux_mremap */
17325f2336efSEd Maste 	case 216: {
17335f2336efSEd Maste 		struct linux_mremap_args *p = params;
17346b7c23a0SBrooks Davis 		iarg[a++] = p->addr; /* l_ulong */
17356b7c23a0SBrooks Davis 		iarg[a++] = p->old_len; /* l_ulong */
17366b7c23a0SBrooks Davis 		iarg[a++] = p->new_len; /* l_ulong */
17376b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_ulong */
17386b7c23a0SBrooks Davis 		iarg[a++] = p->new_addr; /* l_ulong */
17395f2336efSEd Maste 		*n_args = 5;
17405f2336efSEd Maste 		break;
17415f2336efSEd Maste 	}
17425f2336efSEd Maste 	/* linux_add_key */
17435f2336efSEd Maste 	case 217: {
17445f2336efSEd Maste 		*n_args = 0;
17455f2336efSEd Maste 		break;
17465f2336efSEd Maste 	}
17475f2336efSEd Maste 	/* linux_request_key */
17485f2336efSEd Maste 	case 218: {
17495f2336efSEd Maste 		*n_args = 0;
17505f2336efSEd Maste 		break;
17515f2336efSEd Maste 	}
17525f2336efSEd Maste 	/* linux_keyctl */
17535f2336efSEd Maste 	case 219: {
17545f2336efSEd Maste 		*n_args = 0;
17555f2336efSEd Maste 		break;
17565f2336efSEd Maste 	}
17575f2336efSEd Maste 	/* linux_clone */
17585f2336efSEd Maste 	case 220: {
17595f2336efSEd Maste 		struct linux_clone_args *p = params;
17606b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_ulong */
17616b7c23a0SBrooks Davis 		iarg[a++] = p->stack; /* l_ulong */
17626b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->parent_tidptr; /* l_int * */
17636b7c23a0SBrooks Davis 		iarg[a++] = p->tls; /* l_ulong */
17646b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->child_tidptr; /* l_int * */
17655f2336efSEd Maste 		*n_args = 5;
17665f2336efSEd Maste 		break;
17675f2336efSEd Maste 	}
17685f2336efSEd Maste 	/* linux_execve */
17695f2336efSEd Maste 	case 221: {
17705f2336efSEd Maste 		struct linux_execve_args *p = params;
17716b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->path; /* char * */
1772eb98f779SDmitry Chagin 		uarg[a++] = (intptr_t)p->argp; /* l_uintptr_t * */
1773eb98f779SDmitry Chagin 		uarg[a++] = (intptr_t)p->envp; /* l_uintptr_t * */
17745f2336efSEd Maste 		*n_args = 3;
17755f2336efSEd Maste 		break;
17765f2336efSEd Maste 	}
17775f2336efSEd Maste 	/* linux_mmap2 */
17785f2336efSEd Maste 	case 222: {
17795f2336efSEd Maste 		struct linux_mmap2_args *p = params;
17806b7c23a0SBrooks Davis 		iarg[a++] = p->addr; /* l_ulong */
17816b7c23a0SBrooks Davis 		iarg[a++] = p->len; /* l_ulong */
17826b7c23a0SBrooks Davis 		iarg[a++] = p->prot; /* l_ulong */
17836b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_ulong */
17846b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* l_ulong */
17856b7c23a0SBrooks Davis 		iarg[a++] = p->pgoff; /* l_ulong */
17865f2336efSEd Maste 		*n_args = 6;
17875f2336efSEd Maste 		break;
17885f2336efSEd Maste 	}
17895f2336efSEd Maste 	/* linux_fadvise64 */
17905f2336efSEd Maste 	case 223: {
17915f2336efSEd Maste 		struct linux_fadvise64_args *p = params;
17926b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* l_int */
17936b7c23a0SBrooks Davis 		iarg[a++] = p->offset; /* l_loff_t */
17946b7c23a0SBrooks Davis 		iarg[a++] = p->len; /* l_size_t */
17956b7c23a0SBrooks Davis 		iarg[a++] = p->advice; /* l_int */
17965f2336efSEd Maste 		*n_args = 4;
17975f2336efSEd Maste 		break;
17985f2336efSEd Maste 	}
17995f2336efSEd Maste 	/* swapon */
18005f2336efSEd Maste 	case 224: {
18015f2336efSEd Maste 		struct swapon_args *p = params;
18026b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->name; /* char * */
18035f2336efSEd Maste 		*n_args = 1;
18045f2336efSEd Maste 		break;
18055f2336efSEd Maste 	}
18065f2336efSEd Maste 	/* linux_swapoff */
18075f2336efSEd Maste 	case 225: {
18085f2336efSEd Maste 		*n_args = 0;
18095f2336efSEd Maste 		break;
18105f2336efSEd Maste 	}
18115f2336efSEd Maste 	/* linux_mprotect */
18125f2336efSEd Maste 	case 226: {
18135f2336efSEd Maste 		struct linux_mprotect_args *p = params;
18146b7c23a0SBrooks Davis 		iarg[a++] = p->addr; /* l_ulong */
18156b7c23a0SBrooks Davis 		iarg[a++] = p->len; /* l_size_t */
18166b7c23a0SBrooks Davis 		iarg[a++] = p->prot; /* l_ulong */
18175f2336efSEd Maste 		*n_args = 3;
18185f2336efSEd Maste 		break;
18195f2336efSEd Maste 	}
18205f2336efSEd Maste 	/* linux_msync */
18215f2336efSEd Maste 	case 227: {
18225f2336efSEd Maste 		struct linux_msync_args *p = params;
18236b7c23a0SBrooks Davis 		iarg[a++] = p->addr; /* l_ulong */
18246b7c23a0SBrooks Davis 		iarg[a++] = p->len; /* l_size_t */
18256b7c23a0SBrooks Davis 		iarg[a++] = p->fl; /* l_int */
18265f2336efSEd Maste 		*n_args = 3;
18275f2336efSEd Maste 		break;
18285f2336efSEd Maste 	}
18295f2336efSEd Maste 	/* mlock */
18305f2336efSEd Maste 	case 228: {
18315f2336efSEd Maste 		struct mlock_args *p = params;
18326b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->addr; /* const void * */
18336b7c23a0SBrooks Davis 		uarg[a++] = p->len; /* size_t */
18345f2336efSEd Maste 		*n_args = 2;
18355f2336efSEd Maste 		break;
18365f2336efSEd Maste 	}
18375f2336efSEd Maste 	/* munlock */
18385f2336efSEd Maste 	case 229: {
18395f2336efSEd Maste 		struct munlock_args *p = params;
18406b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->addr; /* const void * */
18416b7c23a0SBrooks Davis 		uarg[a++] = p->len; /* size_t */
18425f2336efSEd Maste 		*n_args = 2;
18435f2336efSEd Maste 		break;
18445f2336efSEd Maste 	}
18455f2336efSEd Maste 	/* mlockall */
18465f2336efSEd Maste 	case 230: {
18475f2336efSEd Maste 		struct mlockall_args *p = params;
18486b7c23a0SBrooks Davis 		iarg[a++] = p->how; /* int */
18495f2336efSEd Maste 		*n_args = 1;
18505f2336efSEd Maste 		break;
18515f2336efSEd Maste 	}
18525f2336efSEd Maste 	/* munlockall */
18535f2336efSEd Maste 	case 231: {
18545f2336efSEd Maste 		*n_args = 0;
18555f2336efSEd Maste 		break;
18565f2336efSEd Maste 	}
18575f2336efSEd Maste 	/* linux_mincore */
18585f2336efSEd Maste 	case 232: {
18595f2336efSEd Maste 		struct linux_mincore_args *p = params;
18606b7c23a0SBrooks Davis 		iarg[a++] = p->start; /* l_ulong */
18616b7c23a0SBrooks Davis 		iarg[a++] = p->len; /* l_size_t */
18626b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->vec; /* u_char * */
18635f2336efSEd Maste 		*n_args = 3;
18645f2336efSEd Maste 		break;
18655f2336efSEd Maste 	}
1866bafd96b8SEdward Tomasz Napierala 	/* linux_madvise */
18675f2336efSEd Maste 	case 233: {
1868bafd96b8SEdward Tomasz Napierala 		struct linux_madvise_args *p = params;
18696b7c23a0SBrooks Davis 		iarg[a++] = p->addr; /* l_ulong */
18706b7c23a0SBrooks Davis 		iarg[a++] = p->len; /* l_size_t */
18716b7c23a0SBrooks Davis 		iarg[a++] = p->behav; /* l_int */
18725f2336efSEd Maste 		*n_args = 3;
18735f2336efSEd Maste 		break;
18745f2336efSEd Maste 	}
18755f2336efSEd Maste 	/* linux_remap_file_pages */
18765f2336efSEd Maste 	case 234: {
18775f2336efSEd Maste 		*n_args = 0;
18785f2336efSEd Maste 		break;
18795f2336efSEd Maste 	}
18805f2336efSEd Maste 	/* linux_mbind */
18815f2336efSEd Maste 	case 235: {
18825f2336efSEd Maste 		*n_args = 0;
18835f2336efSEd Maste 		break;
18845f2336efSEd Maste 	}
18855f2336efSEd Maste 	/* linux_get_mempolicy */
18865f2336efSEd Maste 	case 236: {
18875f2336efSEd Maste 		*n_args = 0;
18885f2336efSEd Maste 		break;
18895f2336efSEd Maste 	}
18905f2336efSEd Maste 	/* linux_set_mempolicy */
18915f2336efSEd Maste 	case 237: {
18925f2336efSEd Maste 		*n_args = 0;
18935f2336efSEd Maste 		break;
18945f2336efSEd Maste 	}
18955f2336efSEd Maste 	/* linux_migrate_pages */
18965f2336efSEd Maste 	case 238: {
18975f2336efSEd Maste 		*n_args = 0;
18985f2336efSEd Maste 		break;
18995f2336efSEd Maste 	}
19005f2336efSEd Maste 	/* linux_move_pages */
19015f2336efSEd Maste 	case 239: {
19025f2336efSEd Maste 		*n_args = 0;
19035f2336efSEd Maste 		break;
19045f2336efSEd Maste 	}
19055f2336efSEd Maste 	/* linux_rt_tgsigqueueinfo */
19065f2336efSEd Maste 	case 240: {
19075f2336efSEd Maste 		struct linux_rt_tgsigqueueinfo_args *p = params;
19086b7c23a0SBrooks Davis 		iarg[a++] = p->tgid; /* l_pid_t */
19096b7c23a0SBrooks Davis 		iarg[a++] = p->tid; /* l_pid_t */
19106b7c23a0SBrooks Davis 		iarg[a++] = p->sig; /* l_int */
19116b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->uinfo; /* l_siginfo_t * */
19125f2336efSEd Maste 		*n_args = 4;
19135f2336efSEd Maste 		break;
19145f2336efSEd Maste 	}
19155f2336efSEd Maste 	/* linux_perf_event_open */
19165f2336efSEd Maste 	case 241: {
19175f2336efSEd Maste 		*n_args = 0;
19185f2336efSEd Maste 		break;
19195f2336efSEd Maste 	}
19205f2336efSEd Maste 	/* linux_accept4 */
19215f2336efSEd Maste 	case 242: {
19225f2336efSEd Maste 		struct linux_accept4_args *p = params;
19236b7c23a0SBrooks Davis 		iarg[a++] = p->s; /* l_int */
19246b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->addr; /* l_uintptr_t */
19256b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->namelen; /* l_uintptr_t */
19266b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_int */
19275f2336efSEd Maste 		*n_args = 4;
19285f2336efSEd Maste 		break;
19295f2336efSEd Maste 	}
19305f2336efSEd Maste 	/* linux_recvmmsg */
19315f2336efSEd Maste 	case 243: {
19325f2336efSEd Maste 		struct linux_recvmmsg_args *p = params;
19336b7c23a0SBrooks Davis 		iarg[a++] = p->s; /* l_int */
19346b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->msg; /* struct l_mmsghdr * */
19356b7c23a0SBrooks Davis 		iarg[a++] = p->vlen; /* l_uint */
19366b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_uint */
19376b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec * */
19385f2336efSEd Maste 		*n_args = 5;
19395f2336efSEd Maste 		break;
19405f2336efSEd Maste 	}
19415f2336efSEd Maste 	/* linux_wait4 */
19425f2336efSEd Maste 	case 260: {
19435f2336efSEd Maste 		struct linux_wait4_args *p = params;
19446b7c23a0SBrooks Davis 		iarg[a++] = p->pid; /* l_pid_t */
19456b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->status; /* l_int * */
19466b7c23a0SBrooks Davis 		iarg[a++] = p->options; /* l_int */
19476b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->rusage; /* struct rusage * */
19485f2336efSEd Maste 		*n_args = 4;
19495f2336efSEd Maste 		break;
19505f2336efSEd Maste 	}
19515f2336efSEd Maste 	/* linux_prlimit64 */
19525f2336efSEd Maste 	case 261: {
19535f2336efSEd Maste 		struct linux_prlimit64_args *p = params;
19546b7c23a0SBrooks Davis 		iarg[a++] = p->pid; /* l_pid_t */
19556b7c23a0SBrooks Davis 		iarg[a++] = p->resource; /* l_uint */
19566b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->new; /* struct rlimit * */
19576b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->old; /* struct rlimit * */
19585f2336efSEd Maste 		*n_args = 4;
19595f2336efSEd Maste 		break;
19605f2336efSEd Maste 	}
19615f2336efSEd Maste 	/* linux_fanotify_init */
19625f2336efSEd Maste 	case 262: {
19635f2336efSEd Maste 		*n_args = 0;
19645f2336efSEd Maste 		break;
19655f2336efSEd Maste 	}
19665f2336efSEd Maste 	/* linux_fanotify_mark */
19675f2336efSEd Maste 	case 263: {
19685f2336efSEd Maste 		*n_args = 0;
19695f2336efSEd Maste 		break;
19705f2336efSEd Maste 	}
19715f2336efSEd Maste 	/* linux_name_to_handle_at */
19725f2336efSEd Maste 	case 264: {
197377eb9841SConrad Meyer 		struct linux_name_to_handle_at_args *p = params;
19746b7c23a0SBrooks Davis 		iarg[a++] = p->dirfd; /* l_int */
19756b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->name; /* const char * */
19766b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->handle; /* struct l_file_handle * */
19776b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->mnt_id; /* l_int * */
19786b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_int */
197977eb9841SConrad Meyer 		*n_args = 5;
19805f2336efSEd Maste 		break;
19815f2336efSEd Maste 	}
19825f2336efSEd Maste 	/* linux_open_by_handle_at */
19835f2336efSEd Maste 	case 265: {
198477eb9841SConrad Meyer 		struct linux_open_by_handle_at_args *p = params;
19856b7c23a0SBrooks Davis 		iarg[a++] = p->mountdirfd; /* l_int */
19866b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->handle; /* struct l_file_handle * */
19876b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_int */
198877eb9841SConrad Meyer 		*n_args = 3;
19895f2336efSEd Maste 		break;
19905f2336efSEd Maste 	}
19915f2336efSEd Maste 	/* linux_clock_adjtime */
19925f2336efSEd Maste 	case 266: {
19935f2336efSEd Maste 		*n_args = 0;
19945f2336efSEd Maste 		break;
19955f2336efSEd Maste 	}
19965f2336efSEd Maste 	/* linux_syncfs */
19975f2336efSEd Maste 	case 267: {
19985f2336efSEd Maste 		struct linux_syncfs_args *p = params;
19996b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* l_int */
20005f2336efSEd Maste 		*n_args = 1;
20015f2336efSEd Maste 		break;
20025f2336efSEd Maste 	}
20035f2336efSEd Maste 	/* linux_setns */
20045f2336efSEd Maste 	case 268: {
20055f2336efSEd Maste 		struct linux_setns_args *p = params;
20066b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* l_int */
20076b7c23a0SBrooks Davis 		iarg[a++] = p->nstype; /* l_int */
20085f2336efSEd Maste 		*n_args = 2;
20095f2336efSEd Maste 		break;
20105f2336efSEd Maste 	}
20115f2336efSEd Maste 	/* linux_sendmmsg */
20125f2336efSEd Maste 	case 269: {
20135f2336efSEd Maste 		struct linux_sendmmsg_args *p = params;
20146b7c23a0SBrooks Davis 		iarg[a++] = p->s; /* l_int */
20156b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->msg; /* struct l_mmsghdr * */
20166b7c23a0SBrooks Davis 		iarg[a++] = p->vlen; /* l_uint */
20176b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_uint */
20185f2336efSEd Maste 		*n_args = 4;
20195f2336efSEd Maste 		break;
20205f2336efSEd Maste 	}
20215f2336efSEd Maste 	/* linux_process_vm_readv */
20225f2336efSEd Maste 	case 270: {
20235f2336efSEd Maste 		struct linux_process_vm_readv_args *p = params;
20246b7c23a0SBrooks Davis 		iarg[a++] = p->pid; /* l_pid_t */
20256b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->lvec; /* const struct iovec * */
20266b7c23a0SBrooks Davis 		iarg[a++] = p->liovcnt; /* l_ulong */
20276b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->rvec; /* const struct iovec * */
20286b7c23a0SBrooks Davis 		iarg[a++] = p->riovcnt; /* l_ulong */
20296b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_ulong */
20305f2336efSEd Maste 		*n_args = 6;
20315f2336efSEd Maste 		break;
20325f2336efSEd Maste 	}
20335f2336efSEd Maste 	/* linux_process_vm_writev */
20345f2336efSEd Maste 	case 271: {
20355f2336efSEd Maste 		struct linux_process_vm_writev_args *p = params;
20366b7c23a0SBrooks Davis 		iarg[a++] = p->pid; /* l_pid_t */
20376b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->lvec; /* const struct iovec * */
20386b7c23a0SBrooks Davis 		iarg[a++] = p->liovcnt; /* l_ulong */
20396b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->rvec; /* const struct iovec * */
20406b7c23a0SBrooks Davis 		iarg[a++] = p->riovcnt; /* l_ulong */
20416b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_ulong */
20425f2336efSEd Maste 		*n_args = 6;
20435f2336efSEd Maste 		break;
20445f2336efSEd Maste 	}
20455f2336efSEd Maste 	/* linux_kcmp */
20465f2336efSEd Maste 	case 272: {
20475f2336efSEd Maste 		struct linux_kcmp_args *p = params;
20486b7c23a0SBrooks Davis 		iarg[a++] = p->pid1; /* l_pid_t */
20496b7c23a0SBrooks Davis 		iarg[a++] = p->pid2; /* l_pid_t */
20506b7c23a0SBrooks Davis 		iarg[a++] = p->type; /* l_int */
20516b7c23a0SBrooks Davis 		iarg[a++] = p->idx1; /* l_ulong */
20526b7c23a0SBrooks Davis 		iarg[a++] = p->idx; /* l_ulong */
20535f2336efSEd Maste 		*n_args = 5;
20545f2336efSEd Maste 		break;
20555f2336efSEd Maste 	}
20565f2336efSEd Maste 	/* linux_finit_module */
20575f2336efSEd Maste 	case 273: {
20585f2336efSEd Maste 		struct linux_finit_module_args *p = params;
20596b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* l_int */
20606b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->uargs; /* const char * */
20616b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_int */
20625f2336efSEd Maste 		*n_args = 3;
20635f2336efSEd Maste 		break;
20645f2336efSEd Maste 	}
20655f2336efSEd Maste 	/* linux_sched_setattr */
20665f2336efSEd Maste 	case 274: {
20675f2336efSEd Maste 		struct linux_sched_setattr_args *p = params;
20686b7c23a0SBrooks Davis 		iarg[a++] = p->pid; /* l_pid_t */
20696b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->attr; /* void * */
20706b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_uint */
20715f2336efSEd Maste 		*n_args = 3;
20725f2336efSEd Maste 		break;
20735f2336efSEd Maste 	}
20745f2336efSEd Maste 	/* linux_sched_getattr */
20755f2336efSEd Maste 	case 275: {
20765f2336efSEd Maste 		struct linux_sched_getattr_args *p = params;
20776b7c23a0SBrooks Davis 		iarg[a++] = p->pid; /* l_pid_t */
20786b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->attr; /* void * */
20796b7c23a0SBrooks Davis 		iarg[a++] = p->size; /* l_uint */
20806b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_uint */
20815f2336efSEd Maste 		*n_args = 4;
20825f2336efSEd Maste 		break;
20835f2336efSEd Maste 	}
20845f2336efSEd Maste 	/* linux_renameat2 */
20855f2336efSEd Maste 	case 276: {
20865f2336efSEd Maste 		struct linux_renameat2_args *p = params;
20876b7c23a0SBrooks Davis 		iarg[a++] = p->olddfd; /* l_int */
20886b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->oldname; /* const char * */
20896b7c23a0SBrooks Davis 		iarg[a++] = p->newdfd; /* l_int */
20906b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->newname; /* const char * */
20916b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_uint */
20925f2336efSEd Maste 		*n_args = 5;
20935f2336efSEd Maste 		break;
20945f2336efSEd Maste 	}
20955f2336efSEd Maste 	/* linux_seccomp */
20965f2336efSEd Maste 	case 277: {
20975f2336efSEd Maste 		struct linux_seccomp_args *p = params;
20986b7c23a0SBrooks Davis 		iarg[a++] = p->op; /* l_uint */
20996b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_uint */
21006b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->uargs; /* const char * */
21015f2336efSEd Maste 		*n_args = 3;
21025f2336efSEd Maste 		break;
21035f2336efSEd Maste 	}
21045f2336efSEd Maste 	/* linux_getrandom */
21055f2336efSEd Maste 	case 278: {
21065f2336efSEd Maste 		struct linux_getrandom_args *p = params;
21076b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->buf; /* char * */
21086b7c23a0SBrooks Davis 		iarg[a++] = p->count; /* l_size_t */
21096b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_uint */
21105f2336efSEd Maste 		*n_args = 3;
21115f2336efSEd Maste 		break;
21125f2336efSEd Maste 	}
21135f2336efSEd Maste 	/* linux_memfd_create */
21145f2336efSEd Maste 	case 279: {
21155f2336efSEd Maste 		struct linux_memfd_create_args *p = params;
21166b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->uname_ptr; /* const char * */
21176b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_uint */
21185f2336efSEd Maste 		*n_args = 2;
21195f2336efSEd Maste 		break;
21205f2336efSEd Maste 	}
21215f2336efSEd Maste 	/* linux_bpf */
21225f2336efSEd Maste 	case 280: {
21235f2336efSEd Maste 		struct linux_bpf_args *p = params;
21246b7c23a0SBrooks Davis 		iarg[a++] = p->cmd; /* l_int */
21256b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->attr; /* void * */
21266b7c23a0SBrooks Davis 		iarg[a++] = p->size; /* l_uint */
21275f2336efSEd Maste 		*n_args = 3;
21285f2336efSEd Maste 		break;
21295f2336efSEd Maste 	}
21305f2336efSEd Maste 	/* linux_execveat */
21315f2336efSEd Maste 	case 281: {
21325f2336efSEd Maste 		struct linux_execveat_args *p = params;
21336b7c23a0SBrooks Davis 		iarg[a++] = p->dfd; /* l_int */
21346b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->filename; /* const char * */
21356b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->argv; /* const char ** */
21366b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->envp; /* const char ** */
21376b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_int */
21385f2336efSEd Maste 		*n_args = 5;
21395f2336efSEd Maste 		break;
21405f2336efSEd Maste 	}
21415f2336efSEd Maste 	/* linux_userfaultfd */
21425f2336efSEd Maste 	case 282: {
21435f2336efSEd Maste 		struct linux_userfaultfd_args *p = params;
21446b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_int */
21455f2336efSEd Maste 		*n_args = 1;
21465f2336efSEd Maste 		break;
21475f2336efSEd Maste 	}
21485f2336efSEd Maste 	/* linux_membarrier */
21495f2336efSEd Maste 	case 283: {
21505f2336efSEd Maste 		struct linux_membarrier_args *p = params;
21516b7c23a0SBrooks Davis 		iarg[a++] = p->cmd; /* l_int */
21526b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_int */
21535f2336efSEd Maste 		*n_args = 2;
21545f2336efSEd Maste 		break;
21555f2336efSEd Maste 	}
21565f2336efSEd Maste 	/* linux_mlock2 */
21575f2336efSEd Maste 	case 284: {
21585f2336efSEd Maste 		struct linux_mlock2_args *p = params;
21596b7c23a0SBrooks Davis 		iarg[a++] = p->start; /* l_ulong */
21606b7c23a0SBrooks Davis 		iarg[a++] = p->len; /* l_size_t */
21616b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_int */
21625f2336efSEd Maste 		*n_args = 3;
21635f2336efSEd Maste 		break;
21645f2336efSEd Maste 	}
21655f2336efSEd Maste 	/* linux_copy_file_range */
21665f2336efSEd Maste 	case 285: {
21675f2336efSEd Maste 		struct linux_copy_file_range_args *p = params;
21686b7c23a0SBrooks Davis 		iarg[a++] = p->fd_in; /* l_int */
21696b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->off_in; /* l_loff_t * */
21706b7c23a0SBrooks Davis 		iarg[a++] = p->fd_out; /* l_int */
21716b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->off_out; /* l_loff_t * */
21726b7c23a0SBrooks Davis 		iarg[a++] = p->len; /* l_size_t */
21736b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_uint */
21745f2336efSEd Maste 		*n_args = 6;
21755f2336efSEd Maste 		break;
21765f2336efSEd Maste 	}
21775f2336efSEd Maste 	/* linux_preadv2 */
21785f2336efSEd Maste 	case 286: {
21795f2336efSEd Maste 		struct linux_preadv2_args *p = params;
21806b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* l_ulong */
21816b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->vec; /* const struct iovec * */
21826b7c23a0SBrooks Davis 		iarg[a++] = p->vlen; /* l_ulong */
21836b7c23a0SBrooks Davis 		iarg[a++] = p->pos_l; /* l_ulong */
21846b7c23a0SBrooks Davis 		iarg[a++] = p->pos_h; /* l_ulong */
21856b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_int */
21865f2336efSEd Maste 		*n_args = 6;
21875f2336efSEd Maste 		break;
21885f2336efSEd Maste 	}
21895f2336efSEd Maste 	/* linux_pwritev2 */
21905f2336efSEd Maste 	case 287: {
21915f2336efSEd Maste 		struct linux_pwritev2_args *p = params;
21926b7c23a0SBrooks Davis 		iarg[a++] = p->fd; /* l_ulong */
21936b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->vec; /* const struct iovec * */
21946b7c23a0SBrooks Davis 		iarg[a++] = p->vlen; /* l_ulong */
21956b7c23a0SBrooks Davis 		iarg[a++] = p->pos_l; /* l_ulong */
21966b7c23a0SBrooks Davis 		iarg[a++] = p->pos_h; /* l_ulong */
21976b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_int */
21985f2336efSEd Maste 		*n_args = 6;
21995f2336efSEd Maste 		break;
22005f2336efSEd Maste 	}
22015f2336efSEd Maste 	/* linux_pkey_mprotect */
22025f2336efSEd Maste 	case 288: {
22035f2336efSEd Maste 		struct linux_pkey_mprotect_args *p = params;
22046b7c23a0SBrooks Davis 		iarg[a++] = p->start; /* l_ulong */
22056b7c23a0SBrooks Davis 		iarg[a++] = p->len; /* l_size_t */
22066b7c23a0SBrooks Davis 		iarg[a++] = p->prot; /* l_ulong */
22076b7c23a0SBrooks Davis 		iarg[a++] = p->pkey; /* l_int */
22085f2336efSEd Maste 		*n_args = 4;
22095f2336efSEd Maste 		break;
22105f2336efSEd Maste 	}
22115f2336efSEd Maste 	/* linux_pkey_alloc */
22125f2336efSEd Maste 	case 289: {
22135f2336efSEd Maste 		struct linux_pkey_alloc_args *p = params;
22146b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_ulong */
22156b7c23a0SBrooks Davis 		iarg[a++] = p->init_val; /* l_ulong */
22165f2336efSEd Maste 		*n_args = 2;
22175f2336efSEd Maste 		break;
22185f2336efSEd Maste 	}
22195f2336efSEd Maste 	/* linux_pkey_free */
22205f2336efSEd Maste 	case 290: {
22215f2336efSEd Maste 		struct linux_pkey_free_args *p = params;
22226b7c23a0SBrooks Davis 		iarg[a++] = p->pkey; /* l_int */
22235f2336efSEd Maste 		*n_args = 1;
22245f2336efSEd Maste 		break;
22255f2336efSEd Maste 	}
2226c0f17173SEdward Tomasz Napierala 	/* linux_statx */
2227c0f17173SEdward Tomasz Napierala 	case 291: {
2228c0f17173SEdward Tomasz Napierala 		struct linux_statx_args *p = params;
22296b7c23a0SBrooks Davis 		iarg[a++] = p->dirfd; /* l_int */
22306b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->pathname; /* const char * */
22316b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_uint */
22326b7c23a0SBrooks Davis 		iarg[a++] = p->mask; /* l_uint */
22336b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->statxbuf; /* void * */
2234c0f17173SEdward Tomasz Napierala 		*n_args = 5;
2235c0f17173SEdward Tomasz Napierala 		break;
2236c0f17173SEdward Tomasz Napierala 	}
2237c0f17173SEdward Tomasz Napierala 	/* linux_io_pgetevents */
2238c0f17173SEdward Tomasz Napierala 	case 292: {
2239c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2240c0f17173SEdward Tomasz Napierala 		break;
2241c0f17173SEdward Tomasz Napierala 	}
2242c0f17173SEdward Tomasz Napierala 	/* linux_rseq */
2243c0f17173SEdward Tomasz Napierala 	case 293: {
224475e40949SDmitry Chagin 		struct linux_rseq_args *p = params;
224575e40949SDmitry Chagin 		uarg[a++] = (intptr_t)p->rseq; /* struct linux_rseq * */
224675e40949SDmitry Chagin 		uarg[a++] = p->rseq_len; /* uint32_t */
224775e40949SDmitry Chagin 		iarg[a++] = p->flags; /* l_int */
224875e40949SDmitry Chagin 		uarg[a++] = p->sig; /* uint32_t */
224975e40949SDmitry Chagin 		*n_args = 4;
2250c0f17173SEdward Tomasz Napierala 		break;
2251c0f17173SEdward Tomasz Napierala 	}
2252c0f17173SEdward Tomasz Napierala 	/* linux_kexec_file_load */
2253c0f17173SEdward Tomasz Napierala 	case 294: {
2254c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2255c0f17173SEdward Tomasz Napierala 		break;
2256c0f17173SEdward Tomasz Napierala 	}
2257c0f17173SEdward Tomasz Napierala 	/* linux_pidfd_send_signal */
2258c0f17173SEdward Tomasz Napierala 	case 424: {
2259c0f17173SEdward Tomasz Napierala 		struct linux_pidfd_send_signal_args *p = params;
22606b7c23a0SBrooks Davis 		iarg[a++] = p->pidfd; /* l_int */
22616b7c23a0SBrooks Davis 		iarg[a++] = p->sig; /* l_int */
22626b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->info; /* l_siginfo_t * */
22636b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_uint */
2264c0f17173SEdward Tomasz Napierala 		*n_args = 4;
2265c0f17173SEdward Tomasz Napierala 		break;
2266c0f17173SEdward Tomasz Napierala 	}
2267c0f17173SEdward Tomasz Napierala 	/* linux_io_uring_setup */
2268c0f17173SEdward Tomasz Napierala 	case 425: {
2269c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2270c0f17173SEdward Tomasz Napierala 		break;
2271c0f17173SEdward Tomasz Napierala 	}
2272c0f17173SEdward Tomasz Napierala 	/* linux_io_uring_enter */
2273c0f17173SEdward Tomasz Napierala 	case 426: {
2274c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2275c0f17173SEdward Tomasz Napierala 		break;
2276c0f17173SEdward Tomasz Napierala 	}
2277c0f17173SEdward Tomasz Napierala 	/* linux_io_uring_register */
2278c0f17173SEdward Tomasz Napierala 	case 427: {
2279c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2280c0f17173SEdward Tomasz Napierala 		break;
2281c0f17173SEdward Tomasz Napierala 	}
2282c0f17173SEdward Tomasz Napierala 	/* linux_open_tree */
2283c0f17173SEdward Tomasz Napierala 	case 428: {
2284c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2285c0f17173SEdward Tomasz Napierala 		break;
2286c0f17173SEdward Tomasz Napierala 	}
2287c0f17173SEdward Tomasz Napierala 	/* linux_move_mount */
2288c0f17173SEdward Tomasz Napierala 	case 429: {
2289c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2290c0f17173SEdward Tomasz Napierala 		break;
2291c0f17173SEdward Tomasz Napierala 	}
2292c0f17173SEdward Tomasz Napierala 	/* linux_fsopen */
2293c0f17173SEdward Tomasz Napierala 	case 430: {
2294c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2295c0f17173SEdward Tomasz Napierala 		break;
2296c0f17173SEdward Tomasz Napierala 	}
2297c0f17173SEdward Tomasz Napierala 	/* linux_fsconfig */
2298c0f17173SEdward Tomasz Napierala 	case 431: {
2299c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2300c0f17173SEdward Tomasz Napierala 		break;
2301c0f17173SEdward Tomasz Napierala 	}
2302c0f17173SEdward Tomasz Napierala 	/* linux_fsmount */
2303c0f17173SEdward Tomasz Napierala 	case 432: {
2304c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2305c0f17173SEdward Tomasz Napierala 		break;
2306c0f17173SEdward Tomasz Napierala 	}
2307c0f17173SEdward Tomasz Napierala 	/* linux_fspick */
2308c0f17173SEdward Tomasz Napierala 	case 433: {
2309c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2310c0f17173SEdward Tomasz Napierala 		break;
2311c0f17173SEdward Tomasz Napierala 	}
2312c0f17173SEdward Tomasz Napierala 	/* linux_pidfd_open */
2313c0f17173SEdward Tomasz Napierala 	case 434: {
2314c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2315c0f17173SEdward Tomasz Napierala 		break;
2316c0f17173SEdward Tomasz Napierala 	}
2317c0f17173SEdward Tomasz Napierala 	/* linux_clone3 */
2318c0f17173SEdward Tomasz Napierala 	case 435: {
2319b356030eSDmitry Chagin 		struct linux_clone3_args *p = params;
23206b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->uargs; /* struct l_user_clone_args * */
23216b7c23a0SBrooks Davis 		iarg[a++] = p->usize; /* l_size_t */
2322b356030eSDmitry Chagin 		*n_args = 2;
2323c0f17173SEdward Tomasz Napierala 		break;
2324c0f17173SEdward Tomasz Napierala 	}
2325c0f17173SEdward Tomasz Napierala 	/* linux_close_range */
2326c0f17173SEdward Tomasz Napierala 	case 436: {
232750111714SDmitry Chagin 		struct linux_close_range_args *p = params;
232850111714SDmitry Chagin 		iarg[a++] = p->first; /* l_uint */
232950111714SDmitry Chagin 		iarg[a++] = p->last; /* l_uint */
233050111714SDmitry Chagin 		iarg[a++] = p->flags; /* l_uint */
233150111714SDmitry Chagin 		*n_args = 3;
2332c0f17173SEdward Tomasz Napierala 		break;
2333c0f17173SEdward Tomasz Napierala 	}
2334c0f17173SEdward Tomasz Napierala 	/* linux_openat2 */
2335c0f17173SEdward Tomasz Napierala 	case 437: {
2336c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2337c0f17173SEdward Tomasz Napierala 		break;
2338c0f17173SEdward Tomasz Napierala 	}
2339c0f17173SEdward Tomasz Napierala 	/* linux_pidfd_getfd */
2340c0f17173SEdward Tomasz Napierala 	case 438: {
2341c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2342c0f17173SEdward Tomasz Napierala 		break;
2343c0f17173SEdward Tomasz Napierala 	}
2344c0f17173SEdward Tomasz Napierala 	/* linux_faccessat2 */
2345c0f17173SEdward Tomasz Napierala 	case 439: {
2346bee191e4SDmitry Chagin 		struct linux_faccessat2_args *p = params;
23476b7c23a0SBrooks Davis 		iarg[a++] = p->dfd; /* l_int */
23486b7c23a0SBrooks Davis 		uarg[a++] = (intptr_t)p->filename; /* const char * */
23496b7c23a0SBrooks Davis 		iarg[a++] = p->amode; /* l_int */
23506b7c23a0SBrooks Davis 		iarg[a++] = p->flags; /* l_int */
2351bee191e4SDmitry Chagin 		*n_args = 4;
2352c0f17173SEdward Tomasz Napierala 		break;
2353c0f17173SEdward Tomasz Napierala 	}
2354c0f17173SEdward Tomasz Napierala 	/* linux_process_madvise */
2355c0f17173SEdward Tomasz Napierala 	case 440: {
2356c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2357c0f17173SEdward Tomasz Napierala 		break;
2358c0f17173SEdward Tomasz Napierala 	}
2359c0f17173SEdward Tomasz Napierala 	/* linux_epoll_pwait2 */
2360c0f17173SEdward Tomasz Napierala 	case 441: {
2361df377f1fSDmitry Chagin 		struct linux_epoll_pwait2_args *p = params;
2362df377f1fSDmitry Chagin 		iarg[a++] = p->epfd; /* l_int */
2363df377f1fSDmitry Chagin 		uarg[a++] = (intptr_t)p->events; /* struct epoll_event * */
2364df377f1fSDmitry Chagin 		iarg[a++] = p->maxevents; /* l_int */
2365df377f1fSDmitry Chagin 		uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec * */
2366df377f1fSDmitry Chagin 		uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */
2367df377f1fSDmitry Chagin 		iarg[a++] = p->sigsetsize; /* l_size_t */
2368df377f1fSDmitry Chagin 		*n_args = 6;
2369c0f17173SEdward Tomasz Napierala 		break;
2370c0f17173SEdward Tomasz Napierala 	}
2371c0f17173SEdward Tomasz Napierala 	/* linux_mount_setattr */
2372c0f17173SEdward Tomasz Napierala 	case 442: {
2373c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2374c0f17173SEdward Tomasz Napierala 		break;
2375c0f17173SEdward Tomasz Napierala 	}
237628035f67SDmitry Chagin 	/* linux_quotactl_fd */
237728035f67SDmitry Chagin 	case 443: {
237828035f67SDmitry Chagin 		*n_args = 0;
237928035f67SDmitry Chagin 		break;
238028035f67SDmitry Chagin 	}
238128035f67SDmitry Chagin 	/* linux_landlock_create_ruleset */
238228035f67SDmitry Chagin 	case 444: {
238328035f67SDmitry Chagin 		*n_args = 0;
238428035f67SDmitry Chagin 		break;
238528035f67SDmitry Chagin 	}
238628035f67SDmitry Chagin 	/* linux_landlock_add_rule */
238728035f67SDmitry Chagin 	case 445: {
238828035f67SDmitry Chagin 		*n_args = 0;
238928035f67SDmitry Chagin 		break;
239028035f67SDmitry Chagin 	}
239128035f67SDmitry Chagin 	/* linux_landlock_restrict_self */
239228035f67SDmitry Chagin 	case 446: {
239328035f67SDmitry Chagin 		*n_args = 0;
239428035f67SDmitry Chagin 		break;
239528035f67SDmitry Chagin 	}
239628035f67SDmitry Chagin 	/* linux_memfd_secret */
239728035f67SDmitry Chagin 	case 447: {
239828035f67SDmitry Chagin 		*n_args = 0;
239928035f67SDmitry Chagin 		break;
240028035f67SDmitry Chagin 	}
240128035f67SDmitry Chagin 	/* linux_process_mrelease */
240228035f67SDmitry Chagin 	case 448: {
240328035f67SDmitry Chagin 		*n_args = 0;
240428035f67SDmitry Chagin 		break;
240528035f67SDmitry Chagin 	}
240628035f67SDmitry Chagin 	/* linux_futex_waitv */
240728035f67SDmitry Chagin 	case 449: {
240828035f67SDmitry Chagin 		*n_args = 0;
240928035f67SDmitry Chagin 		break;
241028035f67SDmitry Chagin 	}
241128035f67SDmitry Chagin 	/* linux_set_mempolicy_home_node */
241228035f67SDmitry Chagin 	case 450: {
241328035f67SDmitry Chagin 		*n_args = 0;
241428035f67SDmitry Chagin 		break;
241528035f67SDmitry Chagin 	}
241628035f67SDmitry Chagin 	/* linux_cachestat */
241728035f67SDmitry Chagin 	case 451: {
241828035f67SDmitry Chagin 		*n_args = 0;
241928035f67SDmitry Chagin 		break;
242028035f67SDmitry Chagin 	}
242128035f67SDmitry Chagin 	/* linux_fchmodat2 */
242228035f67SDmitry Chagin 	case 452: {
242328035f67SDmitry Chagin 		*n_args = 0;
242428035f67SDmitry Chagin 		break;
242528035f67SDmitry Chagin 	}
24265f2336efSEd Maste 	default:
24275f2336efSEd Maste 		*n_args = 0;
24285f2336efSEd Maste 		break;
24295f2336efSEd Maste 	};
24305f2336efSEd Maste }
24315f2336efSEd Maste static void
systrace_entry_setargdesc(int sysnum,int ndx,char * desc,size_t descsz)24325f2336efSEd Maste systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
24335f2336efSEd Maste {
24345f2336efSEd Maste 	const char *p = NULL;
24355f2336efSEd Maste 	switch (sysnum) {
24365f2336efSEd Maste 	/* linux_setxattr */
24375f2336efSEd Maste 	case 5:
2438a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
2439a39cdcd7SEdward Tomasz Napierala 		case 0:
2440a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2441a39cdcd7SEdward Tomasz Napierala 			break;
2442a39cdcd7SEdward Tomasz Napierala 		case 1:
2443a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2444a39cdcd7SEdward Tomasz Napierala 			break;
2445a39cdcd7SEdward Tomasz Napierala 		case 2:
2446d9c2dc6bSDmitry Chagin 			p = "userland void *";
2447a39cdcd7SEdward Tomasz Napierala 			break;
2448a39cdcd7SEdward Tomasz Napierala 		case 3:
2449a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
2450a39cdcd7SEdward Tomasz Napierala 			break;
2451a39cdcd7SEdward Tomasz Napierala 		case 4:
2452a39cdcd7SEdward Tomasz Napierala 			p = "l_int";
2453a39cdcd7SEdward Tomasz Napierala 			break;
2454a39cdcd7SEdward Tomasz Napierala 		default:
2455a39cdcd7SEdward Tomasz Napierala 			break;
2456a39cdcd7SEdward Tomasz Napierala 		};
24575f2336efSEd Maste 		break;
24585f2336efSEd Maste 	/* linux_lsetxattr */
24595f2336efSEd Maste 	case 6:
2460a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
2461a39cdcd7SEdward Tomasz Napierala 		case 0:
2462a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2463a39cdcd7SEdward Tomasz Napierala 			break;
2464a39cdcd7SEdward Tomasz Napierala 		case 1:
2465a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2466a39cdcd7SEdward Tomasz Napierala 			break;
2467a39cdcd7SEdward Tomasz Napierala 		case 2:
2468d9c2dc6bSDmitry Chagin 			p = "userland void *";
2469a39cdcd7SEdward Tomasz Napierala 			break;
2470a39cdcd7SEdward Tomasz Napierala 		case 3:
2471a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
2472a39cdcd7SEdward Tomasz Napierala 			break;
2473a39cdcd7SEdward Tomasz Napierala 		case 4:
2474a39cdcd7SEdward Tomasz Napierala 			p = "l_int";
2475a39cdcd7SEdward Tomasz Napierala 			break;
2476a39cdcd7SEdward Tomasz Napierala 		default:
2477a39cdcd7SEdward Tomasz Napierala 			break;
2478a39cdcd7SEdward Tomasz Napierala 		};
24795f2336efSEd Maste 		break;
24805f2336efSEd Maste 	/* linux_fsetxattr */
24815f2336efSEd Maste 	case 7:
2482a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
2483a39cdcd7SEdward Tomasz Napierala 		case 0:
2484a39cdcd7SEdward Tomasz Napierala 			p = "l_int";
2485a39cdcd7SEdward Tomasz Napierala 			break;
2486a39cdcd7SEdward Tomasz Napierala 		case 1:
2487a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2488a39cdcd7SEdward Tomasz Napierala 			break;
2489a39cdcd7SEdward Tomasz Napierala 		case 2:
2490d9c2dc6bSDmitry Chagin 			p = "userland void *";
2491a39cdcd7SEdward Tomasz Napierala 			break;
2492a39cdcd7SEdward Tomasz Napierala 		case 3:
2493a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
2494a39cdcd7SEdward Tomasz Napierala 			break;
2495a39cdcd7SEdward Tomasz Napierala 		case 4:
2496a39cdcd7SEdward Tomasz Napierala 			p = "l_int";
2497a39cdcd7SEdward Tomasz Napierala 			break;
2498a39cdcd7SEdward Tomasz Napierala 		default:
2499a39cdcd7SEdward Tomasz Napierala 			break;
2500a39cdcd7SEdward Tomasz Napierala 		};
25015f2336efSEd Maste 		break;
25025f2336efSEd Maste 	/* linux_getxattr */
25035f2336efSEd Maste 	case 8:
2504a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
2505a39cdcd7SEdward Tomasz Napierala 		case 0:
2506a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2507a39cdcd7SEdward Tomasz Napierala 			break;
2508a39cdcd7SEdward Tomasz Napierala 		case 1:
2509a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2510a39cdcd7SEdward Tomasz Napierala 			break;
2511a39cdcd7SEdward Tomasz Napierala 		case 2:
2512d9c2dc6bSDmitry Chagin 			p = "userland void *";
2513a39cdcd7SEdward Tomasz Napierala 			break;
2514a39cdcd7SEdward Tomasz Napierala 		case 3:
2515a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
2516a39cdcd7SEdward Tomasz Napierala 			break;
2517a39cdcd7SEdward Tomasz Napierala 		default:
2518a39cdcd7SEdward Tomasz Napierala 			break;
2519a39cdcd7SEdward Tomasz Napierala 		};
25205f2336efSEd Maste 		break;
25215f2336efSEd Maste 	/* linux_lgetxattr */
25225f2336efSEd Maste 	case 9:
2523a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
2524a39cdcd7SEdward Tomasz Napierala 		case 0:
2525a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2526a39cdcd7SEdward Tomasz Napierala 			break;
2527a39cdcd7SEdward Tomasz Napierala 		case 1:
2528a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2529a39cdcd7SEdward Tomasz Napierala 			break;
2530a39cdcd7SEdward Tomasz Napierala 		case 2:
2531d9c2dc6bSDmitry Chagin 			p = "userland void *";
2532a39cdcd7SEdward Tomasz Napierala 			break;
2533a39cdcd7SEdward Tomasz Napierala 		case 3:
2534a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
2535a39cdcd7SEdward Tomasz Napierala 			break;
2536a39cdcd7SEdward Tomasz Napierala 		default:
2537a39cdcd7SEdward Tomasz Napierala 			break;
2538a39cdcd7SEdward Tomasz Napierala 		};
25395f2336efSEd Maste 		break;
25405f2336efSEd Maste 	/* linux_fgetxattr */
25415f2336efSEd Maste 	case 10:
2542a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
2543a39cdcd7SEdward Tomasz Napierala 		case 0:
2544a39cdcd7SEdward Tomasz Napierala 			p = "l_int";
2545a39cdcd7SEdward Tomasz Napierala 			break;
2546a39cdcd7SEdward Tomasz Napierala 		case 1:
2547a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2548a39cdcd7SEdward Tomasz Napierala 			break;
2549a39cdcd7SEdward Tomasz Napierala 		case 2:
2550d9c2dc6bSDmitry Chagin 			p = "userland void *";
2551a39cdcd7SEdward Tomasz Napierala 			break;
2552a39cdcd7SEdward Tomasz Napierala 		case 3:
2553a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
2554a39cdcd7SEdward Tomasz Napierala 			break;
2555a39cdcd7SEdward Tomasz Napierala 		default:
2556a39cdcd7SEdward Tomasz Napierala 			break;
2557a39cdcd7SEdward Tomasz Napierala 		};
25585f2336efSEd Maste 		break;
25595f2336efSEd Maste 	/* linux_listxattr */
25605f2336efSEd Maste 	case 11:
2561a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
2562a39cdcd7SEdward Tomasz Napierala 		case 0:
2563a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2564a39cdcd7SEdward Tomasz Napierala 			break;
2565a39cdcd7SEdward Tomasz Napierala 		case 1:
2566d9c2dc6bSDmitry Chagin 			p = "userland char *";
2567a39cdcd7SEdward Tomasz Napierala 			break;
2568a39cdcd7SEdward Tomasz Napierala 		case 2:
2569a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
2570a39cdcd7SEdward Tomasz Napierala 			break;
2571a39cdcd7SEdward Tomasz Napierala 		default:
2572a39cdcd7SEdward Tomasz Napierala 			break;
2573a39cdcd7SEdward Tomasz Napierala 		};
25745f2336efSEd Maste 		break;
25755f2336efSEd Maste 	/* linux_llistxattr */
25765f2336efSEd Maste 	case 12:
2577a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
2578a39cdcd7SEdward Tomasz Napierala 		case 0:
2579a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2580a39cdcd7SEdward Tomasz Napierala 			break;
2581a39cdcd7SEdward Tomasz Napierala 		case 1:
2582d9c2dc6bSDmitry Chagin 			p = "userland char *";
2583a39cdcd7SEdward Tomasz Napierala 			break;
2584a39cdcd7SEdward Tomasz Napierala 		case 2:
2585a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
2586a39cdcd7SEdward Tomasz Napierala 			break;
2587a39cdcd7SEdward Tomasz Napierala 		default:
2588a39cdcd7SEdward Tomasz Napierala 			break;
2589a39cdcd7SEdward Tomasz Napierala 		};
25905f2336efSEd Maste 		break;
25915f2336efSEd Maste 	/* linux_flistxattr */
25925f2336efSEd Maste 	case 13:
2593a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
2594a39cdcd7SEdward Tomasz Napierala 		case 0:
2595a39cdcd7SEdward Tomasz Napierala 			p = "l_int";
2596a39cdcd7SEdward Tomasz Napierala 			break;
2597a39cdcd7SEdward Tomasz Napierala 		case 1:
2598d9c2dc6bSDmitry Chagin 			p = "userland char *";
2599a39cdcd7SEdward Tomasz Napierala 			break;
2600a39cdcd7SEdward Tomasz Napierala 		case 2:
2601a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
2602a39cdcd7SEdward Tomasz Napierala 			break;
2603a39cdcd7SEdward Tomasz Napierala 		default:
2604a39cdcd7SEdward Tomasz Napierala 			break;
2605a39cdcd7SEdward Tomasz Napierala 		};
26065f2336efSEd Maste 		break;
26075f2336efSEd Maste 	/* linux_removexattr */
26085f2336efSEd Maste 	case 14:
2609a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
2610a39cdcd7SEdward Tomasz Napierala 		case 0:
2611a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2612a39cdcd7SEdward Tomasz Napierala 			break;
2613a39cdcd7SEdward Tomasz Napierala 		case 1:
2614a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2615a39cdcd7SEdward Tomasz Napierala 			break;
2616a39cdcd7SEdward Tomasz Napierala 		default:
2617a39cdcd7SEdward Tomasz Napierala 			break;
2618a39cdcd7SEdward Tomasz Napierala 		};
26195f2336efSEd Maste 		break;
26205f2336efSEd Maste 	/* linux_lremovexattr */
26215f2336efSEd Maste 	case 15:
2622a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
2623a39cdcd7SEdward Tomasz Napierala 		case 0:
2624a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2625a39cdcd7SEdward Tomasz Napierala 			break;
2626a39cdcd7SEdward Tomasz Napierala 		case 1:
2627a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2628a39cdcd7SEdward Tomasz Napierala 			break;
2629a39cdcd7SEdward Tomasz Napierala 		default:
2630a39cdcd7SEdward Tomasz Napierala 			break;
2631a39cdcd7SEdward Tomasz Napierala 		};
26325f2336efSEd Maste 		break;
26335f2336efSEd Maste 	/* linux_fremovexattr */
26345f2336efSEd Maste 	case 16:
2635a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
2636a39cdcd7SEdward Tomasz Napierala 		case 0:
2637a39cdcd7SEdward Tomasz Napierala 			p = "l_int";
2638a39cdcd7SEdward Tomasz Napierala 			break;
2639a39cdcd7SEdward Tomasz Napierala 		case 1:
2640a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2641a39cdcd7SEdward Tomasz Napierala 			break;
2642a39cdcd7SEdward Tomasz Napierala 		default:
2643a39cdcd7SEdward Tomasz Napierala 			break;
2644a39cdcd7SEdward Tomasz Napierala 		};
26455f2336efSEd Maste 		break;
26465f2336efSEd Maste 	/* linux_getcwd */
26475f2336efSEd Maste 	case 17:
26485f2336efSEd Maste 		switch (ndx) {
26495f2336efSEd Maste 		case 0:
26505f2336efSEd Maste 			p = "userland char *";
26515f2336efSEd Maste 			break;
26525f2336efSEd Maste 		case 1:
26535f2336efSEd Maste 			p = "l_ulong";
26545f2336efSEd Maste 			break;
26555f2336efSEd Maste 		default:
26565f2336efSEd Maste 			break;
26575f2336efSEd Maste 		};
26585f2336efSEd Maste 		break;
26595f2336efSEd Maste 	/* linux_lookup_dcookie */
26605f2336efSEd Maste 	case 18:
26615f2336efSEd Maste 		break;
26625f2336efSEd Maste 	/* linux_eventfd2 */
26635f2336efSEd Maste 	case 19:
26645f2336efSEd Maste 		switch (ndx) {
26655f2336efSEd Maste 		case 0:
26665f2336efSEd Maste 			p = "l_uint";
26675f2336efSEd Maste 			break;
26685f2336efSEd Maste 		case 1:
26695f2336efSEd Maste 			p = "l_int";
26705f2336efSEd Maste 			break;
26715f2336efSEd Maste 		default:
26725f2336efSEd Maste 			break;
26735f2336efSEd Maste 		};
26745f2336efSEd Maste 		break;
26755f2336efSEd Maste 	/* linux_epoll_create1 */
26765f2336efSEd Maste 	case 20:
26775f2336efSEd Maste 		switch (ndx) {
26785f2336efSEd Maste 		case 0:
26795f2336efSEd Maste 			p = "l_int";
26805f2336efSEd Maste 			break;
26815f2336efSEd Maste 		default:
26825f2336efSEd Maste 			break;
26835f2336efSEd Maste 		};
26845f2336efSEd Maste 		break;
26855f2336efSEd Maste 	/* linux_epoll_ctl */
26865f2336efSEd Maste 	case 21:
26875f2336efSEd Maste 		switch (ndx) {
26885f2336efSEd Maste 		case 0:
26895f2336efSEd Maste 			p = "l_int";
26905f2336efSEd Maste 			break;
26915f2336efSEd Maste 		case 1:
26925f2336efSEd Maste 			p = "l_int";
26935f2336efSEd Maste 			break;
26945f2336efSEd Maste 		case 2:
26955f2336efSEd Maste 			p = "l_int";
26965f2336efSEd Maste 			break;
26975f2336efSEd Maste 		case 3:
26985f2336efSEd Maste 			p = "userland struct epoll_event *";
26995f2336efSEd Maste 			break;
27005f2336efSEd Maste 		default:
27015f2336efSEd Maste 			break;
27025f2336efSEd Maste 		};
27035f2336efSEd Maste 		break;
27045f2336efSEd Maste 	/* linux_epoll_pwait */
27055f2336efSEd Maste 	case 22:
27065f2336efSEd Maste 		switch (ndx) {
27075f2336efSEd Maste 		case 0:
27085f2336efSEd Maste 			p = "l_int";
27095f2336efSEd Maste 			break;
27105f2336efSEd Maste 		case 1:
27115f2336efSEd Maste 			p = "userland struct epoll_event *";
27125f2336efSEd Maste 			break;
27135f2336efSEd Maste 		case 2:
27145f2336efSEd Maste 			p = "l_int";
27155f2336efSEd Maste 			break;
27165f2336efSEd Maste 		case 3:
27175f2336efSEd Maste 			p = "l_int";
27185f2336efSEd Maste 			break;
27195f2336efSEd Maste 		case 4:
27205f2336efSEd Maste 			p = "userland l_sigset_t *";
27215f2336efSEd Maste 			break;
27225f2336efSEd Maste 		case 5:
27235f2336efSEd Maste 			p = "l_size_t";
27245f2336efSEd Maste 			break;
27255f2336efSEd Maste 		default:
27265f2336efSEd Maste 			break;
27275f2336efSEd Maste 		};
27285f2336efSEd Maste 		break;
2729c4db0baaSEd Maste 	/* dup */
2730c4db0baaSEd Maste 	case 23:
2731c4db0baaSEd Maste 		switch (ndx) {
2732c4db0baaSEd Maste 		case 0:
2733c4db0baaSEd Maste 			p = "u_int";
2734c4db0baaSEd Maste 			break;
2735c4db0baaSEd Maste 		default:
2736c4db0baaSEd Maste 			break;
2737c4db0baaSEd Maste 		};
2738c4db0baaSEd Maste 		break;
27395f2336efSEd Maste 	/* linux_dup3 */
27405f2336efSEd Maste 	case 24:
27415f2336efSEd Maste 		switch (ndx) {
27425f2336efSEd Maste 		case 0:
27435f2336efSEd Maste 			p = "l_int";
27445f2336efSEd Maste 			break;
27455f2336efSEd Maste 		case 1:
27465f2336efSEd Maste 			p = "l_int";
27475f2336efSEd Maste 			break;
27485f2336efSEd Maste 		case 2:
27495f2336efSEd Maste 			p = "l_int";
27505f2336efSEd Maste 			break;
27515f2336efSEd Maste 		default:
27525f2336efSEd Maste 			break;
27535f2336efSEd Maste 		};
27545f2336efSEd Maste 		break;
27555f2336efSEd Maste 	/* linux_fcntl */
27565f2336efSEd Maste 	case 25:
27575f2336efSEd Maste 		switch (ndx) {
27585f2336efSEd Maste 		case 0:
27595f2336efSEd Maste 			p = "l_uint";
27605f2336efSEd Maste 			break;
27615f2336efSEd Maste 		case 1:
27625f2336efSEd Maste 			p = "l_uint";
27635f2336efSEd Maste 			break;
27645f2336efSEd Maste 		case 2:
27655f2336efSEd Maste 			p = "l_ulong";
27665f2336efSEd Maste 			break;
27675f2336efSEd Maste 		default:
27685f2336efSEd Maste 			break;
27695f2336efSEd Maste 		};
27705f2336efSEd Maste 		break;
27715f2336efSEd Maste 	/* linux_inotify_init1 */
27725f2336efSEd Maste 	case 26:
27735f2336efSEd Maste 		switch (ndx) {
27745f2336efSEd Maste 		case 0:
27755f2336efSEd Maste 			p = "l_int";
27765f2336efSEd Maste 			break;
27775f2336efSEd Maste 		default:
27785f2336efSEd Maste 			break;
27795f2336efSEd Maste 		};
27805f2336efSEd Maste 		break;
27815f2336efSEd Maste 	/* linux_inotify_add_watch */
27825f2336efSEd Maste 	case 27:
27835f2336efSEd Maste 		break;
27845f2336efSEd Maste 	/* linux_inotify_rm_watch */
27855f2336efSEd Maste 	case 28:
27865f2336efSEd Maste 		break;
27875f2336efSEd Maste 	/* linux_ioctl */
27885f2336efSEd Maste 	case 29:
27895f2336efSEd Maste 		switch (ndx) {
27905f2336efSEd Maste 		case 0:
27915f2336efSEd Maste 			p = "l_uint";
27925f2336efSEd Maste 			break;
27935f2336efSEd Maste 		case 1:
27945f2336efSEd Maste 			p = "l_uint";
27955f2336efSEd Maste 			break;
27965f2336efSEd Maste 		case 2:
2797a39cdcd7SEdward Tomasz Napierala 			p = "l_ulong";
27985f2336efSEd Maste 			break;
27995f2336efSEd Maste 		default:
28005f2336efSEd Maste 			break;
28015f2336efSEd Maste 		};
28025f2336efSEd Maste 		break;
28035f2336efSEd Maste 	/* linux_ioprio_set */
28045f2336efSEd Maste 	case 30:
2805b5c0b955SDmitry Chagin 		switch (ndx) {
2806b5c0b955SDmitry Chagin 		case 0:
2807b5c0b955SDmitry Chagin 			p = "l_int";
2808b5c0b955SDmitry Chagin 			break;
2809b5c0b955SDmitry Chagin 		case 1:
2810b5c0b955SDmitry Chagin 			p = "l_int";
2811b5c0b955SDmitry Chagin 			break;
2812b5c0b955SDmitry Chagin 		case 2:
2813b5c0b955SDmitry Chagin 			p = "l_int";
2814b5c0b955SDmitry Chagin 			break;
2815b5c0b955SDmitry Chagin 		default:
2816b5c0b955SDmitry Chagin 			break;
2817b5c0b955SDmitry Chagin 		};
28185f2336efSEd Maste 		break;
28195f2336efSEd Maste 	/* linux_ioprio_get */
28205f2336efSEd Maste 	case 31:
2821b5c0b955SDmitry Chagin 		switch (ndx) {
2822b5c0b955SDmitry Chagin 		case 0:
2823b5c0b955SDmitry Chagin 			p = "l_int";
2824b5c0b955SDmitry Chagin 			break;
2825b5c0b955SDmitry Chagin 		case 1:
2826b5c0b955SDmitry Chagin 			p = "l_int";
2827b5c0b955SDmitry Chagin 			break;
2828b5c0b955SDmitry Chagin 		default:
2829b5c0b955SDmitry Chagin 			break;
2830b5c0b955SDmitry Chagin 		};
28315f2336efSEd Maste 		break;
28325f2336efSEd Maste 	/* flock */
28335f2336efSEd Maste 	case 32:
28345f2336efSEd Maste 		switch (ndx) {
28355f2336efSEd Maste 		case 0:
28365f2336efSEd Maste 			p = "int";
28375f2336efSEd Maste 			break;
28385f2336efSEd Maste 		case 1:
28395f2336efSEd Maste 			p = "int";
28405f2336efSEd Maste 			break;
28415f2336efSEd Maste 		default:
28425f2336efSEd Maste 			break;
28435f2336efSEd Maste 		};
28445f2336efSEd Maste 		break;
28455f2336efSEd Maste 	/* linux_mknodat */
28465f2336efSEd Maste 	case 33:
28475f2336efSEd Maste 		switch (ndx) {
28485f2336efSEd Maste 		case 0:
28495f2336efSEd Maste 			p = "l_int";
28505f2336efSEd Maste 			break;
28515f2336efSEd Maste 		case 1:
28525f2336efSEd Maste 			p = "userland const char *";
28535f2336efSEd Maste 			break;
28545f2336efSEd Maste 		case 2:
28555f2336efSEd Maste 			p = "l_int";
28565f2336efSEd Maste 			break;
28575f2336efSEd Maste 		case 3:
2858cd0fca82SDmitry Chagin 			p = "l_dev_t";
28595f2336efSEd Maste 			break;
28605f2336efSEd Maste 		default:
28615f2336efSEd Maste 			break;
28625f2336efSEd Maste 		};
28635f2336efSEd Maste 		break;
28645f2336efSEd Maste 	/* linux_mkdirat */
28655f2336efSEd Maste 	case 34:
28665f2336efSEd Maste 		switch (ndx) {
28675f2336efSEd Maste 		case 0:
28685f2336efSEd Maste 			p = "l_int";
28695f2336efSEd Maste 			break;
28705f2336efSEd Maste 		case 1:
28715f2336efSEd Maste 			p = "userland const char *";
28725f2336efSEd Maste 			break;
28735f2336efSEd Maste 		case 2:
2874a39cdcd7SEdward Tomasz Napierala 			p = "l_mode_t";
28755f2336efSEd Maste 			break;
28765f2336efSEd Maste 		default:
28775f2336efSEd Maste 			break;
28785f2336efSEd Maste 		};
28795f2336efSEd Maste 		break;
28805f2336efSEd Maste 	/* linux_unlinkat */
28815f2336efSEd Maste 	case 35:
28825f2336efSEd Maste 		switch (ndx) {
28835f2336efSEd Maste 		case 0:
28845f2336efSEd Maste 			p = "l_int";
28855f2336efSEd Maste 			break;
28865f2336efSEd Maste 		case 1:
28875f2336efSEd Maste 			p = "userland const char *";
28885f2336efSEd Maste 			break;
28895f2336efSEd Maste 		case 2:
28905f2336efSEd Maste 			p = "l_int";
28915f2336efSEd Maste 			break;
28925f2336efSEd Maste 		default:
28935f2336efSEd Maste 			break;
28945f2336efSEd Maste 		};
28955f2336efSEd Maste 		break;
28965f2336efSEd Maste 	/* linux_symlinkat */
28975f2336efSEd Maste 	case 36:
28985f2336efSEd Maste 		switch (ndx) {
28995f2336efSEd Maste 		case 0:
29005f2336efSEd Maste 			p = "userland const char *";
29015f2336efSEd Maste 			break;
29025f2336efSEd Maste 		case 1:
29035f2336efSEd Maste 			p = "l_int";
29045f2336efSEd Maste 			break;
29055f2336efSEd Maste 		case 2:
29065f2336efSEd Maste 			p = "userland const char *";
29075f2336efSEd Maste 			break;
29085f2336efSEd Maste 		default:
29095f2336efSEd Maste 			break;
29105f2336efSEd Maste 		};
29115f2336efSEd Maste 		break;
29125f2336efSEd Maste 	/* linux_linkat */
29135f2336efSEd Maste 	case 37:
29145f2336efSEd Maste 		switch (ndx) {
29155f2336efSEd Maste 		case 0:
29165f2336efSEd Maste 			p = "l_int";
29175f2336efSEd Maste 			break;
29185f2336efSEd Maste 		case 1:
29195f2336efSEd Maste 			p = "userland const char *";
29205f2336efSEd Maste 			break;
29215f2336efSEd Maste 		case 2:
29225f2336efSEd Maste 			p = "l_int";
29235f2336efSEd Maste 			break;
29245f2336efSEd Maste 		case 3:
29255f2336efSEd Maste 			p = "userland const char *";
29265f2336efSEd Maste 			break;
29275f2336efSEd Maste 		case 4:
29285f2336efSEd Maste 			p = "l_int";
29295f2336efSEd Maste 			break;
29305f2336efSEd Maste 		default:
29315f2336efSEd Maste 			break;
29325f2336efSEd Maste 		};
29335f2336efSEd Maste 		break;
29345f2336efSEd Maste 	/* linux_renameat */
29355f2336efSEd Maste 	case 38:
29365f2336efSEd Maste 		switch (ndx) {
29375f2336efSEd Maste 		case 0:
29385f2336efSEd Maste 			p = "l_int";
29395f2336efSEd Maste 			break;
29405f2336efSEd Maste 		case 1:
29415f2336efSEd Maste 			p = "userland const char *";
29425f2336efSEd Maste 			break;
29435f2336efSEd Maste 		case 2:
29445f2336efSEd Maste 			p = "l_int";
29455f2336efSEd Maste 			break;
29465f2336efSEd Maste 		case 3:
29475f2336efSEd Maste 			p = "userland const char *";
29485f2336efSEd Maste 			break;
29495f2336efSEd Maste 		default:
29505f2336efSEd Maste 			break;
29515f2336efSEd Maste 		};
29525f2336efSEd Maste 		break;
29535f2336efSEd Maste 	/* linux_mount */
29545f2336efSEd Maste 	case 40:
29555f2336efSEd Maste 		switch (ndx) {
29565f2336efSEd Maste 		case 0:
29575f2336efSEd Maste 			p = "userland char *";
29585f2336efSEd Maste 			break;
29595f2336efSEd Maste 		case 1:
29605f2336efSEd Maste 			p = "userland char *";
29615f2336efSEd Maste 			break;
29625f2336efSEd Maste 		case 2:
29635f2336efSEd Maste 			p = "userland char *";
29645f2336efSEd Maste 			break;
29655f2336efSEd Maste 		case 3:
29665f2336efSEd Maste 			p = "l_ulong";
29675f2336efSEd Maste 			break;
29685f2336efSEd Maste 		case 4:
29695f2336efSEd Maste 			p = "userland void *";
29705f2336efSEd Maste 			break;
29715f2336efSEd Maste 		default:
29725f2336efSEd Maste 			break;
29735f2336efSEd Maste 		};
29745f2336efSEd Maste 		break;
29755f2336efSEd Maste 	/* linux_pivot_root */
29765f2336efSEd Maste 	case 41:
29775f2336efSEd Maste 		break;
29785f2336efSEd Maste 	/* linux_statfs */
29795f2336efSEd Maste 	case 43:
29805f2336efSEd Maste 		switch (ndx) {
29815f2336efSEd Maste 		case 0:
29825f2336efSEd Maste 			p = "userland char *";
29835f2336efSEd Maste 			break;
29845f2336efSEd Maste 		case 1:
29855f2336efSEd Maste 			p = "userland struct l_statfs_buf *";
29865f2336efSEd Maste 			break;
29875f2336efSEd Maste 		default:
29885f2336efSEd Maste 			break;
29895f2336efSEd Maste 		};
29905f2336efSEd Maste 		break;
29915f2336efSEd Maste 	/* linux_fstatfs */
29925f2336efSEd Maste 	case 44:
29935f2336efSEd Maste 		switch (ndx) {
29945f2336efSEd Maste 		case 0:
29955f2336efSEd Maste 			p = "l_uint";
29965f2336efSEd Maste 			break;
29975f2336efSEd Maste 		case 1:
29985f2336efSEd Maste 			p = "userland struct l_statfs_buf *";
29995f2336efSEd Maste 			break;
30005f2336efSEd Maste 		default:
30015f2336efSEd Maste 			break;
30025f2336efSEd Maste 		};
30035f2336efSEd Maste 		break;
30045f2336efSEd Maste 	/* linux_truncate */
30055f2336efSEd Maste 	case 45:
30065f2336efSEd Maste 		switch (ndx) {
30075f2336efSEd Maste 		case 0:
30085f2336efSEd Maste 			p = "userland char *";
30095f2336efSEd Maste 			break;
30105f2336efSEd Maste 		case 1:
30115f2336efSEd Maste 			p = "l_ulong";
30125f2336efSEd Maste 			break;
30135f2336efSEd Maste 		default:
30145f2336efSEd Maste 			break;
30155f2336efSEd Maste 		};
30165f2336efSEd Maste 		break;
30175f2336efSEd Maste 	/* linux_ftruncate */
30185f2336efSEd Maste 	case 46:
30195f2336efSEd Maste 		switch (ndx) {
30205f2336efSEd Maste 		case 0:
30215f2336efSEd Maste 			p = "l_int";
30225f2336efSEd Maste 			break;
30235f2336efSEd Maste 		case 1:
30245f2336efSEd Maste 			p = "l_long";
30255f2336efSEd Maste 			break;
30265f2336efSEd Maste 		default:
30275f2336efSEd Maste 			break;
30285f2336efSEd Maste 		};
30295f2336efSEd Maste 		break;
30305f2336efSEd Maste 	/* linux_fallocate */
30315f2336efSEd Maste 	case 47:
30325f2336efSEd Maste 		switch (ndx) {
30335f2336efSEd Maste 		case 0:
30345f2336efSEd Maste 			p = "l_int";
30355f2336efSEd Maste 			break;
30365f2336efSEd Maste 		case 1:
30375f2336efSEd Maste 			p = "l_int";
30385f2336efSEd Maste 			break;
30395f2336efSEd Maste 		case 2:
30405f2336efSEd Maste 			p = "l_loff_t";
30415f2336efSEd Maste 			break;
30425f2336efSEd Maste 		case 3:
30435f2336efSEd Maste 			p = "l_loff_t";
30445f2336efSEd Maste 			break;
30455f2336efSEd Maste 		default:
30465f2336efSEd Maste 			break;
30475f2336efSEd Maste 		};
30485f2336efSEd Maste 		break;
30495f2336efSEd Maste 	/* linux_faccessat */
30505f2336efSEd Maste 	case 48:
30515f2336efSEd Maste 		switch (ndx) {
30525f2336efSEd Maste 		case 0:
30535f2336efSEd Maste 			p = "l_int";
30545f2336efSEd Maste 			break;
30555f2336efSEd Maste 		case 1:
30565f2336efSEd Maste 			p = "userland const char *";
30575f2336efSEd Maste 			break;
30585f2336efSEd Maste 		case 2:
30595f2336efSEd Maste 			p = "l_int";
30605f2336efSEd Maste 			break;
30615f2336efSEd Maste 		default:
30625f2336efSEd Maste 			break;
30635f2336efSEd Maste 		};
30645f2336efSEd Maste 		break;
30655f2336efSEd Maste 	/* linux_chdir */
30665f2336efSEd Maste 	case 49:
30675f2336efSEd Maste 		switch (ndx) {
30685f2336efSEd Maste 		case 0:
30695f2336efSEd Maste 			p = "userland char *";
30705f2336efSEd Maste 			break;
30715f2336efSEd Maste 		default:
30725f2336efSEd Maste 			break;
30735f2336efSEd Maste 		};
30745f2336efSEd Maste 		break;
30755f2336efSEd Maste 	/* fchdir */
30765f2336efSEd Maste 	case 50:
30775f2336efSEd Maste 		switch (ndx) {
30785f2336efSEd Maste 		case 0:
30795f2336efSEd Maste 			p = "int";
30805f2336efSEd Maste 			break;
30815f2336efSEd Maste 		default:
30825f2336efSEd Maste 			break;
30835f2336efSEd Maste 		};
30845f2336efSEd Maste 		break;
30855f2336efSEd Maste 	/* chroot */
30865f2336efSEd Maste 	case 51:
30875f2336efSEd Maste 		switch (ndx) {
30885f2336efSEd Maste 		case 0:
30895f2336efSEd Maste 			p = "userland char *";
30905f2336efSEd Maste 			break;
30915f2336efSEd Maste 		default:
30925f2336efSEd Maste 			break;
30935f2336efSEd Maste 		};
30945f2336efSEd Maste 		break;
30955f2336efSEd Maste 	/* fchmod */
30965f2336efSEd Maste 	case 52:
30975f2336efSEd Maste 		switch (ndx) {
30985f2336efSEd Maste 		case 0:
30995f2336efSEd Maste 			p = "int";
31005f2336efSEd Maste 			break;
31015f2336efSEd Maste 		case 1:
31025f2336efSEd Maste 			p = "int";
31035f2336efSEd Maste 			break;
31045f2336efSEd Maste 		default:
31055f2336efSEd Maste 			break;
31065f2336efSEd Maste 		};
31075f2336efSEd Maste 		break;
31085f2336efSEd Maste 	/* linux_fchmodat */
31095f2336efSEd Maste 	case 53:
31105f2336efSEd Maste 		switch (ndx) {
31115f2336efSEd Maste 		case 0:
31125f2336efSEd Maste 			p = "l_int";
31135f2336efSEd Maste 			break;
31145f2336efSEd Maste 		case 1:
31155f2336efSEd Maste 			p = "userland const char *";
31165f2336efSEd Maste 			break;
31175f2336efSEd Maste 		case 2:
31185f2336efSEd Maste 			p = "l_mode_t";
31195f2336efSEd Maste 			break;
31205f2336efSEd Maste 		default:
31215f2336efSEd Maste 			break;
31225f2336efSEd Maste 		};
31235f2336efSEd Maste 		break;
31245f2336efSEd Maste 	/* linux_fchownat */
31255f2336efSEd Maste 	case 54:
31265f2336efSEd Maste 		switch (ndx) {
31275f2336efSEd Maste 		case 0:
31285f2336efSEd Maste 			p = "l_int";
31295f2336efSEd Maste 			break;
31305f2336efSEd Maste 		case 1:
31315f2336efSEd Maste 			p = "userland const char *";
31325f2336efSEd Maste 			break;
31335f2336efSEd Maste 		case 2:
31345f2336efSEd Maste 			p = "l_uid_t";
31355f2336efSEd Maste 			break;
31365f2336efSEd Maste 		case 3:
31375f2336efSEd Maste 			p = "l_gid_t";
31385f2336efSEd Maste 			break;
31395f2336efSEd Maste 		case 4:
31405f2336efSEd Maste 			p = "l_int";
31415f2336efSEd Maste 			break;
31425f2336efSEd Maste 		default:
31435f2336efSEd Maste 			break;
31445f2336efSEd Maste 		};
31455f2336efSEd Maste 		break;
31465f2336efSEd Maste 	/* fchown */
31475f2336efSEd Maste 	case 55:
31485f2336efSEd Maste 		switch (ndx) {
31495f2336efSEd Maste 		case 0:
31505f2336efSEd Maste 			p = "int";
31515f2336efSEd Maste 			break;
31525f2336efSEd Maste 		case 1:
31535f2336efSEd Maste 			p = "int";
31545f2336efSEd Maste 			break;
31555f2336efSEd Maste 		case 2:
31565f2336efSEd Maste 			p = "int";
31575f2336efSEd Maste 			break;
31585f2336efSEd Maste 		default:
31595f2336efSEd Maste 			break;
31605f2336efSEd Maste 		};
31615f2336efSEd Maste 		break;
31625f2336efSEd Maste 	/* linux_openat */
31635f2336efSEd Maste 	case 56:
31645f2336efSEd Maste 		switch (ndx) {
31655f2336efSEd Maste 		case 0:
31665f2336efSEd Maste 			p = "l_int";
31675f2336efSEd Maste 			break;
31685f2336efSEd Maste 		case 1:
31695f2336efSEd Maste 			p = "userland const char *";
31705f2336efSEd Maste 			break;
31715f2336efSEd Maste 		case 2:
31725f2336efSEd Maste 			p = "l_int";
31735f2336efSEd Maste 			break;
31745f2336efSEd Maste 		case 3:
3175a39cdcd7SEdward Tomasz Napierala 			p = "l_mode_t";
31765f2336efSEd Maste 			break;
31775f2336efSEd Maste 		default:
31785f2336efSEd Maste 			break;
31795f2336efSEd Maste 		};
31805f2336efSEd Maste 		break;
31815f2336efSEd Maste 	/* close */
31825f2336efSEd Maste 	case 57:
31835f2336efSEd Maste 		switch (ndx) {
31845f2336efSEd Maste 		case 0:
31855f2336efSEd Maste 			p = "int";
31865f2336efSEd Maste 			break;
31875f2336efSEd Maste 		default:
31885f2336efSEd Maste 			break;
31895f2336efSEd Maste 		};
31905f2336efSEd Maste 		break;
31915f2336efSEd Maste 	/* linux_vhangup */
31925f2336efSEd Maste 	case 58:
31935f2336efSEd Maste 		break;
31945f2336efSEd Maste 	/* linux_pipe2 */
31955f2336efSEd Maste 	case 59:
31965f2336efSEd Maste 		switch (ndx) {
31975f2336efSEd Maste 		case 0:
31985f2336efSEd Maste 			p = "userland l_int *";
31995f2336efSEd Maste 			break;
32005f2336efSEd Maste 		case 1:
32015f2336efSEd Maste 			p = "l_int";
32025f2336efSEd Maste 			break;
32035f2336efSEd Maste 		default:
32045f2336efSEd Maste 			break;
32055f2336efSEd Maste 		};
32065f2336efSEd Maste 		break;
32075f2336efSEd Maste 	/* linux_getdents64 */
32085f2336efSEd Maste 	case 61:
32095f2336efSEd Maste 		switch (ndx) {
32105f2336efSEd Maste 		case 0:
32115f2336efSEd Maste 			p = "l_uint";
32125f2336efSEd Maste 			break;
32135f2336efSEd Maste 		case 1:
32145f2336efSEd Maste 			p = "userland void *";
32155f2336efSEd Maste 			break;
32165f2336efSEd Maste 		case 2:
32175f2336efSEd Maste 			p = "l_uint";
32185f2336efSEd Maste 			break;
32195f2336efSEd Maste 		default:
32205f2336efSEd Maste 			break;
32215f2336efSEd Maste 		};
32225f2336efSEd Maste 		break;
32235f2336efSEd Maste 	/* linux_lseek */
32245f2336efSEd Maste 	case 62:
32255f2336efSEd Maste 		switch (ndx) {
32265f2336efSEd Maste 		case 0:
32275f2336efSEd Maste 			p = "l_uint";
32285f2336efSEd Maste 			break;
32295f2336efSEd Maste 		case 1:
32305f2336efSEd Maste 			p = "l_off_t";
32315f2336efSEd Maste 			break;
32325f2336efSEd Maste 		case 2:
32335f2336efSEd Maste 			p = "l_int";
32345f2336efSEd Maste 			break;
32355f2336efSEd Maste 		default:
32365f2336efSEd Maste 			break;
32375f2336efSEd Maste 		};
32385f2336efSEd Maste 		break;
32395f2336efSEd Maste 	/* read */
32405f2336efSEd Maste 	case 63:
32415f2336efSEd Maste 		switch (ndx) {
32425f2336efSEd Maste 		case 0:
32435f2336efSEd Maste 			p = "int";
32445f2336efSEd Maste 			break;
32455f2336efSEd Maste 		case 1:
32465f2336efSEd Maste 			p = "userland char *";
32475f2336efSEd Maste 			break;
32485f2336efSEd Maste 		case 2:
3249a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
32505f2336efSEd Maste 			break;
32515f2336efSEd Maste 		default:
32525f2336efSEd Maste 			break;
32535f2336efSEd Maste 		};
32545f2336efSEd Maste 		break;
325589d270b2SDmitry Chagin 	/* linux_write */
32565f2336efSEd Maste 	case 64:
32575f2336efSEd Maste 		switch (ndx) {
32585f2336efSEd Maste 		case 0:
32595f2336efSEd Maste 			p = "int";
32605f2336efSEd Maste 			break;
32615f2336efSEd Maste 		case 1:
32625f2336efSEd Maste 			p = "userland char *";
32635f2336efSEd Maste 			break;
32645f2336efSEd Maste 		case 2:
3265a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
32665f2336efSEd Maste 			break;
32675f2336efSEd Maste 		default:
32685f2336efSEd Maste 			break;
32695f2336efSEd Maste 		};
32705f2336efSEd Maste 		break;
32715f2336efSEd Maste 	/* readv */
32725f2336efSEd Maste 	case 65:
32735f2336efSEd Maste 		switch (ndx) {
32745f2336efSEd Maste 		case 0:
32755f2336efSEd Maste 			p = "int";
32765f2336efSEd Maste 			break;
32775f2336efSEd Maste 		case 1:
32785f2336efSEd Maste 			p = "userland struct iovec *";
32795f2336efSEd Maste 			break;
32805f2336efSEd Maste 		case 2:
32815f2336efSEd Maste 			p = "u_int";
32825f2336efSEd Maste 			break;
32835f2336efSEd Maste 		default:
32845f2336efSEd Maste 			break;
32855f2336efSEd Maste 		};
32865f2336efSEd Maste 		break;
32871f9d71eeSDmitry Chagin 	/* linux_writev */
32885f2336efSEd Maste 	case 66:
32895f2336efSEd Maste 		switch (ndx) {
32905f2336efSEd Maste 		case 0:
32915f2336efSEd Maste 			p = "int";
32925f2336efSEd Maste 			break;
32935f2336efSEd Maste 		case 1:
32945f2336efSEd Maste 			p = "userland struct iovec *";
32955f2336efSEd Maste 			break;
32965f2336efSEd Maste 		case 2:
32975f2336efSEd Maste 			p = "u_int";
32985f2336efSEd Maste 			break;
32995f2336efSEd Maste 		default:
33005f2336efSEd Maste 			break;
33015f2336efSEd Maste 		};
33025f2336efSEd Maste 		break;
33035f2336efSEd Maste 	/* linux_pread */
33045f2336efSEd Maste 	case 67:
33055f2336efSEd Maste 		switch (ndx) {
33065f2336efSEd Maste 		case 0:
33075f2336efSEd Maste 			p = "l_uint";
33085f2336efSEd Maste 			break;
33095f2336efSEd Maste 		case 1:
33105f2336efSEd Maste 			p = "userland char *";
33115f2336efSEd Maste 			break;
33125f2336efSEd Maste 		case 2:
33135f2336efSEd Maste 			p = "l_size_t";
33145f2336efSEd Maste 			break;
33155f2336efSEd Maste 		case 3:
33165f2336efSEd Maste 			p = "l_loff_t";
33175f2336efSEd Maste 			break;
33185f2336efSEd Maste 		default:
33195f2336efSEd Maste 			break;
33205f2336efSEd Maste 		};
33215f2336efSEd Maste 		break;
33225f2336efSEd Maste 	/* linux_pwrite */
33235f2336efSEd Maste 	case 68:
33245f2336efSEd Maste 		switch (ndx) {
33255f2336efSEd Maste 		case 0:
33265f2336efSEd Maste 			p = "l_uint";
33275f2336efSEd Maste 			break;
33285f2336efSEd Maste 		case 1:
33295f2336efSEd Maste 			p = "userland char *";
33305f2336efSEd Maste 			break;
33315f2336efSEd Maste 		case 2:
33325f2336efSEd Maste 			p = "l_size_t";
33335f2336efSEd Maste 			break;
33345f2336efSEd Maste 		case 3:
33355f2336efSEd Maste 			p = "l_loff_t";
33365f2336efSEd Maste 			break;
33375f2336efSEd Maste 		default:
33385f2336efSEd Maste 			break;
33395f2336efSEd Maste 		};
33405f2336efSEd Maste 		break;
33415f2336efSEd Maste 	/* linux_preadv */
33425f2336efSEd Maste 	case 69:
33435f2336efSEd Maste 		switch (ndx) {
33445f2336efSEd Maste 		case 0:
33455f2336efSEd Maste 			p = "l_ulong";
33465f2336efSEd Maste 			break;
33475f2336efSEd Maste 		case 1:
33485f2336efSEd Maste 			p = "userland struct iovec *";
33495f2336efSEd Maste 			break;
33505f2336efSEd Maste 		case 2:
33515f2336efSEd Maste 			p = "l_ulong";
33525f2336efSEd Maste 			break;
33535f2336efSEd Maste 		case 3:
33545f2336efSEd Maste 			p = "l_ulong";
33555f2336efSEd Maste 			break;
33565f2336efSEd Maste 		case 4:
33575f2336efSEd Maste 			p = "l_ulong";
33585f2336efSEd Maste 			break;
33595f2336efSEd Maste 		default:
33605f2336efSEd Maste 			break;
33615f2336efSEd Maste 		};
33625f2336efSEd Maste 		break;
33635f2336efSEd Maste 	/* linux_pwritev */
33645f2336efSEd Maste 	case 70:
33655f2336efSEd Maste 		switch (ndx) {
33665f2336efSEd Maste 		case 0:
33675f2336efSEd Maste 			p = "l_ulong";
33685f2336efSEd Maste 			break;
33695f2336efSEd Maste 		case 1:
33705f2336efSEd Maste 			p = "userland struct iovec *";
33715f2336efSEd Maste 			break;
33725f2336efSEd Maste 		case 2:
33735f2336efSEd Maste 			p = "l_ulong";
33745f2336efSEd Maste 			break;
33755f2336efSEd Maste 		case 3:
33765f2336efSEd Maste 			p = "l_ulong";
33775f2336efSEd Maste 			break;
33785f2336efSEd Maste 		case 4:
33795f2336efSEd Maste 			p = "l_ulong";
33805f2336efSEd Maste 			break;
33815f2336efSEd Maste 		default:
33825f2336efSEd Maste 			break;
33835f2336efSEd Maste 		};
33845f2336efSEd Maste 		break;
33855f2336efSEd Maste 	/* linux_sendfile */
33865f2336efSEd Maste 	case 71:
33875f2336efSEd Maste 		switch (ndx) {
33885f2336efSEd Maste 		case 0:
33895f2336efSEd Maste 			p = "l_int";
33905f2336efSEd Maste 			break;
33915f2336efSEd Maste 		case 1:
33925f2336efSEd Maste 			p = "l_int";
33935f2336efSEd Maste 			break;
33945f2336efSEd Maste 		case 2:
3395a39cdcd7SEdward Tomasz Napierala 			p = "userland l_off_t *";
33965f2336efSEd Maste 			break;
33975f2336efSEd Maste 		case 3:
33985f2336efSEd Maste 			p = "l_size_t";
33995f2336efSEd Maste 			break;
34005f2336efSEd Maste 		default:
34015f2336efSEd Maste 			break;
34025f2336efSEd Maste 		};
34035f2336efSEd Maste 		break;
34045f2336efSEd Maste 	/* linux_pselect6 */
34055f2336efSEd Maste 	case 72:
34065f2336efSEd Maste 		switch (ndx) {
34075f2336efSEd Maste 		case 0:
34085f2336efSEd Maste 			p = "l_int";
34095f2336efSEd Maste 			break;
34105f2336efSEd Maste 		case 1:
34115f2336efSEd Maste 			p = "userland l_fd_set *";
34125f2336efSEd Maste 			break;
34135f2336efSEd Maste 		case 2:
34145f2336efSEd Maste 			p = "userland l_fd_set *";
34155f2336efSEd Maste 			break;
34165f2336efSEd Maste 		case 3:
34175f2336efSEd Maste 			p = "userland l_fd_set *";
34185f2336efSEd Maste 			break;
34195f2336efSEd Maste 		case 4:
34205f2336efSEd Maste 			p = "userland struct l_timespec *";
34215f2336efSEd Maste 			break;
34225f2336efSEd Maste 		case 5:
34235f2336efSEd Maste 			p = "userland l_uintptr_t *";
34245f2336efSEd Maste 			break;
34255f2336efSEd Maste 		default:
34265f2336efSEd Maste 			break;
34275f2336efSEd Maste 		};
34285f2336efSEd Maste 		break;
34295f2336efSEd Maste 	/* linux_ppoll */
34305f2336efSEd Maste 	case 73:
34315f2336efSEd Maste 		switch (ndx) {
34325f2336efSEd Maste 		case 0:
34335f2336efSEd Maste 			p = "userland struct pollfd *";
34345f2336efSEd Maste 			break;
34355f2336efSEd Maste 		case 1:
3436a39cdcd7SEdward Tomasz Napierala 			p = "l_uint";
34375f2336efSEd Maste 			break;
34385f2336efSEd Maste 		case 2:
34395f2336efSEd Maste 			p = "userland struct l_timespec *";
34405f2336efSEd Maste 			break;
34415f2336efSEd Maste 		case 3:
34425f2336efSEd Maste 			p = "userland l_sigset_t *";
34435f2336efSEd Maste 			break;
34445f2336efSEd Maste 		case 4:
34455f2336efSEd Maste 			p = "l_size_t";
34465f2336efSEd Maste 			break;
34475f2336efSEd Maste 		default:
34485f2336efSEd Maste 			break;
34495f2336efSEd Maste 		};
34505f2336efSEd Maste 		break;
34515f2336efSEd Maste 	/* linux_signalfd4 */
34525f2336efSEd Maste 	case 74:
34535f2336efSEd Maste 		break;
34545f2336efSEd Maste 	/* linux_vmsplice */
34555f2336efSEd Maste 	case 75:
34565f2336efSEd Maste 		break;
34575f2336efSEd Maste 	/* linux_splice */
34585f2336efSEd Maste 	case 76:
34593e9a2142SEdward Tomasz Napierala 		switch (ndx) {
34603e9a2142SEdward Tomasz Napierala 		case 0:
34613e9a2142SEdward Tomasz Napierala 			p = "int";
34623e9a2142SEdward Tomasz Napierala 			break;
34633e9a2142SEdward Tomasz Napierala 		case 1:
34643e9a2142SEdward Tomasz Napierala 			p = "userland l_loff_t *";
34653e9a2142SEdward Tomasz Napierala 			break;
34663e9a2142SEdward Tomasz Napierala 		case 2:
34673e9a2142SEdward Tomasz Napierala 			p = "int";
34683e9a2142SEdward Tomasz Napierala 			break;
34693e9a2142SEdward Tomasz Napierala 		case 3:
34703e9a2142SEdward Tomasz Napierala 			p = "userland l_loff_t *";
34713e9a2142SEdward Tomasz Napierala 			break;
34723e9a2142SEdward Tomasz Napierala 		case 4:
34733e9a2142SEdward Tomasz Napierala 			p = "l_size_t";
34743e9a2142SEdward Tomasz Napierala 			break;
34753e9a2142SEdward Tomasz Napierala 		case 5:
34763e9a2142SEdward Tomasz Napierala 			p = "l_uint";
34773e9a2142SEdward Tomasz Napierala 			break;
34783e9a2142SEdward Tomasz Napierala 		default:
34793e9a2142SEdward Tomasz Napierala 			break;
34803e9a2142SEdward Tomasz Napierala 		};
34815f2336efSEd Maste 		break;
34825f2336efSEd Maste 	/* linux_tee */
34835f2336efSEd Maste 	case 77:
34845f2336efSEd Maste 		break;
34855f2336efSEd Maste 	/* linux_readlinkat */
34865f2336efSEd Maste 	case 78:
34875f2336efSEd Maste 		switch (ndx) {
34885f2336efSEd Maste 		case 0:
34895f2336efSEd Maste 			p = "l_int";
34905f2336efSEd Maste 			break;
34915f2336efSEd Maste 		case 1:
34925f2336efSEd Maste 			p = "userland const char *";
34935f2336efSEd Maste 			break;
34945f2336efSEd Maste 		case 2:
34955f2336efSEd Maste 			p = "userland char *";
34965f2336efSEd Maste 			break;
34975f2336efSEd Maste 		case 3:
34985f2336efSEd Maste 			p = "l_int";
34995f2336efSEd Maste 			break;
35005f2336efSEd Maste 		default:
35015f2336efSEd Maste 			break;
35025f2336efSEd Maste 		};
35035f2336efSEd Maste 		break;
35045f2336efSEd Maste 	/* linux_newfstatat */
35055f2336efSEd Maste 	case 79:
35065f2336efSEd Maste 		switch (ndx) {
35075f2336efSEd Maste 		case 0:
35085f2336efSEd Maste 			p = "l_int";
35095f2336efSEd Maste 			break;
35105f2336efSEd Maste 		case 1:
35115f2336efSEd Maste 			p = "userland char *";
35125f2336efSEd Maste 			break;
35135f2336efSEd Maste 		case 2:
35145f2336efSEd Maste 			p = "userland struct l_stat64 *";
35155f2336efSEd Maste 			break;
35165f2336efSEd Maste 		case 3:
35175f2336efSEd Maste 			p = "l_int";
35185f2336efSEd Maste 			break;
35195f2336efSEd Maste 		default:
35205f2336efSEd Maste 			break;
35215f2336efSEd Maste 		};
35225f2336efSEd Maste 		break;
35235f2336efSEd Maste 	/* linux_newfstat */
35245f2336efSEd Maste 	case 80:
35255f2336efSEd Maste 		switch (ndx) {
35265f2336efSEd Maste 		case 0:
35275f2336efSEd Maste 			p = "l_uint";
35285f2336efSEd Maste 			break;
35295f2336efSEd Maste 		case 1:
35305f2336efSEd Maste 			p = "userland struct l_newstat *";
35315f2336efSEd Maste 			break;
35325f2336efSEd Maste 		default:
35335f2336efSEd Maste 			break;
35345f2336efSEd Maste 		};
35355f2336efSEd Maste 		break;
35365f2336efSEd Maste 	/* fsync */
35375f2336efSEd Maste 	case 82:
35385f2336efSEd Maste 		switch (ndx) {
35395f2336efSEd Maste 		case 0:
35405f2336efSEd Maste 			p = "int";
35415f2336efSEd Maste 			break;
35425f2336efSEd Maste 		default:
35435f2336efSEd Maste 			break;
35445f2336efSEd Maste 		};
35455f2336efSEd Maste 		break;
35465f2336efSEd Maste 	/* linux_fdatasync */
35475f2336efSEd Maste 	case 83:
35485f2336efSEd Maste 		switch (ndx) {
35495f2336efSEd Maste 		case 0:
35505f2336efSEd Maste 			p = "l_uint";
35515f2336efSEd Maste 			break;
35525f2336efSEd Maste 		default:
35535f2336efSEd Maste 			break;
35545f2336efSEd Maste 		};
35555f2336efSEd Maste 		break;
35565f2336efSEd Maste 	/* linux_sync_file_range */
35575f2336efSEd Maste 	case 84:
35580cde2b32SEdward Tomasz Napierala 		switch (ndx) {
35590cde2b32SEdward Tomasz Napierala 		case 0:
35600cde2b32SEdward Tomasz Napierala 			p = "l_int";
35610cde2b32SEdward Tomasz Napierala 			break;
35620cde2b32SEdward Tomasz Napierala 		case 1:
35630cde2b32SEdward Tomasz Napierala 			p = "l_loff_t";
35640cde2b32SEdward Tomasz Napierala 			break;
35650cde2b32SEdward Tomasz Napierala 		case 2:
35660cde2b32SEdward Tomasz Napierala 			p = "l_loff_t";
35670cde2b32SEdward Tomasz Napierala 			break;
35680cde2b32SEdward Tomasz Napierala 		case 3:
3569a39cdcd7SEdward Tomasz Napierala 			p = "l_uint";
35700cde2b32SEdward Tomasz Napierala 			break;
35710cde2b32SEdward Tomasz Napierala 		default:
35720cde2b32SEdward Tomasz Napierala 			break;
35730cde2b32SEdward Tomasz Napierala 		};
35745f2336efSEd Maste 		break;
35755f2336efSEd Maste 	/* linux_timerfd_create */
35765f2336efSEd Maste 	case 85:
35775f2336efSEd Maste 		switch (ndx) {
35785f2336efSEd Maste 		case 0:
35795f2336efSEd Maste 			p = "l_int";
35805f2336efSEd Maste 			break;
35815f2336efSEd Maste 		case 1:
35825f2336efSEd Maste 			p = "l_int";
35835f2336efSEd Maste 			break;
35845f2336efSEd Maste 		default:
35855f2336efSEd Maste 			break;
35865f2336efSEd Maste 		};
35875f2336efSEd Maste 		break;
35885f2336efSEd Maste 	/* linux_timerfd_settime */
35895f2336efSEd Maste 	case 86:
35905f2336efSEd Maste 		switch (ndx) {
35915f2336efSEd Maste 		case 0:
35925f2336efSEd Maste 			p = "l_int";
35935f2336efSEd Maste 			break;
35945f2336efSEd Maste 		case 1:
35955f2336efSEd Maste 			p = "l_int";
35965f2336efSEd Maste 			break;
35975f2336efSEd Maste 		case 2:
35985f2336efSEd Maste 			p = "userland const struct l_itimerspec *";
35995f2336efSEd Maste 			break;
36005f2336efSEd Maste 		case 3:
36015f2336efSEd Maste 			p = "userland struct l_itimerspec *";
36025f2336efSEd Maste 			break;
36035f2336efSEd Maste 		default:
36045f2336efSEd Maste 			break;
36055f2336efSEd Maste 		};
36065f2336efSEd Maste 		break;
36075f2336efSEd Maste 	/* linux_timerfd_gettime */
36085f2336efSEd Maste 	case 87:
36095f2336efSEd Maste 		switch (ndx) {
36105f2336efSEd Maste 		case 0:
36115f2336efSEd Maste 			p = "l_int";
36125f2336efSEd Maste 			break;
36135f2336efSEd Maste 		case 1:
36145f2336efSEd Maste 			p = "userland struct l_itimerspec *";
36155f2336efSEd Maste 			break;
36165f2336efSEd Maste 		default:
36175f2336efSEd Maste 			break;
36185f2336efSEd Maste 		};
36195f2336efSEd Maste 		break;
36205f2336efSEd Maste 	/* linux_utimensat */
36215f2336efSEd Maste 	case 88:
36225f2336efSEd Maste 		switch (ndx) {
36235f2336efSEd Maste 		case 0:
36245f2336efSEd Maste 			p = "l_int";
36255f2336efSEd Maste 			break;
36265f2336efSEd Maste 		case 1:
36275f2336efSEd Maste 			p = "userland const char *";
36285f2336efSEd Maste 			break;
36295f2336efSEd Maste 		case 2:
36305f2336efSEd Maste 			p = "userland const struct l_timespec *";
36315f2336efSEd Maste 			break;
36325f2336efSEd Maste 		case 3:
36335f2336efSEd Maste 			p = "l_int";
36345f2336efSEd Maste 			break;
36355f2336efSEd Maste 		default:
36365f2336efSEd Maste 			break;
36375f2336efSEd Maste 		};
36385f2336efSEd Maste 		break;
36395f2336efSEd Maste 	/* acct */
36405f2336efSEd Maste 	case 89:
36415f2336efSEd Maste 		switch (ndx) {
36425f2336efSEd Maste 		case 0:
36435f2336efSEd Maste 			p = "userland char *";
36445f2336efSEd Maste 			break;
36455f2336efSEd Maste 		default:
36465f2336efSEd Maste 			break;
36475f2336efSEd Maste 		};
36485f2336efSEd Maste 		break;
36495f2336efSEd Maste 	/* linux_capget */
36505f2336efSEd Maste 	case 90:
36515f2336efSEd Maste 		switch (ndx) {
36525f2336efSEd Maste 		case 0:
36535f2336efSEd Maste 			p = "userland struct l_user_cap_header *";
36545f2336efSEd Maste 			break;
36555f2336efSEd Maste 		case 1:
36565f2336efSEd Maste 			p = "userland struct l_user_cap_data *";
36575f2336efSEd Maste 			break;
36585f2336efSEd Maste 		default:
36595f2336efSEd Maste 			break;
36605f2336efSEd Maste 		};
36615f2336efSEd Maste 		break;
36625f2336efSEd Maste 	/* linux_capset */
36635f2336efSEd Maste 	case 91:
36645f2336efSEd Maste 		switch (ndx) {
36655f2336efSEd Maste 		case 0:
36665f2336efSEd Maste 			p = "userland struct l_user_cap_header *";
36675f2336efSEd Maste 			break;
36685f2336efSEd Maste 		case 1:
36695f2336efSEd Maste 			p = "userland struct l_user_cap_data *";
36705f2336efSEd Maste 			break;
36715f2336efSEd Maste 		default:
36725f2336efSEd Maste 			break;
36735f2336efSEd Maste 		};
36745f2336efSEd Maste 		break;
36755f2336efSEd Maste 	/* linux_personality */
36765f2336efSEd Maste 	case 92:
36775f2336efSEd Maste 		switch (ndx) {
36785f2336efSEd Maste 		case 0:
36795f2336efSEd Maste 			p = "l_uint";
36805f2336efSEd Maste 			break;
36815f2336efSEd Maste 		default:
36825f2336efSEd Maste 			break;
36835f2336efSEd Maste 		};
36845f2336efSEd Maste 		break;
36855f2336efSEd Maste 	/* linux_exit */
36865f2336efSEd Maste 	case 93:
36875f2336efSEd Maste 		switch (ndx) {
36885f2336efSEd Maste 		case 0:
3689a39cdcd7SEdward Tomasz Napierala 			p = "u_int";
36905f2336efSEd Maste 			break;
36915f2336efSEd Maste 		default:
36925f2336efSEd Maste 			break;
36935f2336efSEd Maste 		};
36945f2336efSEd Maste 		break;
36955f2336efSEd Maste 	/* linux_exit_group */
36965f2336efSEd Maste 	case 94:
36975f2336efSEd Maste 		switch (ndx) {
36985f2336efSEd Maste 		case 0:
3699a39cdcd7SEdward Tomasz Napierala 			p = "l_int";
37005f2336efSEd Maste 			break;
37015f2336efSEd Maste 		default:
37025f2336efSEd Maste 			break;
37035f2336efSEd Maste 		};
37045f2336efSEd Maste 		break;
37055f2336efSEd Maste 	/* linux_waitid */
37065f2336efSEd Maste 	case 95:
37075f2336efSEd Maste 		switch (ndx) {
37085f2336efSEd Maste 		case 0:
37095f2336efSEd Maste 			p = "l_int";
37105f2336efSEd Maste 			break;
37115f2336efSEd Maste 		case 1:
37125f2336efSEd Maste 			p = "l_pid_t";
37135f2336efSEd Maste 			break;
37145f2336efSEd Maste 		case 2:
37155f2336efSEd Maste 			p = "userland l_siginfo_t *";
37165f2336efSEd Maste 			break;
37175f2336efSEd Maste 		case 3:
37185f2336efSEd Maste 			p = "l_int";
37195f2336efSEd Maste 			break;
37205f2336efSEd Maste 		case 4:
37215f2336efSEd Maste 			p = "userland struct rusage *";
37225f2336efSEd Maste 			break;
37235f2336efSEd Maste 		default:
37245f2336efSEd Maste 			break;
37255f2336efSEd Maste 		};
37265f2336efSEd Maste 		break;
37275f2336efSEd Maste 	/* linux_set_tid_address */
37285f2336efSEd Maste 	case 96:
37295f2336efSEd Maste 		switch (ndx) {
37305f2336efSEd Maste 		case 0:
3731a39cdcd7SEdward Tomasz Napierala 			p = "userland l_int *";
37325f2336efSEd Maste 			break;
37335f2336efSEd Maste 		default:
37345f2336efSEd Maste 			break;
37355f2336efSEd Maste 		};
37365f2336efSEd Maste 		break;
37375f2336efSEd Maste 	/* linux_unshare */
37385f2336efSEd Maste 	case 97:
37395f2336efSEd Maste 		break;
37405f2336efSEd Maste 	/* linux_sys_futex */
37415f2336efSEd Maste 	case 98:
37425f2336efSEd Maste 		switch (ndx) {
37435f2336efSEd Maste 		case 0:
3744ee64d982SDmitry Chagin 			p = "userland uint32_t *";
37455f2336efSEd Maste 			break;
37465f2336efSEd Maste 		case 1:
3747ee64d982SDmitry Chagin 			p = "l_int";
37485f2336efSEd Maste 			break;
37495f2336efSEd Maste 		case 2:
3750ee64d982SDmitry Chagin 			p = "uint32_t";
37515f2336efSEd Maste 			break;
37525f2336efSEd Maste 		case 3:
37535f2336efSEd Maste 			p = "userland struct l_timespec *";
37545f2336efSEd Maste 			break;
37555f2336efSEd Maste 		case 4:
3756ee64d982SDmitry Chagin 			p = "userland uint32_t *";
37575f2336efSEd Maste 			break;
37585f2336efSEd Maste 		case 5:
3759ee64d982SDmitry Chagin 			p = "uint32_t";
37605f2336efSEd Maste 			break;
37615f2336efSEd Maste 		default:
37625f2336efSEd Maste 			break;
37635f2336efSEd Maste 		};
37645f2336efSEd Maste 		break;
37655f2336efSEd Maste 	/* linux_set_robust_list */
37665f2336efSEd Maste 	case 99:
37675f2336efSEd Maste 		switch (ndx) {
37685f2336efSEd Maste 		case 0:
37695f2336efSEd Maste 			p = "userland struct linux_robust_list_head *";
37705f2336efSEd Maste 			break;
37715f2336efSEd Maste 		case 1:
37725f2336efSEd Maste 			p = "l_size_t";
37735f2336efSEd Maste 			break;
37745f2336efSEd Maste 		default:
37755f2336efSEd Maste 			break;
37765f2336efSEd Maste 		};
37775f2336efSEd Maste 		break;
37785f2336efSEd Maste 	/* linux_get_robust_list */
37795f2336efSEd Maste 	case 100:
37805f2336efSEd Maste 		switch (ndx) {
37815f2336efSEd Maste 		case 0:
37825f2336efSEd Maste 			p = "l_int";
37835f2336efSEd Maste 			break;
37845f2336efSEd Maste 		case 1:
37855f2336efSEd Maste 			p = "userland struct linux_robust_list_head **";
37865f2336efSEd Maste 			break;
37875f2336efSEd Maste 		case 2:
37885f2336efSEd Maste 			p = "userland l_size_t *";
37895f2336efSEd Maste 			break;
37905f2336efSEd Maste 		default:
37915f2336efSEd Maste 			break;
37925f2336efSEd Maste 		};
37935f2336efSEd Maste 		break;
37945f2336efSEd Maste 	/* linux_nanosleep */
37955f2336efSEd Maste 	case 101:
37965f2336efSEd Maste 		switch (ndx) {
37975f2336efSEd Maste 		case 0:
37985f2336efSEd Maste 			p = "userland const struct l_timespec *";
37995f2336efSEd Maste 			break;
38005f2336efSEd Maste 		case 1:
38015f2336efSEd Maste 			p = "userland struct l_timespec *";
38025f2336efSEd Maste 			break;
38035f2336efSEd Maste 		default:
38045f2336efSEd Maste 			break;
38055f2336efSEd Maste 		};
38065f2336efSEd Maste 		break;
38075f2336efSEd Maste 	/* linux_getitimer */
38085f2336efSEd Maste 	case 102:
38095f2336efSEd Maste 		switch (ndx) {
38105f2336efSEd Maste 		case 0:
38115f2336efSEd Maste 			p = "l_int";
38125f2336efSEd Maste 			break;
38135f2336efSEd Maste 		case 1:
38145f2336efSEd Maste 			p = "userland struct l_itimerval *";
38155f2336efSEd Maste 			break;
38165f2336efSEd Maste 		default:
38175f2336efSEd Maste 			break;
38185f2336efSEd Maste 		};
38195f2336efSEd Maste 		break;
38205f2336efSEd Maste 	/* linux_setitimer */
38215f2336efSEd Maste 	case 103:
38225f2336efSEd Maste 		switch (ndx) {
38235f2336efSEd Maste 		case 0:
38245f2336efSEd Maste 			p = "l_int";
38255f2336efSEd Maste 			break;
38265f2336efSEd Maste 		case 1:
38275f2336efSEd Maste 			p = "userland struct l_itimerval *";
38285f2336efSEd Maste 			break;
38295f2336efSEd Maste 		case 2:
38305f2336efSEd Maste 			p = "userland struct l_itimerval *";
38315f2336efSEd Maste 			break;
38325f2336efSEd Maste 		default:
38335f2336efSEd Maste 			break;
38345f2336efSEd Maste 		};
38355f2336efSEd Maste 		break;
38365f2336efSEd Maste 	/* linux_kexec_load */
38375f2336efSEd Maste 	case 104:
38385f2336efSEd Maste 		break;
38395f2336efSEd Maste 	/* linux_init_module */
38405f2336efSEd Maste 	case 105:
38415f2336efSEd Maste 		break;
38425f2336efSEd Maste 	/* linux_delete_module */
38435f2336efSEd Maste 	case 106:
38445f2336efSEd Maste 		break;
38455f2336efSEd Maste 	/* linux_timer_create */
38465f2336efSEd Maste 	case 107:
38475f2336efSEd Maste 		switch (ndx) {
38485f2336efSEd Maste 		case 0:
38495f2336efSEd Maste 			p = "clockid_t";
38505f2336efSEd Maste 			break;
38515f2336efSEd Maste 		case 1:
3852bedbaee8SWarner Losh 			p = "userland struct l_sigevent *";
38535f2336efSEd Maste 			break;
38545f2336efSEd Maste 		case 2:
38555f2336efSEd Maste 			p = "userland l_timer_t *";
38565f2336efSEd Maste 			break;
38575f2336efSEd Maste 		default:
38585f2336efSEd Maste 			break;
38595f2336efSEd Maste 		};
38605f2336efSEd Maste 		break;
38615f2336efSEd Maste 	/* linux_timer_gettime */
38625f2336efSEd Maste 	case 108:
38635f2336efSEd Maste 		switch (ndx) {
38645f2336efSEd Maste 		case 0:
38655f2336efSEd Maste 			p = "l_timer_t";
38665f2336efSEd Maste 			break;
38675f2336efSEd Maste 		case 1:
38685f2336efSEd Maste 			p = "userland struct itimerspec *";
38695f2336efSEd Maste 			break;
38705f2336efSEd Maste 		default:
38715f2336efSEd Maste 			break;
38725f2336efSEd Maste 		};
38735f2336efSEd Maste 		break;
38745f2336efSEd Maste 	/* linux_timer_getoverrun */
38755f2336efSEd Maste 	case 109:
38765f2336efSEd Maste 		switch (ndx) {
38775f2336efSEd Maste 		case 0:
38785f2336efSEd Maste 			p = "l_timer_t";
38795f2336efSEd Maste 			break;
38805f2336efSEd Maste 		default:
38815f2336efSEd Maste 			break;
38825f2336efSEd Maste 		};
38835f2336efSEd Maste 		break;
38845f2336efSEd Maste 	/* linux_timer_settime */
38855f2336efSEd Maste 	case 110:
38865f2336efSEd Maste 		switch (ndx) {
38875f2336efSEd Maste 		case 0:
38885f2336efSEd Maste 			p = "l_timer_t";
38895f2336efSEd Maste 			break;
38905f2336efSEd Maste 		case 1:
38915f2336efSEd Maste 			p = "l_int";
38925f2336efSEd Maste 			break;
38935f2336efSEd Maste 		case 2:
38945f2336efSEd Maste 			p = "userland const struct itimerspec *";
38955f2336efSEd Maste 			break;
38965f2336efSEd Maste 		case 3:
38975f2336efSEd Maste 			p = "userland struct itimerspec *";
38985f2336efSEd Maste 			break;
38995f2336efSEd Maste 		default:
39005f2336efSEd Maste 			break;
39015f2336efSEd Maste 		};
39025f2336efSEd Maste 		break;
39035f2336efSEd Maste 	/* linux_timer_delete */
39045f2336efSEd Maste 	case 111:
39055f2336efSEd Maste 		switch (ndx) {
39065f2336efSEd Maste 		case 0:
39075f2336efSEd Maste 			p = "l_timer_t";
39085f2336efSEd Maste 			break;
39095f2336efSEd Maste 		default:
39105f2336efSEd Maste 			break;
39115f2336efSEd Maste 		};
39125f2336efSEd Maste 		break;
39135f2336efSEd Maste 	/* linux_clock_settime */
39145f2336efSEd Maste 	case 112:
39155f2336efSEd Maste 		switch (ndx) {
39165f2336efSEd Maste 		case 0:
39175f2336efSEd Maste 			p = "clockid_t";
39185f2336efSEd Maste 			break;
39195f2336efSEd Maste 		case 1:
39205f2336efSEd Maste 			p = "userland struct l_timespec *";
39215f2336efSEd Maste 			break;
39225f2336efSEd Maste 		default:
39235f2336efSEd Maste 			break;
39245f2336efSEd Maste 		};
39255f2336efSEd Maste 		break;
39265f2336efSEd Maste 	/* linux_clock_gettime */
39275f2336efSEd Maste 	case 113:
39285f2336efSEd Maste 		switch (ndx) {
39295f2336efSEd Maste 		case 0:
39305f2336efSEd Maste 			p = "clockid_t";
39315f2336efSEd Maste 			break;
39325f2336efSEd Maste 		case 1:
39335f2336efSEd Maste 			p = "userland struct l_timespec *";
39345f2336efSEd Maste 			break;
39355f2336efSEd Maste 		default:
39365f2336efSEd Maste 			break;
39375f2336efSEd Maste 		};
39385f2336efSEd Maste 		break;
39395f2336efSEd Maste 	/* linux_clock_getres */
39405f2336efSEd Maste 	case 114:
39415f2336efSEd Maste 		switch (ndx) {
39425f2336efSEd Maste 		case 0:
39435f2336efSEd Maste 			p = "clockid_t";
39445f2336efSEd Maste 			break;
39455f2336efSEd Maste 		case 1:
39465f2336efSEd Maste 			p = "userland struct l_timespec *";
39475f2336efSEd Maste 			break;
39485f2336efSEd Maste 		default:
39495f2336efSEd Maste 			break;
39505f2336efSEd Maste 		};
39515f2336efSEd Maste 		break;
39525f2336efSEd Maste 	/* linux_clock_nanosleep */
39535f2336efSEd Maste 	case 115:
39545f2336efSEd Maste 		switch (ndx) {
39555f2336efSEd Maste 		case 0:
39565f2336efSEd Maste 			p = "clockid_t";
39575f2336efSEd Maste 			break;
39585f2336efSEd Maste 		case 1:
3959a39cdcd7SEdward Tomasz Napierala 			p = "l_int";
39605f2336efSEd Maste 			break;
39615f2336efSEd Maste 		case 2:
39625f2336efSEd Maste 			p = "userland struct l_timespec *";
39635f2336efSEd Maste 			break;
39645f2336efSEd Maste 		case 3:
39655f2336efSEd Maste 			p = "userland struct l_timespec *";
39665f2336efSEd Maste 			break;
39675f2336efSEd Maste 		default:
39685f2336efSEd Maste 			break;
39695f2336efSEd Maste 		};
39705f2336efSEd Maste 		break;
39715f2336efSEd Maste 	/* linux_syslog */
39725f2336efSEd Maste 	case 116:
39735f2336efSEd Maste 		switch (ndx) {
39745f2336efSEd Maste 		case 0:
39755f2336efSEd Maste 			p = "l_int";
39765f2336efSEd Maste 			break;
39775f2336efSEd Maste 		case 1:
39785f2336efSEd Maste 			p = "userland char *";
39795f2336efSEd Maste 			break;
39805f2336efSEd Maste 		case 2:
39815f2336efSEd Maste 			p = "l_int";
39825f2336efSEd Maste 			break;
39835f2336efSEd Maste 		default:
39845f2336efSEd Maste 			break;
39855f2336efSEd Maste 		};
39865f2336efSEd Maste 		break;
39875f2336efSEd Maste 	/* linux_ptrace */
39885f2336efSEd Maste 	case 117:
39895f2336efSEd Maste 		switch (ndx) {
39905f2336efSEd Maste 		case 0:
39915f2336efSEd Maste 			p = "l_long";
39925f2336efSEd Maste 			break;
39935f2336efSEd Maste 		case 1:
39945f2336efSEd Maste 			p = "l_long";
39955f2336efSEd Maste 			break;
39965f2336efSEd Maste 		case 2:
39975f2336efSEd Maste 			p = "l_ulong";
39985f2336efSEd Maste 			break;
39995f2336efSEd Maste 		case 3:
40005f2336efSEd Maste 			p = "l_ulong";
40015f2336efSEd Maste 			break;
40025f2336efSEd Maste 		default:
40035f2336efSEd Maste 			break;
40045f2336efSEd Maste 		};
40055f2336efSEd Maste 		break;
40065f2336efSEd Maste 	/* linux_sched_setparam */
40075f2336efSEd Maste 	case 118:
40085f2336efSEd Maste 		switch (ndx) {
40095f2336efSEd Maste 		case 0:
40105f2336efSEd Maste 			p = "l_pid_t";
40115f2336efSEd Maste 			break;
40125f2336efSEd Maste 		case 1:
40135f2336efSEd Maste 			p = "userland struct sched_param *";
40145f2336efSEd Maste 			break;
40155f2336efSEd Maste 		default:
40165f2336efSEd Maste 			break;
40175f2336efSEd Maste 		};
40185f2336efSEd Maste 		break;
40195f2336efSEd Maste 	/* linux_sched_setscheduler */
40205f2336efSEd Maste 	case 119:
40215f2336efSEd Maste 		switch (ndx) {
40225f2336efSEd Maste 		case 0:
40235f2336efSEd Maste 			p = "l_pid_t";
40245f2336efSEd Maste 			break;
40255f2336efSEd Maste 		case 1:
40265f2336efSEd Maste 			p = "l_int";
40275f2336efSEd Maste 			break;
40285f2336efSEd Maste 		case 2:
40295f2336efSEd Maste 			p = "userland struct sched_param *";
40305f2336efSEd Maste 			break;
40315f2336efSEd Maste 		default:
40325f2336efSEd Maste 			break;
40335f2336efSEd Maste 		};
40345f2336efSEd Maste 		break;
40355f2336efSEd Maste 	/* linux_sched_getscheduler */
40365f2336efSEd Maste 	case 120:
40375f2336efSEd Maste 		switch (ndx) {
40385f2336efSEd Maste 		case 0:
40395f2336efSEd Maste 			p = "l_pid_t";
40405f2336efSEd Maste 			break;
40415f2336efSEd Maste 		default:
40425f2336efSEd Maste 			break;
40435f2336efSEd Maste 		};
40445f2336efSEd Maste 		break;
40455f2336efSEd Maste 	/* linux_sched_getparam */
40465f2336efSEd Maste 	case 121:
40475f2336efSEd Maste 		switch (ndx) {
40485f2336efSEd Maste 		case 0:
40495f2336efSEd Maste 			p = "l_pid_t";
40505f2336efSEd Maste 			break;
40515f2336efSEd Maste 		case 1:
40525f2336efSEd Maste 			p = "userland struct sched_param *";
40535f2336efSEd Maste 			break;
40545f2336efSEd Maste 		default:
40555f2336efSEd Maste 			break;
40565f2336efSEd Maste 		};
40575f2336efSEd Maste 		break;
40585f2336efSEd Maste 	/* linux_sched_setaffinity */
40595f2336efSEd Maste 	case 122:
40605f2336efSEd Maste 		switch (ndx) {
40615f2336efSEd Maste 		case 0:
40625f2336efSEd Maste 			p = "l_pid_t";
40635f2336efSEd Maste 			break;
40645f2336efSEd Maste 		case 1:
40655f2336efSEd Maste 			p = "l_uint";
40665f2336efSEd Maste 			break;
40675f2336efSEd Maste 		case 2:
40685f2336efSEd Maste 			p = "userland l_ulong *";
40695f2336efSEd Maste 			break;
40705f2336efSEd Maste 		default:
40715f2336efSEd Maste 			break;
40725f2336efSEd Maste 		};
40735f2336efSEd Maste 		break;
40745f2336efSEd Maste 	/* linux_sched_getaffinity */
40755f2336efSEd Maste 	case 123:
40765f2336efSEd Maste 		switch (ndx) {
40775f2336efSEd Maste 		case 0:
40785f2336efSEd Maste 			p = "l_pid_t";
40795f2336efSEd Maste 			break;
40805f2336efSEd Maste 		case 1:
40815f2336efSEd Maste 			p = "l_uint";
40825f2336efSEd Maste 			break;
40835f2336efSEd Maste 		case 2:
40845f2336efSEd Maste 			p = "userland l_ulong *";
40855f2336efSEd Maste 			break;
40865f2336efSEd Maste 		default:
40875f2336efSEd Maste 			break;
40885f2336efSEd Maste 		};
40895f2336efSEd Maste 		break;
40905f2336efSEd Maste 	/* sched_yield */
40915f2336efSEd Maste 	case 124:
40925f2336efSEd Maste 		break;
40935f2336efSEd Maste 	/* linux_sched_get_priority_max */
40945f2336efSEd Maste 	case 125:
40955f2336efSEd Maste 		switch (ndx) {
40965f2336efSEd Maste 		case 0:
40975f2336efSEd Maste 			p = "l_int";
40985f2336efSEd Maste 			break;
40995f2336efSEd Maste 		default:
41005f2336efSEd Maste 			break;
41015f2336efSEd Maste 		};
41025f2336efSEd Maste 		break;
41035f2336efSEd Maste 	/* linux_sched_get_priority_min */
41045f2336efSEd Maste 	case 126:
41055f2336efSEd Maste 		switch (ndx) {
41065f2336efSEd Maste 		case 0:
41075f2336efSEd Maste 			p = "l_int";
41085f2336efSEd Maste 			break;
41095f2336efSEd Maste 		default:
41105f2336efSEd Maste 			break;
41115f2336efSEd Maste 		};
41125f2336efSEd Maste 		break;
41135f2336efSEd Maste 	/* linux_sched_rr_get_interval */
41145f2336efSEd Maste 	case 127:
41155f2336efSEd Maste 		switch (ndx) {
41165f2336efSEd Maste 		case 0:
41175f2336efSEd Maste 			p = "l_pid_t";
41185f2336efSEd Maste 			break;
41195f2336efSEd Maste 		case 1:
41205f2336efSEd Maste 			p = "userland struct l_timespec *";
41215f2336efSEd Maste 			break;
41225f2336efSEd Maste 		default:
41235f2336efSEd Maste 			break;
41245f2336efSEd Maste 		};
41255f2336efSEd Maste 		break;
41265f2336efSEd Maste 	/* linux_kill */
41275f2336efSEd Maste 	case 129:
41285f2336efSEd Maste 		switch (ndx) {
41295f2336efSEd Maste 		case 0:
4130a39cdcd7SEdward Tomasz Napierala 			p = "l_pid_t";
41315f2336efSEd Maste 			break;
41325f2336efSEd Maste 		case 1:
41335f2336efSEd Maste 			p = "l_int";
41345f2336efSEd Maste 			break;
41355f2336efSEd Maste 		default:
41365f2336efSEd Maste 			break;
41375f2336efSEd Maste 		};
41385f2336efSEd Maste 		break;
41395f2336efSEd Maste 	/* linux_tkill */
41405f2336efSEd Maste 	case 130:
41415f2336efSEd Maste 		switch (ndx) {
41425f2336efSEd Maste 		case 0:
4143a39cdcd7SEdward Tomasz Napierala 			p = "l_pid_t";
41445f2336efSEd Maste 			break;
41455f2336efSEd Maste 		case 1:
41465f2336efSEd Maste 			p = "l_int";
41475f2336efSEd Maste 			break;
41485f2336efSEd Maste 		default:
41495f2336efSEd Maste 			break;
41505f2336efSEd Maste 		};
41515f2336efSEd Maste 		break;
41525f2336efSEd Maste 	/* linux_tgkill */
41535f2336efSEd Maste 	case 131:
41545f2336efSEd Maste 		switch (ndx) {
41555f2336efSEd Maste 		case 0:
4156a39cdcd7SEdward Tomasz Napierala 			p = "l_pid_t";
41575f2336efSEd Maste 			break;
41585f2336efSEd Maste 		case 1:
4159a39cdcd7SEdward Tomasz Napierala 			p = "l_pid_t";
41605f2336efSEd Maste 			break;
41615f2336efSEd Maste 		case 2:
41625f2336efSEd Maste 			p = "l_int";
41635f2336efSEd Maste 			break;
41645f2336efSEd Maste 		default:
41655f2336efSEd Maste 			break;
41665f2336efSEd Maste 		};
41675f2336efSEd Maste 		break;
41685f2336efSEd Maste 	/* linux_sigaltstack */
41695f2336efSEd Maste 	case 132:
41705f2336efSEd Maste 		switch (ndx) {
41715f2336efSEd Maste 		case 0:
41725f2336efSEd Maste 			p = "userland l_stack_t *";
41735f2336efSEd Maste 			break;
41745f2336efSEd Maste 		case 1:
41755f2336efSEd Maste 			p = "userland l_stack_t *";
41765f2336efSEd Maste 			break;
41775f2336efSEd Maste 		default:
41785f2336efSEd Maste 			break;
41795f2336efSEd Maste 		};
41805f2336efSEd Maste 		break;
41815f2336efSEd Maste 	/* linux_rt_sigsuspend */
41825f2336efSEd Maste 	case 133:
41835f2336efSEd Maste 		switch (ndx) {
41845f2336efSEd Maste 		case 0:
41855f2336efSEd Maste 			p = "userland l_sigset_t *";
41865f2336efSEd Maste 			break;
41875f2336efSEd Maste 		case 1:
41885f2336efSEd Maste 			p = "l_size_t";
41895f2336efSEd Maste 			break;
41905f2336efSEd Maste 		default:
41915f2336efSEd Maste 			break;
41925f2336efSEd Maste 		};
41935f2336efSEd Maste 		break;
41945f2336efSEd Maste 	/* linux_rt_sigaction */
41955f2336efSEd Maste 	case 134:
41965f2336efSEd Maste 		switch (ndx) {
41975f2336efSEd Maste 		case 0:
41985f2336efSEd Maste 			p = "l_int";
41995f2336efSEd Maste 			break;
42005f2336efSEd Maste 		case 1:
42015f2336efSEd Maste 			p = "userland l_sigaction_t *";
42025f2336efSEd Maste 			break;
42035f2336efSEd Maste 		case 2:
42045f2336efSEd Maste 			p = "userland l_sigaction_t *";
42055f2336efSEd Maste 			break;
42065f2336efSEd Maste 		case 3:
42075f2336efSEd Maste 			p = "l_size_t";
42085f2336efSEd Maste 			break;
42095f2336efSEd Maste 		default:
42105f2336efSEd Maste 			break;
42115f2336efSEd Maste 		};
42125f2336efSEd Maste 		break;
42135f2336efSEd Maste 	/* linux_rt_sigprocmask */
42145f2336efSEd Maste 	case 135:
42155f2336efSEd Maste 		switch (ndx) {
42165f2336efSEd Maste 		case 0:
42175f2336efSEd Maste 			p = "l_int";
42185f2336efSEd Maste 			break;
42195f2336efSEd Maste 		case 1:
42205f2336efSEd Maste 			p = "userland l_sigset_t *";
42215f2336efSEd Maste 			break;
42225f2336efSEd Maste 		case 2:
42235f2336efSEd Maste 			p = "userland l_sigset_t *";
42245f2336efSEd Maste 			break;
42255f2336efSEd Maste 		case 3:
42265f2336efSEd Maste 			p = "l_size_t";
42275f2336efSEd Maste 			break;
42285f2336efSEd Maste 		default:
42295f2336efSEd Maste 			break;
42305f2336efSEd Maste 		};
42315f2336efSEd Maste 		break;
42325f2336efSEd Maste 	/* linux_rt_sigpending */
42335f2336efSEd Maste 	case 136:
42345f2336efSEd Maste 		switch (ndx) {
42355f2336efSEd Maste 		case 0:
42365f2336efSEd Maste 			p = "userland l_sigset_t *";
42375f2336efSEd Maste 			break;
42385f2336efSEd Maste 		case 1:
42395f2336efSEd Maste 			p = "l_size_t";
42405f2336efSEd Maste 			break;
42415f2336efSEd Maste 		default:
42425f2336efSEd Maste 			break;
42435f2336efSEd Maste 		};
42445f2336efSEd Maste 		break;
42455f2336efSEd Maste 	/* linux_rt_sigtimedwait */
42465f2336efSEd Maste 	case 137:
42475f2336efSEd Maste 		switch (ndx) {
42485f2336efSEd Maste 		case 0:
42495f2336efSEd Maste 			p = "userland l_sigset_t *";
42505f2336efSEd Maste 			break;
42515f2336efSEd Maste 		case 1:
42525f2336efSEd Maste 			p = "userland l_siginfo_t *";
42535f2336efSEd Maste 			break;
42545f2336efSEd Maste 		case 2:
4255e29ea22fSDmitry Chagin 			p = "userland struct l_timespec *";
42565f2336efSEd Maste 			break;
42575f2336efSEd Maste 		case 3:
42585f2336efSEd Maste 			p = "l_size_t";
42595f2336efSEd Maste 			break;
42605f2336efSEd Maste 		default:
42615f2336efSEd Maste 			break;
42625f2336efSEd Maste 		};
42635f2336efSEd Maste 		break;
42645f2336efSEd Maste 	/* linux_rt_sigqueueinfo */
42655f2336efSEd Maste 	case 138:
42665f2336efSEd Maste 		switch (ndx) {
42675f2336efSEd Maste 		case 0:
42685f2336efSEd Maste 			p = "l_pid_t";
42695f2336efSEd Maste 			break;
42705f2336efSEd Maste 		case 1:
42715f2336efSEd Maste 			p = "l_int";
42725f2336efSEd Maste 			break;
42735f2336efSEd Maste 		case 2:
42745f2336efSEd Maste 			p = "userland l_siginfo_t *";
42755f2336efSEd Maste 			break;
42765f2336efSEd Maste 		default:
42775f2336efSEd Maste 			break;
42785f2336efSEd Maste 		};
42795f2336efSEd Maste 		break;
42805f2336efSEd Maste 	/* linux_rt_sigreturn */
42815f2336efSEd Maste 	case 139:
42825f2336efSEd Maste 		break;
42835f2336efSEd Maste 	/* setpriority */
42845f2336efSEd Maste 	case 140:
42855f2336efSEd Maste 		switch (ndx) {
42865f2336efSEd Maste 		case 0:
42875f2336efSEd Maste 			p = "int";
42885f2336efSEd Maste 			break;
42895f2336efSEd Maste 		case 1:
42905f2336efSEd Maste 			p = "int";
42915f2336efSEd Maste 			break;
42925f2336efSEd Maste 		case 2:
42935f2336efSEd Maste 			p = "int";
42945f2336efSEd Maste 			break;
42955f2336efSEd Maste 		default:
42965f2336efSEd Maste 			break;
42975f2336efSEd Maste 		};
42985f2336efSEd Maste 		break;
42995f2336efSEd Maste 	/* linux_getpriority */
43005f2336efSEd Maste 	case 141:
43015f2336efSEd Maste 		switch (ndx) {
43025f2336efSEd Maste 		case 0:
43035f2336efSEd Maste 			p = "l_int";
43045f2336efSEd Maste 			break;
43055f2336efSEd Maste 		case 1:
43065f2336efSEd Maste 			p = "l_int";
43075f2336efSEd Maste 			break;
43085f2336efSEd Maste 		default:
43095f2336efSEd Maste 			break;
43105f2336efSEd Maste 		};
43115f2336efSEd Maste 		break;
43125f2336efSEd Maste 	/* linux_reboot */
43135f2336efSEd Maste 	case 142:
43145f2336efSEd Maste 		switch (ndx) {
43155f2336efSEd Maste 		case 0:
43165f2336efSEd Maste 			p = "l_int";
43175f2336efSEd Maste 			break;
43185f2336efSEd Maste 		case 1:
43195f2336efSEd Maste 			p = "l_int";
43205f2336efSEd Maste 			break;
43215f2336efSEd Maste 		case 2:
43225f2336efSEd Maste 			p = "l_uint";
43235f2336efSEd Maste 			break;
43245f2336efSEd Maste 		case 3:
43255f2336efSEd Maste 			p = "userland void *";
43265f2336efSEd Maste 			break;
43275f2336efSEd Maste 		default:
43285f2336efSEd Maste 			break;
43295f2336efSEd Maste 		};
43305f2336efSEd Maste 		break;
43315f2336efSEd Maste 	/* setregid */
43325f2336efSEd Maste 	case 143:
43335f2336efSEd Maste 		switch (ndx) {
43345f2336efSEd Maste 		case 0:
43355f2336efSEd Maste 			p = "gid_t";
43365f2336efSEd Maste 			break;
43375f2336efSEd Maste 		case 1:
43385f2336efSEd Maste 			p = "gid_t";
43395f2336efSEd Maste 			break;
43405f2336efSEd Maste 		default:
43415f2336efSEd Maste 			break;
43425f2336efSEd Maste 		};
43435f2336efSEd Maste 		break;
43445f2336efSEd Maste 	/* setgid */
43455f2336efSEd Maste 	case 144:
43465f2336efSEd Maste 		switch (ndx) {
43475f2336efSEd Maste 		case 0:
43485f2336efSEd Maste 			p = "gid_t";
43495f2336efSEd Maste 			break;
43505f2336efSEd Maste 		default:
43515f2336efSEd Maste 			break;
43525f2336efSEd Maste 		};
43535f2336efSEd Maste 		break;
43545f2336efSEd Maste 	/* setreuid */
43555f2336efSEd Maste 	case 145:
43565f2336efSEd Maste 		switch (ndx) {
43575f2336efSEd Maste 		case 0:
43585f2336efSEd Maste 			p = "uid_t";
43595f2336efSEd Maste 			break;
43605f2336efSEd Maste 		case 1:
43615f2336efSEd Maste 			p = "uid_t";
43625f2336efSEd Maste 			break;
43635f2336efSEd Maste 		default:
43645f2336efSEd Maste 			break;
43655f2336efSEd Maste 		};
43665f2336efSEd Maste 		break;
43675f2336efSEd Maste 	/* setuid */
43685f2336efSEd Maste 	case 146:
43695f2336efSEd Maste 		switch (ndx) {
43705f2336efSEd Maste 		case 0:
43715f2336efSEd Maste 			p = "uid_t";
43725f2336efSEd Maste 			break;
43735f2336efSEd Maste 		default:
43745f2336efSEd Maste 			break;
43755f2336efSEd Maste 		};
43765f2336efSEd Maste 		break;
43775f2336efSEd Maste 	/* setresuid */
43785f2336efSEd Maste 	case 147:
43795f2336efSEd Maste 		switch (ndx) {
43805f2336efSEd Maste 		case 0:
43815f2336efSEd Maste 			p = "uid_t";
43825f2336efSEd Maste 			break;
43835f2336efSEd Maste 		case 1:
43845f2336efSEd Maste 			p = "uid_t";
43855f2336efSEd Maste 			break;
43865f2336efSEd Maste 		case 2:
43875f2336efSEd Maste 			p = "uid_t";
43885f2336efSEd Maste 			break;
43895f2336efSEd Maste 		default:
43905f2336efSEd Maste 			break;
43915f2336efSEd Maste 		};
43925f2336efSEd Maste 		break;
43935f2336efSEd Maste 	/* getresuid */
43945f2336efSEd Maste 	case 148:
43955f2336efSEd Maste 		switch (ndx) {
43965f2336efSEd Maste 		case 0:
43975f2336efSEd Maste 			p = "userland uid_t *";
43985f2336efSEd Maste 			break;
43995f2336efSEd Maste 		case 1:
44005f2336efSEd Maste 			p = "userland uid_t *";
44015f2336efSEd Maste 			break;
44025f2336efSEd Maste 		case 2:
44035f2336efSEd Maste 			p = "userland uid_t *";
44045f2336efSEd Maste 			break;
44055f2336efSEd Maste 		default:
44065f2336efSEd Maste 			break;
44075f2336efSEd Maste 		};
44085f2336efSEd Maste 		break;
44095f2336efSEd Maste 	/* setresgid */
44105f2336efSEd Maste 	case 149:
44115f2336efSEd Maste 		switch (ndx) {
44125f2336efSEd Maste 		case 0:
44135f2336efSEd Maste 			p = "gid_t";
44145f2336efSEd Maste 			break;
44155f2336efSEd Maste 		case 1:
44165f2336efSEd Maste 			p = "gid_t";
44175f2336efSEd Maste 			break;
44185f2336efSEd Maste 		case 2:
44195f2336efSEd Maste 			p = "gid_t";
44205f2336efSEd Maste 			break;
44215f2336efSEd Maste 		default:
44225f2336efSEd Maste 			break;
44235f2336efSEd Maste 		};
44245f2336efSEd Maste 		break;
44255f2336efSEd Maste 	/* getresgid */
44265f2336efSEd Maste 	case 150:
44275f2336efSEd Maste 		switch (ndx) {
44285f2336efSEd Maste 		case 0:
44295f2336efSEd Maste 			p = "userland gid_t *";
44305f2336efSEd Maste 			break;
44315f2336efSEd Maste 		case 1:
44325f2336efSEd Maste 			p = "userland gid_t *";
44335f2336efSEd Maste 			break;
44345f2336efSEd Maste 		case 2:
44355f2336efSEd Maste 			p = "userland gid_t *";
44365f2336efSEd Maste 			break;
44375f2336efSEd Maste 		default:
44385f2336efSEd Maste 			break;
44395f2336efSEd Maste 		};
44405f2336efSEd Maste 		break;
44415f2336efSEd Maste 	/* linux_setfsuid */
44425f2336efSEd Maste 	case 151:
44435f2336efSEd Maste 		switch (ndx) {
44445f2336efSEd Maste 		case 0:
44455f2336efSEd Maste 			p = "l_uid_t";
44465f2336efSEd Maste 			break;
44475f2336efSEd Maste 		default:
44485f2336efSEd Maste 			break;
44495f2336efSEd Maste 		};
44505f2336efSEd Maste 		break;
44515f2336efSEd Maste 	/* linux_setfsgid */
44525f2336efSEd Maste 	case 152:
44535f2336efSEd Maste 		switch (ndx) {
44545f2336efSEd Maste 		case 0:
44555f2336efSEd Maste 			p = "l_gid_t";
44565f2336efSEd Maste 			break;
44575f2336efSEd Maste 		default:
44585f2336efSEd Maste 			break;
44595f2336efSEd Maste 		};
44605f2336efSEd Maste 		break;
44615f2336efSEd Maste 	/* linux_times */
44625f2336efSEd Maste 	case 153:
44635f2336efSEd Maste 		switch (ndx) {
44645f2336efSEd Maste 		case 0:
44655f2336efSEd Maste 			p = "userland struct l_times_argv *";
44665f2336efSEd Maste 			break;
44675f2336efSEd Maste 		default:
44685f2336efSEd Maste 			break;
44695f2336efSEd Maste 		};
44705f2336efSEd Maste 		break;
44715f2336efSEd Maste 	/* setpgid */
44725f2336efSEd Maste 	case 154:
44735f2336efSEd Maste 		switch (ndx) {
44745f2336efSEd Maste 		case 0:
44755f2336efSEd Maste 			p = "int";
44765f2336efSEd Maste 			break;
44775f2336efSEd Maste 		case 1:
44785f2336efSEd Maste 			p = "int";
44795f2336efSEd Maste 			break;
44805f2336efSEd Maste 		default:
44815f2336efSEd Maste 			break;
44825f2336efSEd Maste 		};
44835f2336efSEd Maste 		break;
44845f2336efSEd Maste 	/* getpgid */
44855f2336efSEd Maste 	case 155:
44865f2336efSEd Maste 		switch (ndx) {
44875f2336efSEd Maste 		case 0:
44885f2336efSEd Maste 			p = "int";
44895f2336efSEd Maste 			break;
44905f2336efSEd Maste 		default:
44915f2336efSEd Maste 			break;
44925f2336efSEd Maste 		};
44935f2336efSEd Maste 		break;
44945f2336efSEd Maste 	/* linux_getsid */
44955f2336efSEd Maste 	case 156:
44965f2336efSEd Maste 		switch (ndx) {
44975f2336efSEd Maste 		case 0:
44985f2336efSEd Maste 			p = "l_pid_t";
44995f2336efSEd Maste 			break;
45005f2336efSEd Maste 		default:
45015f2336efSEd Maste 			break;
45025f2336efSEd Maste 		};
45035f2336efSEd Maste 		break;
45045f2336efSEd Maste 	/* setsid */
45055f2336efSEd Maste 	case 157:
45065f2336efSEd Maste 		break;
45075f2336efSEd Maste 	/* linux_getgroups */
45085f2336efSEd Maste 	case 158:
45095f2336efSEd Maste 		switch (ndx) {
45105f2336efSEd Maste 		case 0:
45115f2336efSEd Maste 			p = "l_int";
45125f2336efSEd Maste 			break;
45135f2336efSEd Maste 		case 1:
45145f2336efSEd Maste 			p = "userland l_gid_t *";
45155f2336efSEd Maste 			break;
45165f2336efSEd Maste 		default:
45175f2336efSEd Maste 			break;
45185f2336efSEd Maste 		};
45195f2336efSEd Maste 		break;
45205f2336efSEd Maste 	/* linux_setgroups */
45215f2336efSEd Maste 	case 159:
45225f2336efSEd Maste 		switch (ndx) {
45235f2336efSEd Maste 		case 0:
45245f2336efSEd Maste 			p = "l_int";
45255f2336efSEd Maste 			break;
45265f2336efSEd Maste 		case 1:
45275f2336efSEd Maste 			p = "userland l_gid_t *";
45285f2336efSEd Maste 			break;
45295f2336efSEd Maste 		default:
45305f2336efSEd Maste 			break;
45315f2336efSEd Maste 		};
45325f2336efSEd Maste 		break;
45335f2336efSEd Maste 	/* linux_newuname */
45345f2336efSEd Maste 	case 160:
45355f2336efSEd Maste 		switch (ndx) {
45365f2336efSEd Maste 		case 0:
45375f2336efSEd Maste 			p = "userland struct l_new_utsname *";
45385f2336efSEd Maste 			break;
45395f2336efSEd Maste 		default:
45405f2336efSEd Maste 			break;
45415f2336efSEd Maste 		};
45425f2336efSEd Maste 		break;
45435f2336efSEd Maste 	/* linux_sethostname */
45445f2336efSEd Maste 	case 161:
45455f2336efSEd Maste 		switch (ndx) {
45465f2336efSEd Maste 		case 0:
45475f2336efSEd Maste 			p = "userland char *";
45485f2336efSEd Maste 			break;
45495f2336efSEd Maste 		case 1:
45505f2336efSEd Maste 			p = "l_uint";
45515f2336efSEd Maste 			break;
45525f2336efSEd Maste 		default:
45535f2336efSEd Maste 			break;
45545f2336efSEd Maste 		};
45555f2336efSEd Maste 		break;
45565f2336efSEd Maste 	/* linux_setdomainname */
45575f2336efSEd Maste 	case 162:
45585f2336efSEd Maste 		switch (ndx) {
45595f2336efSEd Maste 		case 0:
45605f2336efSEd Maste 			p = "userland char *";
45615f2336efSEd Maste 			break;
45625f2336efSEd Maste 		case 1:
45635f2336efSEd Maste 			p = "l_int";
45645f2336efSEd Maste 			break;
45655f2336efSEd Maste 		default:
45665f2336efSEd Maste 			break;
45675f2336efSEd Maste 		};
45685f2336efSEd Maste 		break;
45695f2336efSEd Maste 	/* linux_getrlimit */
45705f2336efSEd Maste 	case 163:
45715f2336efSEd Maste 		switch (ndx) {
45725f2336efSEd Maste 		case 0:
45735f2336efSEd Maste 			p = "l_uint";
45745f2336efSEd Maste 			break;
45755f2336efSEd Maste 		case 1:
45765f2336efSEd Maste 			p = "userland struct l_rlimit *";
45775f2336efSEd Maste 			break;
45785f2336efSEd Maste 		default:
45795f2336efSEd Maste 			break;
45805f2336efSEd Maste 		};
45815f2336efSEd Maste 		break;
45825f2336efSEd Maste 	/* linux_setrlimit */
45835f2336efSEd Maste 	case 164:
45845f2336efSEd Maste 		switch (ndx) {
45855f2336efSEd Maste 		case 0:
45865f2336efSEd Maste 			p = "l_uint";
45875f2336efSEd Maste 			break;
45885f2336efSEd Maste 		case 1:
45895f2336efSEd Maste 			p = "userland struct l_rlimit *";
45905f2336efSEd Maste 			break;
45915f2336efSEd Maste 		default:
45925f2336efSEd Maste 			break;
45935f2336efSEd Maste 		};
45945f2336efSEd Maste 		break;
45955f2336efSEd Maste 	/* getrusage */
45965f2336efSEd Maste 	case 165:
45975f2336efSEd Maste 		switch (ndx) {
45985f2336efSEd Maste 		case 0:
45995f2336efSEd Maste 			p = "int";
46005f2336efSEd Maste 			break;
46015f2336efSEd Maste 		case 1:
46025f2336efSEd Maste 			p = "userland struct rusage *";
46035f2336efSEd Maste 			break;
46045f2336efSEd Maste 		default:
46055f2336efSEd Maste 			break;
46065f2336efSEd Maste 		};
46075f2336efSEd Maste 		break;
46085f2336efSEd Maste 	/* umask */
46095f2336efSEd Maste 	case 166:
46105f2336efSEd Maste 		switch (ndx) {
46115f2336efSEd Maste 		case 0:
46125f2336efSEd Maste 			p = "int";
46135f2336efSEd Maste 			break;
46145f2336efSEd Maste 		default:
46155f2336efSEd Maste 			break;
46165f2336efSEd Maste 		};
46175f2336efSEd Maste 		break;
46185f2336efSEd Maste 	/* linux_prctl */
46195f2336efSEd Maste 	case 167:
46205f2336efSEd Maste 		switch (ndx) {
46215f2336efSEd Maste 		case 0:
46225f2336efSEd Maste 			p = "l_int";
46235f2336efSEd Maste 			break;
46245f2336efSEd Maste 		case 1:
46255f2336efSEd Maste 			p = "l_uintptr_t";
46265f2336efSEd Maste 			break;
46275f2336efSEd Maste 		case 2:
46285f2336efSEd Maste 			p = "l_uintptr_t";
46295f2336efSEd Maste 			break;
46305f2336efSEd Maste 		case 3:
46315f2336efSEd Maste 			p = "l_uintptr_t";
46325f2336efSEd Maste 			break;
46335f2336efSEd Maste 		case 4:
46345f2336efSEd Maste 			p = "l_uintptr_t";
46355f2336efSEd Maste 			break;
46365f2336efSEd Maste 		default:
46375f2336efSEd Maste 			break;
46385f2336efSEd Maste 		};
46395f2336efSEd Maste 		break;
46405f2336efSEd Maste 	/* linux_getcpu */
46415f2336efSEd Maste 	case 168:
46425f2336efSEd Maste 		switch (ndx) {
46435f2336efSEd Maste 		case 0:
46445f2336efSEd Maste 			p = "userland l_uint *";
46455f2336efSEd Maste 			break;
46465f2336efSEd Maste 		case 1:
46475f2336efSEd Maste 			p = "userland l_uint *";
46485f2336efSEd Maste 			break;
46495f2336efSEd Maste 		case 2:
46505f2336efSEd Maste 			p = "userland void *";
46515f2336efSEd Maste 			break;
46525f2336efSEd Maste 		default:
46535f2336efSEd Maste 			break;
46545f2336efSEd Maste 		};
46555f2336efSEd Maste 		break;
46565f2336efSEd Maste 	/* gettimeofday */
46575f2336efSEd Maste 	case 169:
46585f2336efSEd Maste 		switch (ndx) {
46595f2336efSEd Maste 		case 0:
46605f2336efSEd Maste 			p = "userland struct l_timeval *";
46615f2336efSEd Maste 			break;
46625f2336efSEd Maste 		case 1:
46635f2336efSEd Maste 			p = "userland struct timezone *";
46645f2336efSEd Maste 			break;
46655f2336efSEd Maste 		default:
46665f2336efSEd Maste 			break;
46675f2336efSEd Maste 		};
46685f2336efSEd Maste 		break;
46695f2336efSEd Maste 	/* settimeofday */
46705f2336efSEd Maste 	case 170:
46715f2336efSEd Maste 		switch (ndx) {
46725f2336efSEd Maste 		case 0:
46735f2336efSEd Maste 			p = "userland struct l_timeval *";
46745f2336efSEd Maste 			break;
46755f2336efSEd Maste 		case 1:
46765f2336efSEd Maste 			p = "userland struct timezone *";
46775f2336efSEd Maste 			break;
46785f2336efSEd Maste 		default:
46795f2336efSEd Maste 			break;
46805f2336efSEd Maste 		};
46815f2336efSEd Maste 		break;
46825f2336efSEd Maste 	/* linux_adjtimex */
46835f2336efSEd Maste 	case 171:
46845f2336efSEd Maste 		break;
46855f2336efSEd Maste 	/* linux_getpid */
46865f2336efSEd Maste 	case 172:
46875f2336efSEd Maste 		break;
46885f2336efSEd Maste 	/* linux_getppid */
46895f2336efSEd Maste 	case 173:
46905f2336efSEd Maste 		break;
46915f2336efSEd Maste 	/* linux_getuid */
46925f2336efSEd Maste 	case 174:
46935f2336efSEd Maste 		break;
46945f2336efSEd Maste 	/* geteuid */
46955f2336efSEd Maste 	case 175:
46965f2336efSEd Maste 		break;
46975f2336efSEd Maste 	/* linux_getgid */
46985f2336efSEd Maste 	case 176:
46995f2336efSEd Maste 		break;
47005f2336efSEd Maste 	/* getegid */
47015f2336efSEd Maste 	case 177:
47025f2336efSEd Maste 		break;
47035f2336efSEd Maste 	/* linux_gettid */
47045f2336efSEd Maste 	case 178:
47055f2336efSEd Maste 		break;
47065f2336efSEd Maste 	/* linux_sysinfo */
47075f2336efSEd Maste 	case 179:
47085f2336efSEd Maste 		switch (ndx) {
47095f2336efSEd Maste 		case 0:
47105f2336efSEd Maste 			p = "userland struct l_sysinfo *";
47115f2336efSEd Maste 			break;
47125f2336efSEd Maste 		default:
47135f2336efSEd Maste 			break;
47145f2336efSEd Maste 		};
47155f2336efSEd Maste 		break;
47165f2336efSEd Maste 	/* linux_mq_open */
47175f2336efSEd Maste 	case 180:
4718a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
4719a39cdcd7SEdward Tomasz Napierala 		case 0:
4720a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
4721a39cdcd7SEdward Tomasz Napierala 			break;
4722a39cdcd7SEdward Tomasz Napierala 		case 1:
4723a39cdcd7SEdward Tomasz Napierala 			p = "l_int";
4724a39cdcd7SEdward Tomasz Napierala 			break;
4725a39cdcd7SEdward Tomasz Napierala 		case 2:
4726a39cdcd7SEdward Tomasz Napierala 			p = "l_mode_t";
4727a39cdcd7SEdward Tomasz Napierala 			break;
4728a39cdcd7SEdward Tomasz Napierala 		case 3:
4729a39cdcd7SEdward Tomasz Napierala 			p = "userland struct mq_attr *";
4730a39cdcd7SEdward Tomasz Napierala 			break;
4731a39cdcd7SEdward Tomasz Napierala 		default:
4732a39cdcd7SEdward Tomasz Napierala 			break;
4733a39cdcd7SEdward Tomasz Napierala 		};
47345f2336efSEd Maste 		break;
47355f2336efSEd Maste 	/* linux_mq_unlink */
47365f2336efSEd Maste 	case 181:
4737a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
4738a39cdcd7SEdward Tomasz Napierala 		case 0:
4739a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
4740a39cdcd7SEdward Tomasz Napierala 			break;
4741a39cdcd7SEdward Tomasz Napierala 		default:
4742a39cdcd7SEdward Tomasz Napierala 			break;
4743a39cdcd7SEdward Tomasz Napierala 		};
47445f2336efSEd Maste 		break;
47455f2336efSEd Maste 	/* linux_mq_timedsend */
47465f2336efSEd Maste 	case 182:
4747a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
4748a39cdcd7SEdward Tomasz Napierala 		case 0:
4749a39cdcd7SEdward Tomasz Napierala 			p = "l_mqd_t";
4750a39cdcd7SEdward Tomasz Napierala 			break;
4751a39cdcd7SEdward Tomasz Napierala 		case 1:
4752a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
4753a39cdcd7SEdward Tomasz Napierala 			break;
4754a39cdcd7SEdward Tomasz Napierala 		case 2:
4755a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
4756a39cdcd7SEdward Tomasz Napierala 			break;
4757a39cdcd7SEdward Tomasz Napierala 		case 3:
4758a39cdcd7SEdward Tomasz Napierala 			p = "l_uint";
4759a39cdcd7SEdward Tomasz Napierala 			break;
4760a39cdcd7SEdward Tomasz Napierala 		case 4:
4761a39cdcd7SEdward Tomasz Napierala 			p = "userland const struct l_timespec *";
4762a39cdcd7SEdward Tomasz Napierala 			break;
4763a39cdcd7SEdward Tomasz Napierala 		default:
4764a39cdcd7SEdward Tomasz Napierala 			break;
4765a39cdcd7SEdward Tomasz Napierala 		};
47665f2336efSEd Maste 		break;
47675f2336efSEd Maste 	/* linux_mq_timedreceive */
47685f2336efSEd Maste 	case 183:
4769a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
4770a39cdcd7SEdward Tomasz Napierala 		case 0:
4771a39cdcd7SEdward Tomasz Napierala 			p = "l_mqd_t";
4772a39cdcd7SEdward Tomasz Napierala 			break;
4773a39cdcd7SEdward Tomasz Napierala 		case 1:
4774a39cdcd7SEdward Tomasz Napierala 			p = "userland char *";
4775a39cdcd7SEdward Tomasz Napierala 			break;
4776a39cdcd7SEdward Tomasz Napierala 		case 2:
4777a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
4778a39cdcd7SEdward Tomasz Napierala 			break;
4779a39cdcd7SEdward Tomasz Napierala 		case 3:
4780a39cdcd7SEdward Tomasz Napierala 			p = "userland l_uint *";
4781a39cdcd7SEdward Tomasz Napierala 			break;
4782a39cdcd7SEdward Tomasz Napierala 		case 4:
4783a39cdcd7SEdward Tomasz Napierala 			p = "userland const struct l_timespec *";
4784a39cdcd7SEdward Tomasz Napierala 			break;
4785a39cdcd7SEdward Tomasz Napierala 		default:
4786a39cdcd7SEdward Tomasz Napierala 			break;
4787a39cdcd7SEdward Tomasz Napierala 		};
47885f2336efSEd Maste 		break;
47895f2336efSEd Maste 	/* linux_mq_notify */
47905f2336efSEd Maste 	case 184:
4791a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
4792a39cdcd7SEdward Tomasz Napierala 		case 0:
4793a39cdcd7SEdward Tomasz Napierala 			p = "l_mqd_t";
4794a39cdcd7SEdward Tomasz Napierala 			break;
4795a39cdcd7SEdward Tomasz Napierala 		case 1:
4796bedbaee8SWarner Losh 			p = "userland const struct l_sigevent *";
4797a39cdcd7SEdward Tomasz Napierala 			break;
4798a39cdcd7SEdward Tomasz Napierala 		default:
4799a39cdcd7SEdward Tomasz Napierala 			break;
4800a39cdcd7SEdward Tomasz Napierala 		};
48015f2336efSEd Maste 		break;
48025f2336efSEd Maste 	/* linux_mq_getsetattr */
48035f2336efSEd Maste 	case 185:
4804a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
4805a39cdcd7SEdward Tomasz Napierala 		case 0:
4806a39cdcd7SEdward Tomasz Napierala 			p = "l_mqd_t";
4807a39cdcd7SEdward Tomasz Napierala 			break;
4808a39cdcd7SEdward Tomasz Napierala 		case 1:
4809a39cdcd7SEdward Tomasz Napierala 			p = "userland const struct mq_attr *";
4810a39cdcd7SEdward Tomasz Napierala 			break;
4811a39cdcd7SEdward Tomasz Napierala 		case 2:
4812a39cdcd7SEdward Tomasz Napierala 			p = "userland struct mq_attr *";
4813a39cdcd7SEdward Tomasz Napierala 			break;
4814a39cdcd7SEdward Tomasz Napierala 		default:
4815a39cdcd7SEdward Tomasz Napierala 			break;
4816a39cdcd7SEdward Tomasz Napierala 		};
48175f2336efSEd Maste 		break;
48185f2336efSEd Maste 	/* linux_msgget */
48195f2336efSEd Maste 	case 186:
48205f2336efSEd Maste 		switch (ndx) {
48215f2336efSEd Maste 		case 0:
48225f2336efSEd Maste 			p = "l_key_t";
48235f2336efSEd Maste 			break;
48245f2336efSEd Maste 		case 1:
48255f2336efSEd Maste 			p = "l_int";
48265f2336efSEd Maste 			break;
48275f2336efSEd Maste 		default:
48285f2336efSEd Maste 			break;
48295f2336efSEd Maste 		};
48305f2336efSEd Maste 		break;
48315f2336efSEd Maste 	/* linux_msgctl */
48325f2336efSEd Maste 	case 187:
48335f2336efSEd Maste 		switch (ndx) {
48345f2336efSEd Maste 		case 0:
48355f2336efSEd Maste 			p = "l_int";
48365f2336efSEd Maste 			break;
48375f2336efSEd Maste 		case 1:
48385f2336efSEd Maste 			p = "l_int";
48395f2336efSEd Maste 			break;
48405f2336efSEd Maste 		case 2:
48415f2336efSEd Maste 			p = "userland struct l_msqid_ds *";
48425f2336efSEd Maste 			break;
48435f2336efSEd Maste 		default:
48445f2336efSEd Maste 			break;
48455f2336efSEd Maste 		};
48465f2336efSEd Maste 		break;
48475f2336efSEd Maste 	/* linux_msgrcv */
48485f2336efSEd Maste 	case 188:
48495f2336efSEd Maste 		switch (ndx) {
48505f2336efSEd Maste 		case 0:
48515f2336efSEd Maste 			p = "l_int";
48525f2336efSEd Maste 			break;
48535f2336efSEd Maste 		case 1:
48545f2336efSEd Maste 			p = "userland struct l_msgbuf *";
48555f2336efSEd Maste 			break;
48565f2336efSEd Maste 		case 2:
48575f2336efSEd Maste 			p = "l_size_t";
48585f2336efSEd Maste 			break;
48595f2336efSEd Maste 		case 3:
48605f2336efSEd Maste 			p = "l_long";
48615f2336efSEd Maste 			break;
48625f2336efSEd Maste 		case 4:
48635f2336efSEd Maste 			p = "l_int";
48645f2336efSEd Maste 			break;
48655f2336efSEd Maste 		default:
48665f2336efSEd Maste 			break;
48675f2336efSEd Maste 		};
48685f2336efSEd Maste 		break;
48695f2336efSEd Maste 	/* linux_msgsnd */
48705f2336efSEd Maste 	case 189:
48715f2336efSEd Maste 		switch (ndx) {
48725f2336efSEd Maste 		case 0:
48735f2336efSEd Maste 			p = "l_int";
48745f2336efSEd Maste 			break;
48755f2336efSEd Maste 		case 1:
48765f2336efSEd Maste 			p = "userland struct l_msgbuf *";
48775f2336efSEd Maste 			break;
48785f2336efSEd Maste 		case 2:
48795f2336efSEd Maste 			p = "l_size_t";
48805f2336efSEd Maste 			break;
48815f2336efSEd Maste 		case 3:
48825f2336efSEd Maste 			p = "l_int";
48835f2336efSEd Maste 			break;
48845f2336efSEd Maste 		default:
48855f2336efSEd Maste 			break;
48865f2336efSEd Maste 		};
48875f2336efSEd Maste 		break;
48885f2336efSEd Maste 	/* linux_semget */
48895f2336efSEd Maste 	case 190:
48905f2336efSEd Maste 		switch (ndx) {
48915f2336efSEd Maste 		case 0:
48925f2336efSEd Maste 			p = "l_key_t";
48935f2336efSEd Maste 			break;
48945f2336efSEd Maste 		case 1:
48955f2336efSEd Maste 			p = "l_int";
48965f2336efSEd Maste 			break;
48975f2336efSEd Maste 		case 2:
48985f2336efSEd Maste 			p = "l_int";
48995f2336efSEd Maste 			break;
49005f2336efSEd Maste 		default:
49015f2336efSEd Maste 			break;
49025f2336efSEd Maste 		};
49035f2336efSEd Maste 		break;
49045f2336efSEd Maste 	/* linux_semctl */
49055f2336efSEd Maste 	case 191:
49065f2336efSEd Maste 		switch (ndx) {
49075f2336efSEd Maste 		case 0:
49085f2336efSEd Maste 			p = "l_int";
49095f2336efSEd Maste 			break;
49105f2336efSEd Maste 		case 1:
49115f2336efSEd Maste 			p = "l_int";
49125f2336efSEd Maste 			break;
49135f2336efSEd Maste 		case 2:
49145f2336efSEd Maste 			p = "l_int";
49155f2336efSEd Maste 			break;
49165f2336efSEd Maste 		case 3:
49175f2336efSEd Maste 			p = "union l_semun";
49185f2336efSEd Maste 			break;
49195f2336efSEd Maste 		default:
49205f2336efSEd Maste 			break;
49215f2336efSEd Maste 		};
49225f2336efSEd Maste 		break;
49235f2336efSEd Maste 	/* linux_semtimedop */
49245f2336efSEd Maste 	case 192:
4925430460d7SDmitry Chagin 		switch (ndx) {
4926430460d7SDmitry Chagin 		case 0:
4927430460d7SDmitry Chagin 			p = "l_int";
4928430460d7SDmitry Chagin 			break;
4929430460d7SDmitry Chagin 		case 1:
4930430460d7SDmitry Chagin 			p = "userland struct sembuf *";
4931430460d7SDmitry Chagin 			break;
4932430460d7SDmitry Chagin 		case 2:
4933430460d7SDmitry Chagin 			p = "l_size_t";
4934430460d7SDmitry Chagin 			break;
4935430460d7SDmitry Chagin 		case 3:
4936430460d7SDmitry Chagin 			p = "userland struct l_timespec *";
4937430460d7SDmitry Chagin 			break;
4938430460d7SDmitry Chagin 		default:
4939430460d7SDmitry Chagin 			break;
4940430460d7SDmitry Chagin 		};
49415f2336efSEd Maste 		break;
4942cd875998SDmitry Chagin 	/* semop */
49435f2336efSEd Maste 	case 193:
49445f2336efSEd Maste 		switch (ndx) {
49455f2336efSEd Maste 		case 0:
49465f2336efSEd Maste 			p = "l_int";
49475f2336efSEd Maste 			break;
49485f2336efSEd Maste 		case 1:
4949cd875998SDmitry Chagin 			p = "userland struct sembuf *";
49505f2336efSEd Maste 			break;
49515f2336efSEd Maste 		case 2:
4952cd875998SDmitry Chagin 			p = "l_size_t";
49535f2336efSEd Maste 			break;
49545f2336efSEd Maste 		default:
49555f2336efSEd Maste 			break;
49565f2336efSEd Maste 		};
49575f2336efSEd Maste 		break;
49585f2336efSEd Maste 	/* linux_shmget */
49595f2336efSEd Maste 	case 194:
49605f2336efSEd Maste 		switch (ndx) {
49615f2336efSEd Maste 		case 0:
49625f2336efSEd Maste 			p = "l_key_t";
49635f2336efSEd Maste 			break;
49645f2336efSEd Maste 		case 1:
49655f2336efSEd Maste 			p = "l_size_t";
49665f2336efSEd Maste 			break;
49675f2336efSEd Maste 		case 2:
49685f2336efSEd Maste 			p = "l_int";
49695f2336efSEd Maste 			break;
49705f2336efSEd Maste 		default:
49715f2336efSEd Maste 			break;
49725f2336efSEd Maste 		};
49735f2336efSEd Maste 		break;
49745f2336efSEd Maste 	/* linux_shmctl */
49755f2336efSEd Maste 	case 195:
49765f2336efSEd Maste 		switch (ndx) {
49775f2336efSEd Maste 		case 0:
49785f2336efSEd Maste 			p = "l_int";
49795f2336efSEd Maste 			break;
49805f2336efSEd Maste 		case 1:
49815f2336efSEd Maste 			p = "l_int";
49825f2336efSEd Maste 			break;
49835f2336efSEd Maste 		case 2:
49845f2336efSEd Maste 			p = "userland struct l_shmid_ds *";
49855f2336efSEd Maste 			break;
49865f2336efSEd Maste 		default:
49875f2336efSEd Maste 			break;
49885f2336efSEd Maste 		};
49895f2336efSEd Maste 		break;
49905f2336efSEd Maste 	/* linux_shmat */
49915f2336efSEd Maste 	case 196:
49925f2336efSEd Maste 		switch (ndx) {
49935f2336efSEd Maste 		case 0:
49945f2336efSEd Maste 			p = "l_int";
49955f2336efSEd Maste 			break;
49965f2336efSEd Maste 		case 1:
49975f2336efSEd Maste 			p = "userland char *";
49985f2336efSEd Maste 			break;
49995f2336efSEd Maste 		case 2:
50005f2336efSEd Maste 			p = "l_int";
50015f2336efSEd Maste 			break;
50025f2336efSEd Maste 		default:
50035f2336efSEd Maste 			break;
50045f2336efSEd Maste 		};
50055f2336efSEd Maste 		break;
50065f2336efSEd Maste 	/* linux_shmdt */
50075f2336efSEd Maste 	case 197:
50085f2336efSEd Maste 		switch (ndx) {
50095f2336efSEd Maste 		case 0:
50105f2336efSEd Maste 			p = "userland char *";
50115f2336efSEd Maste 			break;
50125f2336efSEd Maste 		default:
50135f2336efSEd Maste 			break;
50145f2336efSEd Maste 		};
50155f2336efSEd Maste 		break;
50165f2336efSEd Maste 	/* linux_socket */
50175f2336efSEd Maste 	case 198:
50185f2336efSEd Maste 		switch (ndx) {
50195f2336efSEd Maste 		case 0:
50205f2336efSEd Maste 			p = "l_int";
50215f2336efSEd Maste 			break;
50225f2336efSEd Maste 		case 1:
50235f2336efSEd Maste 			p = "l_int";
50245f2336efSEd Maste 			break;
50255f2336efSEd Maste 		case 2:
50265f2336efSEd Maste 			p = "l_int";
50275f2336efSEd Maste 			break;
50285f2336efSEd Maste 		default:
50295f2336efSEd Maste 			break;
50305f2336efSEd Maste 		};
50315f2336efSEd Maste 		break;
50325f2336efSEd Maste 	/* linux_socketpair */
50335f2336efSEd Maste 	case 199:
50345f2336efSEd Maste 		switch (ndx) {
50355f2336efSEd Maste 		case 0:
50365f2336efSEd Maste 			p = "l_int";
50375f2336efSEd Maste 			break;
50385f2336efSEd Maste 		case 1:
50395f2336efSEd Maste 			p = "l_int";
50405f2336efSEd Maste 			break;
50415f2336efSEd Maste 		case 2:
50425f2336efSEd Maste 			p = "l_int";
50435f2336efSEd Maste 			break;
50445f2336efSEd Maste 		case 3:
50455f2336efSEd Maste 			p = "l_uintptr_t";
50465f2336efSEd Maste 			break;
50475f2336efSEd Maste 		default:
50485f2336efSEd Maste 			break;
50495f2336efSEd Maste 		};
50505f2336efSEd Maste 		break;
50515f2336efSEd Maste 	/* linux_bind */
50525f2336efSEd Maste 	case 200:
50535f2336efSEd Maste 		switch (ndx) {
50545f2336efSEd Maste 		case 0:
50555f2336efSEd Maste 			p = "l_int";
50565f2336efSEd Maste 			break;
50575f2336efSEd Maste 		case 1:
50585f2336efSEd Maste 			p = "l_uintptr_t";
50595f2336efSEd Maste 			break;
50605f2336efSEd Maste 		case 2:
50615f2336efSEd Maste 			p = "l_int";
50625f2336efSEd Maste 			break;
50635f2336efSEd Maste 		default:
50645f2336efSEd Maste 			break;
50655f2336efSEd Maste 		};
50665f2336efSEd Maste 		break;
50675f2336efSEd Maste 	/* linux_listen */
50685f2336efSEd Maste 	case 201:
50695f2336efSEd Maste 		switch (ndx) {
50705f2336efSEd Maste 		case 0:
50715f2336efSEd Maste 			p = "l_int";
50725f2336efSEd Maste 			break;
50735f2336efSEd Maste 		case 1:
50745f2336efSEd Maste 			p = "l_int";
50755f2336efSEd Maste 			break;
50765f2336efSEd Maste 		default:
50775f2336efSEd Maste 			break;
50785f2336efSEd Maste 		};
50795f2336efSEd Maste 		break;
50805f2336efSEd Maste 	/* linux_accept */
50815f2336efSEd Maste 	case 202:
50825f2336efSEd Maste 		switch (ndx) {
50835f2336efSEd Maste 		case 0:
50845f2336efSEd Maste 			p = "l_int";
50855f2336efSEd Maste 			break;
50865f2336efSEd Maste 		case 1:
50875f2336efSEd Maste 			p = "l_uintptr_t";
50885f2336efSEd Maste 			break;
50895f2336efSEd Maste 		case 2:
50905f2336efSEd Maste 			p = "l_uintptr_t";
50915f2336efSEd Maste 			break;
50925f2336efSEd Maste 		default:
50935f2336efSEd Maste 			break;
50945f2336efSEd Maste 		};
50955f2336efSEd Maste 		break;
50965f2336efSEd Maste 	/* linux_connect */
50975f2336efSEd Maste 	case 203:
50985f2336efSEd Maste 		switch (ndx) {
50995f2336efSEd Maste 		case 0:
51005f2336efSEd Maste 			p = "l_int";
51015f2336efSEd Maste 			break;
51025f2336efSEd Maste 		case 1:
51035f2336efSEd Maste 			p = "l_uintptr_t";
51045f2336efSEd Maste 			break;
51055f2336efSEd Maste 		case 2:
51065f2336efSEd Maste 			p = "l_int";
51075f2336efSEd Maste 			break;
51085f2336efSEd Maste 		default:
51095f2336efSEd Maste 			break;
51105f2336efSEd Maste 		};
51115f2336efSEd Maste 		break;
51125f2336efSEd Maste 	/* linux_getsockname */
51135f2336efSEd Maste 	case 204:
51145f2336efSEd Maste 		switch (ndx) {
51155f2336efSEd Maste 		case 0:
51165f2336efSEd Maste 			p = "l_int";
51175f2336efSEd Maste 			break;
51185f2336efSEd Maste 		case 1:
51195f2336efSEd Maste 			p = "l_uintptr_t";
51205f2336efSEd Maste 			break;
51215f2336efSEd Maste 		case 2:
51225f2336efSEd Maste 			p = "l_uintptr_t";
51235f2336efSEd Maste 			break;
51245f2336efSEd Maste 		default:
51255f2336efSEd Maste 			break;
51265f2336efSEd Maste 		};
51275f2336efSEd Maste 		break;
51285f2336efSEd Maste 	/* linux_getpeername */
51295f2336efSEd Maste 	case 205:
51305f2336efSEd Maste 		switch (ndx) {
51315f2336efSEd Maste 		case 0:
51325f2336efSEd Maste 			p = "l_int";
51335f2336efSEd Maste 			break;
51345f2336efSEd Maste 		case 1:
51355f2336efSEd Maste 			p = "l_uintptr_t";
51365f2336efSEd Maste 			break;
51375f2336efSEd Maste 		case 2:
51385f2336efSEd Maste 			p = "l_uintptr_t";
51395f2336efSEd Maste 			break;
51405f2336efSEd Maste 		default:
51415f2336efSEd Maste 			break;
51425f2336efSEd Maste 		};
51435f2336efSEd Maste 		break;
51445f2336efSEd Maste 	/* linux_sendto */
51455f2336efSEd Maste 	case 206:
51465f2336efSEd Maste 		switch (ndx) {
51475f2336efSEd Maste 		case 0:
51485f2336efSEd Maste 			p = "l_int";
51495f2336efSEd Maste 			break;
51505f2336efSEd Maste 		case 1:
51515f2336efSEd Maste 			p = "l_uintptr_t";
51525f2336efSEd Maste 			break;
51535f2336efSEd Maste 		case 2:
5154a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
51555f2336efSEd Maste 			break;
51565f2336efSEd Maste 		case 3:
5157a39cdcd7SEdward Tomasz Napierala 			p = "l_uint";
51585f2336efSEd Maste 			break;
51595f2336efSEd Maste 		case 4:
51605f2336efSEd Maste 			p = "l_uintptr_t";
51615f2336efSEd Maste 			break;
51625f2336efSEd Maste 		case 5:
51635f2336efSEd Maste 			p = "l_int";
51645f2336efSEd Maste 			break;
51655f2336efSEd Maste 		default:
51665f2336efSEd Maste 			break;
51675f2336efSEd Maste 		};
51685f2336efSEd Maste 		break;
51695f2336efSEd Maste 	/* linux_recvfrom */
51705f2336efSEd Maste 	case 207:
51715f2336efSEd Maste 		switch (ndx) {
51725f2336efSEd Maste 		case 0:
51735f2336efSEd Maste 			p = "l_int";
51745f2336efSEd Maste 			break;
51755f2336efSEd Maste 		case 1:
51765f2336efSEd Maste 			p = "l_uintptr_t";
51775f2336efSEd Maste 			break;
51785f2336efSEd Maste 		case 2:
51795f2336efSEd Maste 			p = "l_size_t";
51805f2336efSEd Maste 			break;
51815f2336efSEd Maste 		case 3:
5182a39cdcd7SEdward Tomasz Napierala 			p = "l_uint";
51835f2336efSEd Maste 			break;
51845f2336efSEd Maste 		case 4:
51855f2336efSEd Maste 			p = "l_uintptr_t";
51865f2336efSEd Maste 			break;
51875f2336efSEd Maste 		case 5:
51885f2336efSEd Maste 			p = "l_uintptr_t";
51895f2336efSEd Maste 			break;
51905f2336efSEd Maste 		default:
51915f2336efSEd Maste 			break;
51925f2336efSEd Maste 		};
51935f2336efSEd Maste 		break;
51945f2336efSEd Maste 	/* linux_setsockopt */
51955f2336efSEd Maste 	case 208:
51965f2336efSEd Maste 		switch (ndx) {
51975f2336efSEd Maste 		case 0:
51985f2336efSEd Maste 			p = "l_int";
51995f2336efSEd Maste 			break;
52005f2336efSEd Maste 		case 1:
52015f2336efSEd Maste 			p = "l_int";
52025f2336efSEd Maste 			break;
52035f2336efSEd Maste 		case 2:
52045f2336efSEd Maste 			p = "l_int";
52055f2336efSEd Maste 			break;
52065f2336efSEd Maste 		case 3:
52075f2336efSEd Maste 			p = "l_uintptr_t";
52085f2336efSEd Maste 			break;
52095f2336efSEd Maste 		case 4:
52105f2336efSEd Maste 			p = "l_int";
52115f2336efSEd Maste 			break;
52125f2336efSEd Maste 		default:
52135f2336efSEd Maste 			break;
52145f2336efSEd Maste 		};
52155f2336efSEd Maste 		break;
52165f2336efSEd Maste 	/* linux_getsockopt */
52175f2336efSEd Maste 	case 209:
52185f2336efSEd Maste 		switch (ndx) {
52195f2336efSEd Maste 		case 0:
52205f2336efSEd Maste 			p = "l_int";
52215f2336efSEd Maste 			break;
52225f2336efSEd Maste 		case 1:
52235f2336efSEd Maste 			p = "l_int";
52245f2336efSEd Maste 			break;
52255f2336efSEd Maste 		case 2:
52265f2336efSEd Maste 			p = "l_int";
52275f2336efSEd Maste 			break;
52285f2336efSEd Maste 		case 3:
52295f2336efSEd Maste 			p = "l_uintptr_t";
52305f2336efSEd Maste 			break;
52315f2336efSEd Maste 		case 4:
52325f2336efSEd Maste 			p = "l_uintptr_t";
52335f2336efSEd Maste 			break;
52345f2336efSEd Maste 		default:
52355f2336efSEd Maste 			break;
52365f2336efSEd Maste 		};
52375f2336efSEd Maste 		break;
52385f2336efSEd Maste 	/* linux_shutdown */
52395f2336efSEd Maste 	case 210:
52405f2336efSEd Maste 		switch (ndx) {
52415f2336efSEd Maste 		case 0:
52425f2336efSEd Maste 			p = "l_int";
52435f2336efSEd Maste 			break;
52445f2336efSEd Maste 		case 1:
52455f2336efSEd Maste 			p = "l_int";
52465f2336efSEd Maste 			break;
52475f2336efSEd Maste 		default:
52485f2336efSEd Maste 			break;
52495f2336efSEd Maste 		};
52505f2336efSEd Maste 		break;
52515f2336efSEd Maste 	/* linux_sendmsg */
52525f2336efSEd Maste 	case 211:
52535f2336efSEd Maste 		switch (ndx) {
52545f2336efSEd Maste 		case 0:
52555f2336efSEd Maste 			p = "l_int";
52565f2336efSEd Maste 			break;
52575f2336efSEd Maste 		case 1:
52585f2336efSEd Maste 			p = "l_uintptr_t";
52595f2336efSEd Maste 			break;
52605f2336efSEd Maste 		case 2:
5261a39cdcd7SEdward Tomasz Napierala 			p = "l_uint";
52625f2336efSEd Maste 			break;
52635f2336efSEd Maste 		default:
52645f2336efSEd Maste 			break;
52655f2336efSEd Maste 		};
52665f2336efSEd Maste 		break;
52675f2336efSEd Maste 	/* linux_recvmsg */
52685f2336efSEd Maste 	case 212:
52695f2336efSEd Maste 		switch (ndx) {
52705f2336efSEd Maste 		case 0:
52715f2336efSEd Maste 			p = "l_int";
52725f2336efSEd Maste 			break;
52735f2336efSEd Maste 		case 1:
52745f2336efSEd Maste 			p = "l_uintptr_t";
52755f2336efSEd Maste 			break;
52765f2336efSEd Maste 		case 2:
5277a39cdcd7SEdward Tomasz Napierala 			p = "l_uint";
52785f2336efSEd Maste 			break;
52795f2336efSEd Maste 		default:
52805f2336efSEd Maste 			break;
52815f2336efSEd Maste 		};
52825f2336efSEd Maste 		break;
52835f2336efSEd Maste 	/* linux_brk */
52845f2336efSEd Maste 	case 214:
52855f2336efSEd Maste 		switch (ndx) {
52865f2336efSEd Maste 		case 0:
52875f2336efSEd Maste 			p = "l_ulong";
52885f2336efSEd Maste 			break;
52895f2336efSEd Maste 		default:
52905f2336efSEd Maste 			break;
52915f2336efSEd Maste 		};
52925f2336efSEd Maste 		break;
52935f2336efSEd Maste 	/* munmap */
52945f2336efSEd Maste 	case 215:
52955f2336efSEd Maste 		switch (ndx) {
52965f2336efSEd Maste 		case 0:
5297a39cdcd7SEdward Tomasz Napierala 			p = "userland void *";
52985f2336efSEd Maste 			break;
52995f2336efSEd Maste 		case 1:
5300a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
53015f2336efSEd Maste 			break;
53025f2336efSEd Maste 		default:
53035f2336efSEd Maste 			break;
53045f2336efSEd Maste 		};
53055f2336efSEd Maste 		break;
53065f2336efSEd Maste 	/* linux_mremap */
53075f2336efSEd Maste 	case 216:
53085f2336efSEd Maste 		switch (ndx) {
53095f2336efSEd Maste 		case 0:
53105f2336efSEd Maste 			p = "l_ulong";
53115f2336efSEd Maste 			break;
53125f2336efSEd Maste 		case 1:
53135f2336efSEd Maste 			p = "l_ulong";
53145f2336efSEd Maste 			break;
53155f2336efSEd Maste 		case 2:
53165f2336efSEd Maste 			p = "l_ulong";
53175f2336efSEd Maste 			break;
53185f2336efSEd Maste 		case 3:
53195f2336efSEd Maste 			p = "l_ulong";
53205f2336efSEd Maste 			break;
53215f2336efSEd Maste 		case 4:
53225f2336efSEd Maste 			p = "l_ulong";
53235f2336efSEd Maste 			break;
53245f2336efSEd Maste 		default:
53255f2336efSEd Maste 			break;
53265f2336efSEd Maste 		};
53275f2336efSEd Maste 		break;
53285f2336efSEd Maste 	/* linux_add_key */
53295f2336efSEd Maste 	case 217:
53305f2336efSEd Maste 		break;
53315f2336efSEd Maste 	/* linux_request_key */
53325f2336efSEd Maste 	case 218:
53335f2336efSEd Maste 		break;
53345f2336efSEd Maste 	/* linux_keyctl */
53355f2336efSEd Maste 	case 219:
53365f2336efSEd Maste 		break;
53375f2336efSEd Maste 	/* linux_clone */
53385f2336efSEd Maste 	case 220:
53395f2336efSEd Maste 		switch (ndx) {
53405f2336efSEd Maste 		case 0:
5341a39cdcd7SEdward Tomasz Napierala 			p = "l_ulong";
53425f2336efSEd Maste 			break;
53435f2336efSEd Maste 		case 1:
53440c08f34fSDmitry Chagin 			p = "l_ulong";
53455f2336efSEd Maste 			break;
53465f2336efSEd Maste 		case 2:
53470c08f34fSDmitry Chagin 			p = "userland l_int *";
53485f2336efSEd Maste 			break;
53495f2336efSEd Maste 		case 3:
53500c08f34fSDmitry Chagin 			p = "l_ulong";
53515f2336efSEd Maste 			break;
53525f2336efSEd Maste 		case 4:
53530c08f34fSDmitry Chagin 			p = "userland l_int *";
53545f2336efSEd Maste 			break;
53555f2336efSEd Maste 		default:
53565f2336efSEd Maste 			break;
53575f2336efSEd Maste 		};
53585f2336efSEd Maste 		break;
53595f2336efSEd Maste 	/* linux_execve */
53605f2336efSEd Maste 	case 221:
53615f2336efSEd Maste 		switch (ndx) {
53625f2336efSEd Maste 		case 0:
53635f2336efSEd Maste 			p = "userland char *";
53645f2336efSEd Maste 			break;
53655f2336efSEd Maste 		case 1:
5366eb98f779SDmitry Chagin 			p = "userland l_uintptr_t *";
53675f2336efSEd Maste 			break;
53685f2336efSEd Maste 		case 2:
5369eb98f779SDmitry Chagin 			p = "userland l_uintptr_t *";
53705f2336efSEd Maste 			break;
53715f2336efSEd Maste 		default:
53725f2336efSEd Maste 			break;
53735f2336efSEd Maste 		};
53745f2336efSEd Maste 		break;
53755f2336efSEd Maste 	/* linux_mmap2 */
53765f2336efSEd Maste 	case 222:
53775f2336efSEd Maste 		switch (ndx) {
53785f2336efSEd Maste 		case 0:
53795f2336efSEd Maste 			p = "l_ulong";
53805f2336efSEd Maste 			break;
53815f2336efSEd Maste 		case 1:
53825f2336efSEd Maste 			p = "l_ulong";
53835f2336efSEd Maste 			break;
53845f2336efSEd Maste 		case 2:
53855f2336efSEd Maste 			p = "l_ulong";
53865f2336efSEd Maste 			break;
53875f2336efSEd Maste 		case 3:
53885f2336efSEd Maste 			p = "l_ulong";
53895f2336efSEd Maste 			break;
53905f2336efSEd Maste 		case 4:
53915f2336efSEd Maste 			p = "l_ulong";
53925f2336efSEd Maste 			break;
53935f2336efSEd Maste 		case 5:
53945f2336efSEd Maste 			p = "l_ulong";
53955f2336efSEd Maste 			break;
53965f2336efSEd Maste 		default:
53975f2336efSEd Maste 			break;
53985f2336efSEd Maste 		};
53995f2336efSEd Maste 		break;
54005f2336efSEd Maste 	/* linux_fadvise64 */
54015f2336efSEd Maste 	case 223:
54025f2336efSEd Maste 		switch (ndx) {
54035f2336efSEd Maste 		case 0:
54045f2336efSEd Maste 			p = "l_int";
54055f2336efSEd Maste 			break;
54065f2336efSEd Maste 		case 1:
54075f2336efSEd Maste 			p = "l_loff_t";
54085f2336efSEd Maste 			break;
54095f2336efSEd Maste 		case 2:
54105f2336efSEd Maste 			p = "l_size_t";
54115f2336efSEd Maste 			break;
54125f2336efSEd Maste 		case 3:
54135f2336efSEd Maste 			p = "l_int";
54145f2336efSEd Maste 			break;
54155f2336efSEd Maste 		default:
54165f2336efSEd Maste 			break;
54175f2336efSEd Maste 		};
54185f2336efSEd Maste 		break;
54195f2336efSEd Maste 	/* swapon */
54205f2336efSEd Maste 	case 224:
54215f2336efSEd Maste 		switch (ndx) {
54225f2336efSEd Maste 		case 0:
54235f2336efSEd Maste 			p = "userland char *";
54245f2336efSEd Maste 			break;
54255f2336efSEd Maste 		default:
54265f2336efSEd Maste 			break;
54275f2336efSEd Maste 		};
54285f2336efSEd Maste 		break;
54295f2336efSEd Maste 	/* linux_swapoff */
54305f2336efSEd Maste 	case 225:
54315f2336efSEd Maste 		break;
54325f2336efSEd Maste 	/* linux_mprotect */
54335f2336efSEd Maste 	case 226:
54345f2336efSEd Maste 		switch (ndx) {
54355f2336efSEd Maste 		case 0:
5436a39cdcd7SEdward Tomasz Napierala 			p = "l_ulong";
54375f2336efSEd Maste 			break;
54385f2336efSEd Maste 		case 1:
5439a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
54405f2336efSEd Maste 			break;
54415f2336efSEd Maste 		case 2:
5442a39cdcd7SEdward Tomasz Napierala 			p = "l_ulong";
54435f2336efSEd Maste 			break;
54445f2336efSEd Maste 		default:
54455f2336efSEd Maste 			break;
54465f2336efSEd Maste 		};
54475f2336efSEd Maste 		break;
54485f2336efSEd Maste 	/* linux_msync */
54495f2336efSEd Maste 	case 227:
54505f2336efSEd Maste 		switch (ndx) {
54515f2336efSEd Maste 		case 0:
54525f2336efSEd Maste 			p = "l_ulong";
54535f2336efSEd Maste 			break;
54545f2336efSEd Maste 		case 1:
54555f2336efSEd Maste 			p = "l_size_t";
54565f2336efSEd Maste 			break;
54575f2336efSEd Maste 		case 2:
54585f2336efSEd Maste 			p = "l_int";
54595f2336efSEd Maste 			break;
54605f2336efSEd Maste 		default:
54615f2336efSEd Maste 			break;
54625f2336efSEd Maste 		};
54635f2336efSEd Maste 		break;
54645f2336efSEd Maste 	/* mlock */
54655f2336efSEd Maste 	case 228:
54665f2336efSEd Maste 		switch (ndx) {
54675f2336efSEd Maste 		case 0:
54685f2336efSEd Maste 			p = "userland const void *";
54695f2336efSEd Maste 			break;
54705f2336efSEd Maste 		case 1:
54715f2336efSEd Maste 			p = "size_t";
54725f2336efSEd Maste 			break;
54735f2336efSEd Maste 		default:
54745f2336efSEd Maste 			break;
54755f2336efSEd Maste 		};
54765f2336efSEd Maste 		break;
54775f2336efSEd Maste 	/* munlock */
54785f2336efSEd Maste 	case 229:
54795f2336efSEd Maste 		switch (ndx) {
54805f2336efSEd Maste 		case 0:
54815f2336efSEd Maste 			p = "userland const void *";
54825f2336efSEd Maste 			break;
54835f2336efSEd Maste 		case 1:
54845f2336efSEd Maste 			p = "size_t";
54855f2336efSEd Maste 			break;
54865f2336efSEd Maste 		default:
54875f2336efSEd Maste 			break;
54885f2336efSEd Maste 		};
54895f2336efSEd Maste 		break;
54905f2336efSEd Maste 	/* mlockall */
54915f2336efSEd Maste 	case 230:
54925f2336efSEd Maste 		switch (ndx) {
54935f2336efSEd Maste 		case 0:
54945f2336efSEd Maste 			p = "int";
54955f2336efSEd Maste 			break;
54965f2336efSEd Maste 		default:
54975f2336efSEd Maste 			break;
54985f2336efSEd Maste 		};
54995f2336efSEd Maste 		break;
55005f2336efSEd Maste 	/* munlockall */
55015f2336efSEd Maste 	case 231:
55025f2336efSEd Maste 		break;
55035f2336efSEd Maste 	/* linux_mincore */
55045f2336efSEd Maste 	case 232:
55055f2336efSEd Maste 		switch (ndx) {
55065f2336efSEd Maste 		case 0:
55075f2336efSEd Maste 			p = "l_ulong";
55085f2336efSEd Maste 			break;
55095f2336efSEd Maste 		case 1:
55105f2336efSEd Maste 			p = "l_size_t";
55115f2336efSEd Maste 			break;
55125f2336efSEd Maste 		case 2:
55135f2336efSEd Maste 			p = "userland u_char *";
55145f2336efSEd Maste 			break;
55155f2336efSEd Maste 		default:
55165f2336efSEd Maste 			break;
55175f2336efSEd Maste 		};
55185f2336efSEd Maste 		break;
5519bafd96b8SEdward Tomasz Napierala 	/* linux_madvise */
55205f2336efSEd Maste 	case 233:
55215f2336efSEd Maste 		switch (ndx) {
55225f2336efSEd Maste 		case 0:
5523a39cdcd7SEdward Tomasz Napierala 			p = "l_ulong";
55245f2336efSEd Maste 			break;
55255f2336efSEd Maste 		case 1:
5526a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
55275f2336efSEd Maste 			break;
55285f2336efSEd Maste 		case 2:
5529a39cdcd7SEdward Tomasz Napierala 			p = "l_int";
55305f2336efSEd Maste 			break;
55315f2336efSEd Maste 		default:
55325f2336efSEd Maste 			break;
55335f2336efSEd Maste 		};
55345f2336efSEd Maste 		break;
55355f2336efSEd Maste 	/* linux_remap_file_pages */
55365f2336efSEd Maste 	case 234:
55375f2336efSEd Maste 		break;
55385f2336efSEd Maste 	/* linux_mbind */
55395f2336efSEd Maste 	case 235:
55405f2336efSEd Maste 		break;
55415f2336efSEd Maste 	/* linux_get_mempolicy */
55425f2336efSEd Maste 	case 236:
55435f2336efSEd Maste 		break;
55445f2336efSEd Maste 	/* linux_set_mempolicy */
55455f2336efSEd Maste 	case 237:
55465f2336efSEd Maste 		break;
55475f2336efSEd Maste 	/* linux_migrate_pages */
55485f2336efSEd Maste 	case 238:
55495f2336efSEd Maste 		break;
55505f2336efSEd Maste 	/* linux_move_pages */
55515f2336efSEd Maste 	case 239:
55525f2336efSEd Maste 		break;
55535f2336efSEd Maste 	/* linux_rt_tgsigqueueinfo */
55545f2336efSEd Maste 	case 240:
55555f2336efSEd Maste 		switch (ndx) {
55565f2336efSEd Maste 		case 0:
55575f2336efSEd Maste 			p = "l_pid_t";
55585f2336efSEd Maste 			break;
55595f2336efSEd Maste 		case 1:
55605f2336efSEd Maste 			p = "l_pid_t";
55615f2336efSEd Maste 			break;
55625f2336efSEd Maste 		case 2:
55635f2336efSEd Maste 			p = "l_int";
55645f2336efSEd Maste 			break;
55655f2336efSEd Maste 		case 3:
55665f2336efSEd Maste 			p = "userland l_siginfo_t *";
55675f2336efSEd Maste 			break;
55685f2336efSEd Maste 		default:
55695f2336efSEd Maste 			break;
55705f2336efSEd Maste 		};
55715f2336efSEd Maste 		break;
55725f2336efSEd Maste 	/* linux_perf_event_open */
55735f2336efSEd Maste 	case 241:
55745f2336efSEd Maste 		break;
55755f2336efSEd Maste 	/* linux_accept4 */
55765f2336efSEd Maste 	case 242:
55775f2336efSEd Maste 		switch (ndx) {
55785f2336efSEd Maste 		case 0:
55795f2336efSEd Maste 			p = "l_int";
55805f2336efSEd Maste 			break;
55815f2336efSEd Maste 		case 1:
55825f2336efSEd Maste 			p = "l_uintptr_t";
55835f2336efSEd Maste 			break;
55845f2336efSEd Maste 		case 2:
55855f2336efSEd Maste 			p = "l_uintptr_t";
55865f2336efSEd Maste 			break;
55875f2336efSEd Maste 		case 3:
5588a39cdcd7SEdward Tomasz Napierala 			p = "l_int";
55895f2336efSEd Maste 			break;
55905f2336efSEd Maste 		default:
55915f2336efSEd Maste 			break;
55925f2336efSEd Maste 		};
55935f2336efSEd Maste 		break;
55945f2336efSEd Maste 	/* linux_recvmmsg */
55955f2336efSEd Maste 	case 243:
55965f2336efSEd Maste 		switch (ndx) {
55975f2336efSEd Maste 		case 0:
55985f2336efSEd Maste 			p = "l_int";
55995f2336efSEd Maste 			break;
56005f2336efSEd Maste 		case 1:
56015f2336efSEd Maste 			p = "userland struct l_mmsghdr *";
56025f2336efSEd Maste 			break;
56035f2336efSEd Maste 		case 2:
56045f2336efSEd Maste 			p = "l_uint";
56055f2336efSEd Maste 			break;
56065f2336efSEd Maste 		case 3:
56075f2336efSEd Maste 			p = "l_uint";
56085f2336efSEd Maste 			break;
56095f2336efSEd Maste 		case 4:
56105f2336efSEd Maste 			p = "userland struct l_timespec *";
56115f2336efSEd Maste 			break;
56125f2336efSEd Maste 		default:
56135f2336efSEd Maste 			break;
56145f2336efSEd Maste 		};
56155f2336efSEd Maste 		break;
56165f2336efSEd Maste 	/* linux_wait4 */
56175f2336efSEd Maste 	case 260:
56185f2336efSEd Maste 		switch (ndx) {
56195f2336efSEd Maste 		case 0:
56205f2336efSEd Maste 			p = "l_pid_t";
56215f2336efSEd Maste 			break;
56225f2336efSEd Maste 		case 1:
56235f2336efSEd Maste 			p = "userland l_int *";
56245f2336efSEd Maste 			break;
56255f2336efSEd Maste 		case 2:
56265f2336efSEd Maste 			p = "l_int";
56275f2336efSEd Maste 			break;
56285f2336efSEd Maste 		case 3:
56295f2336efSEd Maste 			p = "userland struct rusage *";
56305f2336efSEd Maste 			break;
56315f2336efSEd Maste 		default:
56325f2336efSEd Maste 			break;
56335f2336efSEd Maste 		};
56345f2336efSEd Maste 		break;
56355f2336efSEd Maste 	/* linux_prlimit64 */
56365f2336efSEd Maste 	case 261:
56375f2336efSEd Maste 		switch (ndx) {
56385f2336efSEd Maste 		case 0:
56395f2336efSEd Maste 			p = "l_pid_t";
56405f2336efSEd Maste 			break;
56415f2336efSEd Maste 		case 1:
56425f2336efSEd Maste 			p = "l_uint";
56435f2336efSEd Maste 			break;
56445f2336efSEd Maste 		case 2:
56455f2336efSEd Maste 			p = "userland struct rlimit *";
56465f2336efSEd Maste 			break;
56475f2336efSEd Maste 		case 3:
56485f2336efSEd Maste 			p = "userland struct rlimit *";
56495f2336efSEd Maste 			break;
56505f2336efSEd Maste 		default:
56515f2336efSEd Maste 			break;
56525f2336efSEd Maste 		};
56535f2336efSEd Maste 		break;
56545f2336efSEd Maste 	/* linux_fanotify_init */
56555f2336efSEd Maste 	case 262:
56565f2336efSEd Maste 		break;
56575f2336efSEd Maste 	/* linux_fanotify_mark */
56585f2336efSEd Maste 	case 263:
56595f2336efSEd Maste 		break;
56605f2336efSEd Maste 	/* linux_name_to_handle_at */
56615f2336efSEd Maste 	case 264:
566277eb9841SConrad Meyer 		switch (ndx) {
566377eb9841SConrad Meyer 		case 0:
566477eb9841SConrad Meyer 			p = "l_int";
566577eb9841SConrad Meyer 			break;
566677eb9841SConrad Meyer 		case 1:
566777eb9841SConrad Meyer 			p = "userland const char *";
566877eb9841SConrad Meyer 			break;
566977eb9841SConrad Meyer 		case 2:
567077eb9841SConrad Meyer 			p = "userland struct l_file_handle *";
567177eb9841SConrad Meyer 			break;
567277eb9841SConrad Meyer 		case 3:
567377eb9841SConrad Meyer 			p = "userland l_int *";
567477eb9841SConrad Meyer 			break;
567577eb9841SConrad Meyer 		case 4:
567677eb9841SConrad Meyer 			p = "l_int";
567777eb9841SConrad Meyer 			break;
567877eb9841SConrad Meyer 		default:
567977eb9841SConrad Meyer 			break;
568077eb9841SConrad Meyer 		};
56815f2336efSEd Maste 		break;
56825f2336efSEd Maste 	/* linux_open_by_handle_at */
56835f2336efSEd Maste 	case 265:
568477eb9841SConrad Meyer 		switch (ndx) {
568577eb9841SConrad Meyer 		case 0:
568677eb9841SConrad Meyer 			p = "l_int";
568777eb9841SConrad Meyer 			break;
568877eb9841SConrad Meyer 		case 1:
568977eb9841SConrad Meyer 			p = "userland struct l_file_handle *";
569077eb9841SConrad Meyer 			break;
569177eb9841SConrad Meyer 		case 2:
569277eb9841SConrad Meyer 			p = "l_int";
569377eb9841SConrad Meyer 			break;
569477eb9841SConrad Meyer 		default:
569577eb9841SConrad Meyer 			break;
569677eb9841SConrad Meyer 		};
56975f2336efSEd Maste 		break;
56985f2336efSEd Maste 	/* linux_clock_adjtime */
56995f2336efSEd Maste 	case 266:
57005f2336efSEd Maste 		break;
57015f2336efSEd Maste 	/* linux_syncfs */
57025f2336efSEd Maste 	case 267:
57035f2336efSEd Maste 		switch (ndx) {
57045f2336efSEd Maste 		case 0:
57055f2336efSEd Maste 			p = "l_int";
57065f2336efSEd Maste 			break;
57075f2336efSEd Maste 		default:
57085f2336efSEd Maste 			break;
57095f2336efSEd Maste 		};
57105f2336efSEd Maste 		break;
57115f2336efSEd Maste 	/* linux_setns */
57125f2336efSEd Maste 	case 268:
57135f2336efSEd Maste 		switch (ndx) {
57145f2336efSEd Maste 		case 0:
57155f2336efSEd Maste 			p = "l_int";
57165f2336efSEd Maste 			break;
57175f2336efSEd Maste 		case 1:
57185f2336efSEd Maste 			p = "l_int";
57195f2336efSEd Maste 			break;
57205f2336efSEd Maste 		default:
57215f2336efSEd Maste 			break;
57225f2336efSEd Maste 		};
57235f2336efSEd Maste 		break;
57245f2336efSEd Maste 	/* linux_sendmmsg */
57255f2336efSEd Maste 	case 269:
57265f2336efSEd Maste 		switch (ndx) {
57275f2336efSEd Maste 		case 0:
57285f2336efSEd Maste 			p = "l_int";
57295f2336efSEd Maste 			break;
57305f2336efSEd Maste 		case 1:
57315f2336efSEd Maste 			p = "userland struct l_mmsghdr *";
57325f2336efSEd Maste 			break;
57335f2336efSEd Maste 		case 2:
57345f2336efSEd Maste 			p = "l_uint";
57355f2336efSEd Maste 			break;
57365f2336efSEd Maste 		case 3:
57375f2336efSEd Maste 			p = "l_uint";
57385f2336efSEd Maste 			break;
57395f2336efSEd Maste 		default:
57405f2336efSEd Maste 			break;
57415f2336efSEd Maste 		};
57425f2336efSEd Maste 		break;
57435f2336efSEd Maste 	/* linux_process_vm_readv */
57445f2336efSEd Maste 	case 270:
57455f2336efSEd Maste 		switch (ndx) {
57465f2336efSEd Maste 		case 0:
57475f2336efSEd Maste 			p = "l_pid_t";
57485f2336efSEd Maste 			break;
57495f2336efSEd Maste 		case 1:
57505f2336efSEd Maste 			p = "userland const struct iovec *";
57515f2336efSEd Maste 			break;
57525f2336efSEd Maste 		case 2:
57535f2336efSEd Maste 			p = "l_ulong";
57545f2336efSEd Maste 			break;
57555f2336efSEd Maste 		case 3:
57565f2336efSEd Maste 			p = "userland const struct iovec *";
57575f2336efSEd Maste 			break;
57585f2336efSEd Maste 		case 4:
57595f2336efSEd Maste 			p = "l_ulong";
57605f2336efSEd Maste 			break;
57615f2336efSEd Maste 		case 5:
57625f2336efSEd Maste 			p = "l_ulong";
57635f2336efSEd Maste 			break;
57645f2336efSEd Maste 		default:
57655f2336efSEd Maste 			break;
57665f2336efSEd Maste 		};
57675f2336efSEd Maste 		break;
57685f2336efSEd Maste 	/* linux_process_vm_writev */
57695f2336efSEd Maste 	case 271:
57705f2336efSEd Maste 		switch (ndx) {
57715f2336efSEd Maste 		case 0:
57725f2336efSEd Maste 			p = "l_pid_t";
57735f2336efSEd Maste 			break;
57745f2336efSEd Maste 		case 1:
57755f2336efSEd Maste 			p = "userland const struct iovec *";
57765f2336efSEd Maste 			break;
57775f2336efSEd Maste 		case 2:
57785f2336efSEd Maste 			p = "l_ulong";
57795f2336efSEd Maste 			break;
57805f2336efSEd Maste 		case 3:
57815f2336efSEd Maste 			p = "userland const struct iovec *";
57825f2336efSEd Maste 			break;
57835f2336efSEd Maste 		case 4:
57845f2336efSEd Maste 			p = "l_ulong";
57855f2336efSEd Maste 			break;
57865f2336efSEd Maste 		case 5:
57875f2336efSEd Maste 			p = "l_ulong";
57885f2336efSEd Maste 			break;
57895f2336efSEd Maste 		default:
57905f2336efSEd Maste 			break;
57915f2336efSEd Maste 		};
57925f2336efSEd Maste 		break;
57935f2336efSEd Maste 	/* linux_kcmp */
57945f2336efSEd Maste 	case 272:
57955f2336efSEd Maste 		switch (ndx) {
57965f2336efSEd Maste 		case 0:
57975f2336efSEd Maste 			p = "l_pid_t";
57985f2336efSEd Maste 			break;
57995f2336efSEd Maste 		case 1:
58005f2336efSEd Maste 			p = "l_pid_t";
58015f2336efSEd Maste 			break;
58025f2336efSEd Maste 		case 2:
58035f2336efSEd Maste 			p = "l_int";
58045f2336efSEd Maste 			break;
58055f2336efSEd Maste 		case 3:
58065f2336efSEd Maste 			p = "l_ulong";
58075f2336efSEd Maste 			break;
58085f2336efSEd Maste 		case 4:
58095f2336efSEd Maste 			p = "l_ulong";
58105f2336efSEd Maste 			break;
58115f2336efSEd Maste 		default:
58125f2336efSEd Maste 			break;
58135f2336efSEd Maste 		};
58145f2336efSEd Maste 		break;
58155f2336efSEd Maste 	/* linux_finit_module */
58165f2336efSEd Maste 	case 273:
58175f2336efSEd Maste 		switch (ndx) {
58185f2336efSEd Maste 		case 0:
58195f2336efSEd Maste 			p = "l_int";
58205f2336efSEd Maste 			break;
58215f2336efSEd Maste 		case 1:
58225f2336efSEd Maste 			p = "userland const char *";
58235f2336efSEd Maste 			break;
58245f2336efSEd Maste 		case 2:
58255f2336efSEd Maste 			p = "l_int";
58265f2336efSEd Maste 			break;
58275f2336efSEd Maste 		default:
58285f2336efSEd Maste 			break;
58295f2336efSEd Maste 		};
58305f2336efSEd Maste 		break;
58315f2336efSEd Maste 	/* linux_sched_setattr */
58325f2336efSEd Maste 	case 274:
58335f2336efSEd Maste 		switch (ndx) {
58345f2336efSEd Maste 		case 0:
58355f2336efSEd Maste 			p = "l_pid_t";
58365f2336efSEd Maste 			break;
58375f2336efSEd Maste 		case 1:
58385f2336efSEd Maste 			p = "userland void *";
58395f2336efSEd Maste 			break;
58405f2336efSEd Maste 		case 2:
58415f2336efSEd Maste 			p = "l_uint";
58425f2336efSEd Maste 			break;
58435f2336efSEd Maste 		default:
58445f2336efSEd Maste 			break;
58455f2336efSEd Maste 		};
58465f2336efSEd Maste 		break;
58475f2336efSEd Maste 	/* linux_sched_getattr */
58485f2336efSEd Maste 	case 275:
58495f2336efSEd Maste 		switch (ndx) {
58505f2336efSEd Maste 		case 0:
58515f2336efSEd Maste 			p = "l_pid_t";
58525f2336efSEd Maste 			break;
58535f2336efSEd Maste 		case 1:
58545f2336efSEd Maste 			p = "userland void *";
58555f2336efSEd Maste 			break;
58565f2336efSEd Maste 		case 2:
58575f2336efSEd Maste 			p = "l_uint";
58585f2336efSEd Maste 			break;
58595f2336efSEd Maste 		case 3:
58605f2336efSEd Maste 			p = "l_uint";
58615f2336efSEd Maste 			break;
58625f2336efSEd Maste 		default:
58635f2336efSEd Maste 			break;
58645f2336efSEd Maste 		};
58655f2336efSEd Maste 		break;
58665f2336efSEd Maste 	/* linux_renameat2 */
58675f2336efSEd Maste 	case 276:
58685f2336efSEd Maste 		switch (ndx) {
58695f2336efSEd Maste 		case 0:
58705f2336efSEd Maste 			p = "l_int";
58715f2336efSEd Maste 			break;
58725f2336efSEd Maste 		case 1:
58735f2336efSEd Maste 			p = "userland const char *";
58745f2336efSEd Maste 			break;
58755f2336efSEd Maste 		case 2:
58765f2336efSEd Maste 			p = "l_int";
58775f2336efSEd Maste 			break;
58785f2336efSEd Maste 		case 3:
58795f2336efSEd Maste 			p = "userland const char *";
58805f2336efSEd Maste 			break;
58815f2336efSEd Maste 		case 4:
5882a39cdcd7SEdward Tomasz Napierala 			p = "l_uint";
58835f2336efSEd Maste 			break;
58845f2336efSEd Maste 		default:
58855f2336efSEd Maste 			break;
58865f2336efSEd Maste 		};
58875f2336efSEd Maste 		break;
58885f2336efSEd Maste 	/* linux_seccomp */
58895f2336efSEd Maste 	case 277:
58905f2336efSEd Maste 		switch (ndx) {
58915f2336efSEd Maste 		case 0:
58925f2336efSEd Maste 			p = "l_uint";
58935f2336efSEd Maste 			break;
58945f2336efSEd Maste 		case 1:
58955f2336efSEd Maste 			p = "l_uint";
58965f2336efSEd Maste 			break;
58975f2336efSEd Maste 		case 2:
58985f2336efSEd Maste 			p = "userland const char *";
58995f2336efSEd Maste 			break;
59005f2336efSEd Maste 		default:
59015f2336efSEd Maste 			break;
59025f2336efSEd Maste 		};
59035f2336efSEd Maste 		break;
59045f2336efSEd Maste 	/* linux_getrandom */
59055f2336efSEd Maste 	case 278:
59065f2336efSEd Maste 		switch (ndx) {
59075f2336efSEd Maste 		case 0:
59085f2336efSEd Maste 			p = "userland char *";
59095f2336efSEd Maste 			break;
59105f2336efSEd Maste 		case 1:
59115f2336efSEd Maste 			p = "l_size_t";
59125f2336efSEd Maste 			break;
59135f2336efSEd Maste 		case 2:
59145f2336efSEd Maste 			p = "l_uint";
59155f2336efSEd Maste 			break;
59165f2336efSEd Maste 		default:
59175f2336efSEd Maste 			break;
59185f2336efSEd Maste 		};
59195f2336efSEd Maste 		break;
59205f2336efSEd Maste 	/* linux_memfd_create */
59215f2336efSEd Maste 	case 279:
59225f2336efSEd Maste 		switch (ndx) {
59235f2336efSEd Maste 		case 0:
59245f2336efSEd Maste 			p = "userland const char *";
59255f2336efSEd Maste 			break;
59265f2336efSEd Maste 		case 1:
59275f2336efSEd Maste 			p = "l_uint";
59285f2336efSEd Maste 			break;
59295f2336efSEd Maste 		default:
59305f2336efSEd Maste 			break;
59315f2336efSEd Maste 		};
59325f2336efSEd Maste 		break;
59335f2336efSEd Maste 	/* linux_bpf */
59345f2336efSEd Maste 	case 280:
59355f2336efSEd Maste 		switch (ndx) {
59365f2336efSEd Maste 		case 0:
59375f2336efSEd Maste 			p = "l_int";
59385f2336efSEd Maste 			break;
59395f2336efSEd Maste 		case 1:
59405f2336efSEd Maste 			p = "userland void *";
59415f2336efSEd Maste 			break;
59425f2336efSEd Maste 		case 2:
59435f2336efSEd Maste 			p = "l_uint";
59445f2336efSEd Maste 			break;
59455f2336efSEd Maste 		default:
59465f2336efSEd Maste 			break;
59475f2336efSEd Maste 		};
59485f2336efSEd Maste 		break;
59495f2336efSEd Maste 	/* linux_execveat */
59505f2336efSEd Maste 	case 281:
59515f2336efSEd Maste 		switch (ndx) {
59525f2336efSEd Maste 		case 0:
59535f2336efSEd Maste 			p = "l_int";
59545f2336efSEd Maste 			break;
59555f2336efSEd Maste 		case 1:
59565f2336efSEd Maste 			p = "userland const char *";
59575f2336efSEd Maste 			break;
59585f2336efSEd Maste 		case 2:
59595f2336efSEd Maste 			p = "userland const char **";
59605f2336efSEd Maste 			break;
59615f2336efSEd Maste 		case 3:
59625f2336efSEd Maste 			p = "userland const char **";
59635f2336efSEd Maste 			break;
59645f2336efSEd Maste 		case 4:
59655f2336efSEd Maste 			p = "l_int";
59665f2336efSEd Maste 			break;
59675f2336efSEd Maste 		default:
59685f2336efSEd Maste 			break;
59695f2336efSEd Maste 		};
59705f2336efSEd Maste 		break;
59715f2336efSEd Maste 	/* linux_userfaultfd */
59725f2336efSEd Maste 	case 282:
59735f2336efSEd Maste 		switch (ndx) {
59745f2336efSEd Maste 		case 0:
59755f2336efSEd Maste 			p = "l_int";
59765f2336efSEd Maste 			break;
59775f2336efSEd Maste 		default:
59785f2336efSEd Maste 			break;
59795f2336efSEd Maste 		};
59805f2336efSEd Maste 		break;
59815f2336efSEd Maste 	/* linux_membarrier */
59825f2336efSEd Maste 	case 283:
59835f2336efSEd Maste 		switch (ndx) {
59845f2336efSEd Maste 		case 0:
59855f2336efSEd Maste 			p = "l_int";
59865f2336efSEd Maste 			break;
59875f2336efSEd Maste 		case 1:
59885f2336efSEd Maste 			p = "l_int";
59895f2336efSEd Maste 			break;
59905f2336efSEd Maste 		default:
59915f2336efSEd Maste 			break;
59925f2336efSEd Maste 		};
59935f2336efSEd Maste 		break;
59945f2336efSEd Maste 	/* linux_mlock2 */
59955f2336efSEd Maste 	case 284:
59965f2336efSEd Maste 		switch (ndx) {
59975f2336efSEd Maste 		case 0:
59985f2336efSEd Maste 			p = "l_ulong";
59995f2336efSEd Maste 			break;
60005f2336efSEd Maste 		case 1:
60015f2336efSEd Maste 			p = "l_size_t";
60025f2336efSEd Maste 			break;
60035f2336efSEd Maste 		case 2:
60045f2336efSEd Maste 			p = "l_int";
60055f2336efSEd Maste 			break;
60065f2336efSEd Maste 		default:
60075f2336efSEd Maste 			break;
60085f2336efSEd Maste 		};
60095f2336efSEd Maste 		break;
60105f2336efSEd Maste 	/* linux_copy_file_range */
60115f2336efSEd Maste 	case 285:
60125f2336efSEd Maste 		switch (ndx) {
60135f2336efSEd Maste 		case 0:
60145f2336efSEd Maste 			p = "l_int";
60155f2336efSEd Maste 			break;
60165f2336efSEd Maste 		case 1:
60175f2336efSEd Maste 			p = "userland l_loff_t *";
60185f2336efSEd Maste 			break;
60195f2336efSEd Maste 		case 2:
60205f2336efSEd Maste 			p = "l_int";
60215f2336efSEd Maste 			break;
60225f2336efSEd Maste 		case 3:
60235f2336efSEd Maste 			p = "userland l_loff_t *";
60245f2336efSEd Maste 			break;
60255f2336efSEd Maste 		case 4:
60265f2336efSEd Maste 			p = "l_size_t";
60275f2336efSEd Maste 			break;
60285f2336efSEd Maste 		case 5:
60295f2336efSEd Maste 			p = "l_uint";
60305f2336efSEd Maste 			break;
60315f2336efSEd Maste 		default:
60325f2336efSEd Maste 			break;
60335f2336efSEd Maste 		};
60345f2336efSEd Maste 		break;
60355f2336efSEd Maste 	/* linux_preadv2 */
60365f2336efSEd Maste 	case 286:
60375f2336efSEd Maste 		switch (ndx) {
60385f2336efSEd Maste 		case 0:
60395f2336efSEd Maste 			p = "l_ulong";
60405f2336efSEd Maste 			break;
60415f2336efSEd Maste 		case 1:
60425f2336efSEd Maste 			p = "userland const struct iovec *";
60435f2336efSEd Maste 			break;
60445f2336efSEd Maste 		case 2:
60455f2336efSEd Maste 			p = "l_ulong";
60465f2336efSEd Maste 			break;
60475f2336efSEd Maste 		case 3:
60485f2336efSEd Maste 			p = "l_ulong";
60495f2336efSEd Maste 			break;
60505f2336efSEd Maste 		case 4:
60515f2336efSEd Maste 			p = "l_ulong";
60525f2336efSEd Maste 			break;
60535f2336efSEd Maste 		case 5:
60545f2336efSEd Maste 			p = "l_int";
60555f2336efSEd Maste 			break;
60565f2336efSEd Maste 		default:
60575f2336efSEd Maste 			break;
60585f2336efSEd Maste 		};
60595f2336efSEd Maste 		break;
60605f2336efSEd Maste 	/* linux_pwritev2 */
60615f2336efSEd Maste 	case 287:
60625f2336efSEd Maste 		switch (ndx) {
60635f2336efSEd Maste 		case 0:
60645f2336efSEd Maste 			p = "l_ulong";
60655f2336efSEd Maste 			break;
60665f2336efSEd Maste 		case 1:
60675f2336efSEd Maste 			p = "userland const struct iovec *";
60685f2336efSEd Maste 			break;
60695f2336efSEd Maste 		case 2:
60705f2336efSEd Maste 			p = "l_ulong";
60715f2336efSEd Maste 			break;
60725f2336efSEd Maste 		case 3:
60735f2336efSEd Maste 			p = "l_ulong";
60745f2336efSEd Maste 			break;
60755f2336efSEd Maste 		case 4:
60765f2336efSEd Maste 			p = "l_ulong";
60775f2336efSEd Maste 			break;
60785f2336efSEd Maste 		case 5:
60795f2336efSEd Maste 			p = "l_int";
60805f2336efSEd Maste 			break;
60815f2336efSEd Maste 		default:
60825f2336efSEd Maste 			break;
60835f2336efSEd Maste 		};
60845f2336efSEd Maste 		break;
60855f2336efSEd Maste 	/* linux_pkey_mprotect */
60865f2336efSEd Maste 	case 288:
60875f2336efSEd Maste 		switch (ndx) {
60885f2336efSEd Maste 		case 0:
60895f2336efSEd Maste 			p = "l_ulong";
60905f2336efSEd Maste 			break;
60915f2336efSEd Maste 		case 1:
60925f2336efSEd Maste 			p = "l_size_t";
60935f2336efSEd Maste 			break;
60945f2336efSEd Maste 		case 2:
60955f2336efSEd Maste 			p = "l_ulong";
60965f2336efSEd Maste 			break;
60975f2336efSEd Maste 		case 3:
60985f2336efSEd Maste 			p = "l_int";
60995f2336efSEd Maste 			break;
61005f2336efSEd Maste 		default:
61015f2336efSEd Maste 			break;
61025f2336efSEd Maste 		};
61035f2336efSEd Maste 		break;
61045f2336efSEd Maste 	/* linux_pkey_alloc */
61055f2336efSEd Maste 	case 289:
61065f2336efSEd Maste 		switch (ndx) {
61075f2336efSEd Maste 		case 0:
61085f2336efSEd Maste 			p = "l_ulong";
61095f2336efSEd Maste 			break;
61105f2336efSEd Maste 		case 1:
61115f2336efSEd Maste 			p = "l_ulong";
61125f2336efSEd Maste 			break;
61135f2336efSEd Maste 		default:
61145f2336efSEd Maste 			break;
61155f2336efSEd Maste 		};
61165f2336efSEd Maste 		break;
61175f2336efSEd Maste 	/* linux_pkey_free */
61185f2336efSEd Maste 	case 290:
61195f2336efSEd Maste 		switch (ndx) {
61205f2336efSEd Maste 		case 0:
61215f2336efSEd Maste 			p = "l_int";
61225f2336efSEd Maste 			break;
61235f2336efSEd Maste 		default:
61245f2336efSEd Maste 			break;
61255f2336efSEd Maste 		};
61265f2336efSEd Maste 		break;
6127c0f17173SEdward Tomasz Napierala 	/* linux_statx */
6128c0f17173SEdward Tomasz Napierala 	case 291:
6129c0f17173SEdward Tomasz Napierala 		switch (ndx) {
6130c0f17173SEdward Tomasz Napierala 		case 0:
6131c0f17173SEdward Tomasz Napierala 			p = "l_int";
6132c0f17173SEdward Tomasz Napierala 			break;
6133c0f17173SEdward Tomasz Napierala 		case 1:
6134c0f17173SEdward Tomasz Napierala 			p = "userland const char *";
6135c0f17173SEdward Tomasz Napierala 			break;
6136c0f17173SEdward Tomasz Napierala 		case 2:
6137c0f17173SEdward Tomasz Napierala 			p = "l_uint";
6138c0f17173SEdward Tomasz Napierala 			break;
6139c0f17173SEdward Tomasz Napierala 		case 3:
6140c0f17173SEdward Tomasz Napierala 			p = "l_uint";
6141c0f17173SEdward Tomasz Napierala 			break;
6142c0f17173SEdward Tomasz Napierala 		case 4:
6143c0f17173SEdward Tomasz Napierala 			p = "userland void *";
6144c0f17173SEdward Tomasz Napierala 			break;
6145c0f17173SEdward Tomasz Napierala 		default:
6146c0f17173SEdward Tomasz Napierala 			break;
6147c0f17173SEdward Tomasz Napierala 		};
6148c0f17173SEdward Tomasz Napierala 		break;
6149c0f17173SEdward Tomasz Napierala 	/* linux_io_pgetevents */
6150c0f17173SEdward Tomasz Napierala 	case 292:
6151c0f17173SEdward Tomasz Napierala 		break;
6152c0f17173SEdward Tomasz Napierala 	/* linux_rseq */
6153c0f17173SEdward Tomasz Napierala 	case 293:
615475e40949SDmitry Chagin 		switch (ndx) {
615575e40949SDmitry Chagin 		case 0:
615675e40949SDmitry Chagin 			p = "userland struct linux_rseq *";
615775e40949SDmitry Chagin 			break;
615875e40949SDmitry Chagin 		case 1:
615975e40949SDmitry Chagin 			p = "uint32_t";
616075e40949SDmitry Chagin 			break;
616175e40949SDmitry Chagin 		case 2:
616275e40949SDmitry Chagin 			p = "l_int";
616375e40949SDmitry Chagin 			break;
616475e40949SDmitry Chagin 		case 3:
616575e40949SDmitry Chagin 			p = "uint32_t";
616675e40949SDmitry Chagin 			break;
616775e40949SDmitry Chagin 		default:
616875e40949SDmitry Chagin 			break;
616975e40949SDmitry Chagin 		};
6170c0f17173SEdward Tomasz Napierala 		break;
6171c0f17173SEdward Tomasz Napierala 	/* linux_kexec_file_load */
6172c0f17173SEdward Tomasz Napierala 	case 294:
6173c0f17173SEdward Tomasz Napierala 		break;
6174c0f17173SEdward Tomasz Napierala 	/* linux_pidfd_send_signal */
6175c0f17173SEdward Tomasz Napierala 	case 424:
6176c0f17173SEdward Tomasz Napierala 		switch (ndx) {
6177c0f17173SEdward Tomasz Napierala 		case 0:
6178c0f17173SEdward Tomasz Napierala 			p = "l_int";
6179c0f17173SEdward Tomasz Napierala 			break;
6180c0f17173SEdward Tomasz Napierala 		case 1:
6181c0f17173SEdward Tomasz Napierala 			p = "l_int";
6182c0f17173SEdward Tomasz Napierala 			break;
6183c0f17173SEdward Tomasz Napierala 		case 2:
6184c0f17173SEdward Tomasz Napierala 			p = "userland l_siginfo_t *";
6185c0f17173SEdward Tomasz Napierala 			break;
6186c0f17173SEdward Tomasz Napierala 		case 3:
6187c0f17173SEdward Tomasz Napierala 			p = "l_uint";
6188c0f17173SEdward Tomasz Napierala 			break;
6189c0f17173SEdward Tomasz Napierala 		default:
6190c0f17173SEdward Tomasz Napierala 			break;
6191c0f17173SEdward Tomasz Napierala 		};
6192c0f17173SEdward Tomasz Napierala 		break;
6193c0f17173SEdward Tomasz Napierala 	/* linux_io_uring_setup */
6194c0f17173SEdward Tomasz Napierala 	case 425:
6195c0f17173SEdward Tomasz Napierala 		break;
6196c0f17173SEdward Tomasz Napierala 	/* linux_io_uring_enter */
6197c0f17173SEdward Tomasz Napierala 	case 426:
6198c0f17173SEdward Tomasz Napierala 		break;
6199c0f17173SEdward Tomasz Napierala 	/* linux_io_uring_register */
6200c0f17173SEdward Tomasz Napierala 	case 427:
6201c0f17173SEdward Tomasz Napierala 		break;
6202c0f17173SEdward Tomasz Napierala 	/* linux_open_tree */
6203c0f17173SEdward Tomasz Napierala 	case 428:
6204c0f17173SEdward Tomasz Napierala 		break;
6205c0f17173SEdward Tomasz Napierala 	/* linux_move_mount */
6206c0f17173SEdward Tomasz Napierala 	case 429:
6207c0f17173SEdward Tomasz Napierala 		break;
6208c0f17173SEdward Tomasz Napierala 	/* linux_fsopen */
6209c0f17173SEdward Tomasz Napierala 	case 430:
6210c0f17173SEdward Tomasz Napierala 		break;
6211c0f17173SEdward Tomasz Napierala 	/* linux_fsconfig */
6212c0f17173SEdward Tomasz Napierala 	case 431:
6213c0f17173SEdward Tomasz Napierala 		break;
6214c0f17173SEdward Tomasz Napierala 	/* linux_fsmount */
6215c0f17173SEdward Tomasz Napierala 	case 432:
6216c0f17173SEdward Tomasz Napierala 		break;
6217c0f17173SEdward Tomasz Napierala 	/* linux_fspick */
6218c0f17173SEdward Tomasz Napierala 	case 433:
6219c0f17173SEdward Tomasz Napierala 		break;
6220c0f17173SEdward Tomasz Napierala 	/* linux_pidfd_open */
6221c0f17173SEdward Tomasz Napierala 	case 434:
6222c0f17173SEdward Tomasz Napierala 		break;
6223c0f17173SEdward Tomasz Napierala 	/* linux_clone3 */
6224c0f17173SEdward Tomasz Napierala 	case 435:
6225b356030eSDmitry Chagin 		switch (ndx) {
6226b356030eSDmitry Chagin 		case 0:
6227b356030eSDmitry Chagin 			p = "userland struct l_user_clone_args *";
6228b356030eSDmitry Chagin 			break;
6229b356030eSDmitry Chagin 		case 1:
6230b356030eSDmitry Chagin 			p = "l_size_t";
6231b356030eSDmitry Chagin 			break;
6232b356030eSDmitry Chagin 		default:
6233b356030eSDmitry Chagin 			break;
6234b356030eSDmitry Chagin 		};
6235c0f17173SEdward Tomasz Napierala 		break;
6236c0f17173SEdward Tomasz Napierala 	/* linux_close_range */
6237c0f17173SEdward Tomasz Napierala 	case 436:
623850111714SDmitry Chagin 		switch (ndx) {
623950111714SDmitry Chagin 		case 0:
624050111714SDmitry Chagin 			p = "l_uint";
624150111714SDmitry Chagin 			break;
624250111714SDmitry Chagin 		case 1:
624350111714SDmitry Chagin 			p = "l_uint";
624450111714SDmitry Chagin 			break;
624550111714SDmitry Chagin 		case 2:
624650111714SDmitry Chagin 			p = "l_uint";
624750111714SDmitry Chagin 			break;
624850111714SDmitry Chagin 		default:
624950111714SDmitry Chagin 			break;
625050111714SDmitry Chagin 		};
6251c0f17173SEdward Tomasz Napierala 		break;
6252c0f17173SEdward Tomasz Napierala 	/* linux_openat2 */
6253c0f17173SEdward Tomasz Napierala 	case 437:
6254c0f17173SEdward Tomasz Napierala 		break;
6255c0f17173SEdward Tomasz Napierala 	/* linux_pidfd_getfd */
6256c0f17173SEdward Tomasz Napierala 	case 438:
6257c0f17173SEdward Tomasz Napierala 		break;
6258c0f17173SEdward Tomasz Napierala 	/* linux_faccessat2 */
6259c0f17173SEdward Tomasz Napierala 	case 439:
6260bee191e4SDmitry Chagin 		switch (ndx) {
6261bee191e4SDmitry Chagin 		case 0:
6262bee191e4SDmitry Chagin 			p = "l_int";
6263bee191e4SDmitry Chagin 			break;
6264bee191e4SDmitry Chagin 		case 1:
6265bee191e4SDmitry Chagin 			p = "userland const char *";
6266bee191e4SDmitry Chagin 			break;
6267bee191e4SDmitry Chagin 		case 2:
6268bee191e4SDmitry Chagin 			p = "l_int";
6269bee191e4SDmitry Chagin 			break;
6270bee191e4SDmitry Chagin 		case 3:
6271bee191e4SDmitry Chagin 			p = "l_int";
6272bee191e4SDmitry Chagin 			break;
6273bee191e4SDmitry Chagin 		default:
6274bee191e4SDmitry Chagin 			break;
6275bee191e4SDmitry Chagin 		};
6276c0f17173SEdward Tomasz Napierala 		break;
6277c0f17173SEdward Tomasz Napierala 	/* linux_process_madvise */
6278c0f17173SEdward Tomasz Napierala 	case 440:
6279c0f17173SEdward Tomasz Napierala 		break;
6280c0f17173SEdward Tomasz Napierala 	/* linux_epoll_pwait2 */
6281c0f17173SEdward Tomasz Napierala 	case 441:
6282df377f1fSDmitry Chagin 		switch (ndx) {
6283df377f1fSDmitry Chagin 		case 0:
6284df377f1fSDmitry Chagin 			p = "l_int";
6285df377f1fSDmitry Chagin 			break;
6286df377f1fSDmitry Chagin 		case 1:
6287df377f1fSDmitry Chagin 			p = "userland struct epoll_event *";
6288df377f1fSDmitry Chagin 			break;
6289df377f1fSDmitry Chagin 		case 2:
6290df377f1fSDmitry Chagin 			p = "l_int";
6291df377f1fSDmitry Chagin 			break;
6292df377f1fSDmitry Chagin 		case 3:
6293df377f1fSDmitry Chagin 			p = "userland struct l_timespec *";
6294df377f1fSDmitry Chagin 			break;
6295df377f1fSDmitry Chagin 		case 4:
6296df377f1fSDmitry Chagin 			p = "userland l_sigset_t *";
6297df377f1fSDmitry Chagin 			break;
6298df377f1fSDmitry Chagin 		case 5:
6299df377f1fSDmitry Chagin 			p = "l_size_t";
6300df377f1fSDmitry Chagin 			break;
6301df377f1fSDmitry Chagin 		default:
6302df377f1fSDmitry Chagin 			break;
6303df377f1fSDmitry Chagin 		};
6304c0f17173SEdward Tomasz Napierala 		break;
6305c0f17173SEdward Tomasz Napierala 	/* linux_mount_setattr */
6306c0f17173SEdward Tomasz Napierala 	case 442:
6307c0f17173SEdward Tomasz Napierala 		break;
630828035f67SDmitry Chagin 	/* linux_quotactl_fd */
630928035f67SDmitry Chagin 	case 443:
631028035f67SDmitry Chagin 		break;
631128035f67SDmitry Chagin 	/* linux_landlock_create_ruleset */
631228035f67SDmitry Chagin 	case 444:
631328035f67SDmitry Chagin 		break;
631428035f67SDmitry Chagin 	/* linux_landlock_add_rule */
631528035f67SDmitry Chagin 	case 445:
631628035f67SDmitry Chagin 		break;
631728035f67SDmitry Chagin 	/* linux_landlock_restrict_self */
631828035f67SDmitry Chagin 	case 446:
631928035f67SDmitry Chagin 		break;
632028035f67SDmitry Chagin 	/* linux_memfd_secret */
632128035f67SDmitry Chagin 	case 447:
632228035f67SDmitry Chagin 		break;
632328035f67SDmitry Chagin 	/* linux_process_mrelease */
632428035f67SDmitry Chagin 	case 448:
632528035f67SDmitry Chagin 		break;
632628035f67SDmitry Chagin 	/* linux_futex_waitv */
632728035f67SDmitry Chagin 	case 449:
632828035f67SDmitry Chagin 		break;
632928035f67SDmitry Chagin 	/* linux_set_mempolicy_home_node */
633028035f67SDmitry Chagin 	case 450:
633128035f67SDmitry Chagin 		break;
633228035f67SDmitry Chagin 	/* linux_cachestat */
633328035f67SDmitry Chagin 	case 451:
633428035f67SDmitry Chagin 		break;
633528035f67SDmitry Chagin 	/* linux_fchmodat2 */
633628035f67SDmitry Chagin 	case 452:
633728035f67SDmitry Chagin 		break;
63385f2336efSEd Maste 	default:
63395f2336efSEd Maste 		break;
63405f2336efSEd Maste 	};
63415f2336efSEd Maste 	if (p != NULL)
63425f2336efSEd Maste 		strlcpy(desc, p, descsz);
63435f2336efSEd Maste }
63445f2336efSEd Maste static void
systrace_return_setargdesc(int sysnum,int ndx,char * desc,size_t descsz)63455f2336efSEd Maste systrace_return_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
63465f2336efSEd Maste {
63475f2336efSEd Maste 	const char *p = NULL;
63485f2336efSEd Maste 	switch (sysnum) {
63495f2336efSEd Maste 	/* linux_setxattr */
63505f2336efSEd Maste 	case 5:
6351a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
6352a39cdcd7SEdward Tomasz Napierala 			p = "int";
6353a39cdcd7SEdward Tomasz Napierala 		break;
63545f2336efSEd Maste 	/* linux_lsetxattr */
63555f2336efSEd Maste 	case 6:
6356a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
6357a39cdcd7SEdward Tomasz Napierala 			p = "int";
6358a39cdcd7SEdward Tomasz Napierala 		break;
63595f2336efSEd Maste 	/* linux_fsetxattr */
63605f2336efSEd Maste 	case 7:
6361a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
6362a39cdcd7SEdward Tomasz Napierala 			p = "int";
6363a39cdcd7SEdward Tomasz Napierala 		break;
63645f2336efSEd Maste 	/* linux_getxattr */
63655f2336efSEd Maste 	case 8:
6366a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
6367a39cdcd7SEdward Tomasz Napierala 			p = "int";
6368a39cdcd7SEdward Tomasz Napierala 		break;
63695f2336efSEd Maste 	/* linux_lgetxattr */
63705f2336efSEd Maste 	case 9:
6371a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
6372a39cdcd7SEdward Tomasz Napierala 			p = "int";
6373a39cdcd7SEdward Tomasz Napierala 		break;
63745f2336efSEd Maste 	/* linux_fgetxattr */
63755f2336efSEd Maste 	case 10:
6376a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
6377a39cdcd7SEdward Tomasz Napierala 			p = "int";
6378a39cdcd7SEdward Tomasz Napierala 		break;
63795f2336efSEd Maste 	/* linux_listxattr */
63805f2336efSEd Maste 	case 11:
6381a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
6382a39cdcd7SEdward Tomasz Napierala 			p = "int";
6383a39cdcd7SEdward Tomasz Napierala 		break;
63845f2336efSEd Maste 	/* linux_llistxattr */
63855f2336efSEd Maste 	case 12:
6386a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
6387a39cdcd7SEdward Tomasz Napierala 			p = "int";
6388a39cdcd7SEdward Tomasz Napierala 		break;
63895f2336efSEd Maste 	/* linux_flistxattr */
63905f2336efSEd Maste 	case 13:
6391a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
6392a39cdcd7SEdward Tomasz Napierala 			p = "int";
6393a39cdcd7SEdward Tomasz Napierala 		break;
63945f2336efSEd Maste 	/* linux_removexattr */
63955f2336efSEd Maste 	case 14:
6396a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
6397a39cdcd7SEdward Tomasz Napierala 			p = "int";
6398a39cdcd7SEdward Tomasz Napierala 		break;
63995f2336efSEd Maste 	/* linux_lremovexattr */
64005f2336efSEd Maste 	case 15:
6401a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
6402a39cdcd7SEdward Tomasz Napierala 			p = "int";
6403a39cdcd7SEdward Tomasz Napierala 		break;
64045f2336efSEd Maste 	/* linux_fremovexattr */
64055f2336efSEd Maste 	case 16:
6406a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
6407a39cdcd7SEdward Tomasz Napierala 			p = "int";
6408a39cdcd7SEdward Tomasz Napierala 		break;
64095f2336efSEd Maste 	/* linux_getcwd */
64105f2336efSEd Maste 	case 17:
64115f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
64125f2336efSEd Maste 			p = "int";
64135f2336efSEd Maste 		break;
64145f2336efSEd Maste 	/* linux_lookup_dcookie */
64155f2336efSEd Maste 	case 18:
64165f2336efSEd Maste 	/* linux_eventfd2 */
64175f2336efSEd Maste 	case 19:
64185f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
64195f2336efSEd Maste 			p = "int";
64205f2336efSEd Maste 		break;
64215f2336efSEd Maste 	/* linux_epoll_create1 */
64225f2336efSEd Maste 	case 20:
64235f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
64245f2336efSEd Maste 			p = "int";
64255f2336efSEd Maste 		break;
64265f2336efSEd Maste 	/* linux_epoll_ctl */
64275f2336efSEd Maste 	case 21:
64285f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
64295f2336efSEd Maste 			p = "int";
64305f2336efSEd Maste 		break;
64315f2336efSEd Maste 	/* linux_epoll_pwait */
64325f2336efSEd Maste 	case 22:
64335f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
64345f2336efSEd Maste 			p = "int";
64355f2336efSEd Maste 		break;
6436c4db0baaSEd Maste 	/* dup */
6437c4db0baaSEd Maste 	case 23:
6438c4db0baaSEd Maste 		if (ndx == 0 || ndx == 1)
6439c4db0baaSEd Maste 			p = "int";
6440c4db0baaSEd Maste 		break;
64415f2336efSEd Maste 	/* linux_dup3 */
64425f2336efSEd Maste 	case 24:
64435f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
64445f2336efSEd Maste 			p = "int";
64455f2336efSEd Maste 		break;
64465f2336efSEd Maste 	/* linux_fcntl */
64475f2336efSEd Maste 	case 25:
64485f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
64495f2336efSEd Maste 			p = "int";
64505f2336efSEd Maste 		break;
64515f2336efSEd Maste 	/* linux_inotify_init1 */
64525f2336efSEd Maste 	case 26:
64535f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
64545f2336efSEd Maste 			p = "int";
64555f2336efSEd Maste 		break;
64565f2336efSEd Maste 	/* linux_inotify_add_watch */
64575f2336efSEd Maste 	case 27:
64585f2336efSEd Maste 	/* linux_inotify_rm_watch */
64595f2336efSEd Maste 	case 28:
64605f2336efSEd Maste 	/* linux_ioctl */
64615f2336efSEd Maste 	case 29:
64625f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
64635f2336efSEd Maste 			p = "int";
64645f2336efSEd Maste 		break;
64655f2336efSEd Maste 	/* linux_ioprio_set */
64665f2336efSEd Maste 	case 30:
6467b5c0b955SDmitry Chagin 		if (ndx == 0 || ndx == 1)
6468b5c0b955SDmitry Chagin 			p = "int";
6469b5c0b955SDmitry Chagin 		break;
64705f2336efSEd Maste 	/* linux_ioprio_get */
64715f2336efSEd Maste 	case 31:
6472b5c0b955SDmitry Chagin 		if (ndx == 0 || ndx == 1)
6473b5c0b955SDmitry Chagin 			p = "int";
6474b5c0b955SDmitry Chagin 		break;
64755f2336efSEd Maste 	/* flock */
64765f2336efSEd Maste 	case 32:
64775f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
64785f2336efSEd Maste 			p = "int";
64795f2336efSEd Maste 		break;
64805f2336efSEd Maste 	/* linux_mknodat */
64815f2336efSEd Maste 	case 33:
64825f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
64835f2336efSEd Maste 			p = "int";
64845f2336efSEd Maste 		break;
64855f2336efSEd Maste 	/* linux_mkdirat */
64865f2336efSEd Maste 	case 34:
64875f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
64885f2336efSEd Maste 			p = "int";
64895f2336efSEd Maste 		break;
64905f2336efSEd Maste 	/* linux_unlinkat */
64915f2336efSEd Maste 	case 35:
64925f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
64935f2336efSEd Maste 			p = "int";
64945f2336efSEd Maste 		break;
64955f2336efSEd Maste 	/* linux_symlinkat */
64965f2336efSEd Maste 	case 36:
64975f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
64985f2336efSEd Maste 			p = "int";
64995f2336efSEd Maste 		break;
65005f2336efSEd Maste 	/* linux_linkat */
65015f2336efSEd Maste 	case 37:
65025f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65035f2336efSEd Maste 			p = "int";
65045f2336efSEd Maste 		break;
65055f2336efSEd Maste 	/* linux_renameat */
65065f2336efSEd Maste 	case 38:
65075f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65085f2336efSEd Maste 			p = "int";
65095f2336efSEd Maste 		break;
65105f2336efSEd Maste 	/* linux_mount */
65115f2336efSEd Maste 	case 40:
65125f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65135f2336efSEd Maste 			p = "int";
65145f2336efSEd Maste 		break;
65155f2336efSEd Maste 	/* linux_pivot_root */
65165f2336efSEd Maste 	case 41:
65175f2336efSEd Maste 	/* linux_statfs */
65185f2336efSEd Maste 	case 43:
65195f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65205f2336efSEd Maste 			p = "int";
65215f2336efSEd Maste 		break;
65225f2336efSEd Maste 	/* linux_fstatfs */
65235f2336efSEd Maste 	case 44:
65245f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65255f2336efSEd Maste 			p = "int";
65265f2336efSEd Maste 		break;
65275f2336efSEd Maste 	/* linux_truncate */
65285f2336efSEd Maste 	case 45:
65295f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65305f2336efSEd Maste 			p = "int";
65315f2336efSEd Maste 		break;
65325f2336efSEd Maste 	/* linux_ftruncate */
65335f2336efSEd Maste 	case 46:
65345f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65355f2336efSEd Maste 			p = "int";
65365f2336efSEd Maste 		break;
65375f2336efSEd Maste 	/* linux_fallocate */
65385f2336efSEd Maste 	case 47:
65395f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65405f2336efSEd Maste 			p = "int";
65415f2336efSEd Maste 		break;
65425f2336efSEd Maste 	/* linux_faccessat */
65435f2336efSEd Maste 	case 48:
65445f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65455f2336efSEd Maste 			p = "int";
65465f2336efSEd Maste 		break;
65475f2336efSEd Maste 	/* linux_chdir */
65485f2336efSEd Maste 	case 49:
65495f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65505f2336efSEd Maste 			p = "int";
65515f2336efSEd Maste 		break;
65525f2336efSEd Maste 	/* fchdir */
65535f2336efSEd Maste 	case 50:
65545f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65555f2336efSEd Maste 			p = "int";
65565f2336efSEd Maste 		break;
65575f2336efSEd Maste 	/* chroot */
65585f2336efSEd Maste 	case 51:
65595f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65605f2336efSEd Maste 			p = "int";
65615f2336efSEd Maste 		break;
65625f2336efSEd Maste 	/* fchmod */
65635f2336efSEd Maste 	case 52:
65645f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65655f2336efSEd Maste 			p = "int";
65665f2336efSEd Maste 		break;
65675f2336efSEd Maste 	/* linux_fchmodat */
65685f2336efSEd Maste 	case 53:
65695f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65705f2336efSEd Maste 			p = "int";
65715f2336efSEd Maste 		break;
65725f2336efSEd Maste 	/* linux_fchownat */
65735f2336efSEd Maste 	case 54:
65745f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65755f2336efSEd Maste 			p = "int";
65765f2336efSEd Maste 		break;
65775f2336efSEd Maste 	/* fchown */
65785f2336efSEd Maste 	case 55:
65795f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65805f2336efSEd Maste 			p = "int";
65815f2336efSEd Maste 		break;
65825f2336efSEd Maste 	/* linux_openat */
65835f2336efSEd Maste 	case 56:
65845f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65855f2336efSEd Maste 			p = "int";
65865f2336efSEd Maste 		break;
65875f2336efSEd Maste 	/* close */
65885f2336efSEd Maste 	case 57:
65895f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65905f2336efSEd Maste 			p = "int";
65915f2336efSEd Maste 		break;
65925f2336efSEd Maste 	/* linux_vhangup */
65935f2336efSEd Maste 	case 58:
65945f2336efSEd Maste 	/* linux_pipe2 */
65955f2336efSEd Maste 	case 59:
65965f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65975f2336efSEd Maste 			p = "int";
65985f2336efSEd Maste 		break;
65995f2336efSEd Maste 	/* linux_getdents64 */
66005f2336efSEd Maste 	case 61:
66015f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66025f2336efSEd Maste 			p = "int";
66035f2336efSEd Maste 		break;
66045f2336efSEd Maste 	/* linux_lseek */
66055f2336efSEd Maste 	case 62:
66065f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66075f2336efSEd Maste 			p = "int";
66085f2336efSEd Maste 		break;
66095f2336efSEd Maste 	/* read */
66105f2336efSEd Maste 	case 63:
66115f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66125f2336efSEd Maste 			p = "int";
66135f2336efSEd Maste 		break;
661489d270b2SDmitry Chagin 	/* linux_write */
66155f2336efSEd Maste 	case 64:
66165f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66175f2336efSEd Maste 			p = "int";
66185f2336efSEd Maste 		break;
66195f2336efSEd Maste 	/* readv */
66205f2336efSEd Maste 	case 65:
66215f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66225f2336efSEd Maste 			p = "int";
66235f2336efSEd Maste 		break;
66241f9d71eeSDmitry Chagin 	/* linux_writev */
66255f2336efSEd Maste 	case 66:
66265f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66275f2336efSEd Maste 			p = "int";
66285f2336efSEd Maste 		break;
66295f2336efSEd Maste 	/* linux_pread */
66305f2336efSEd Maste 	case 67:
66315f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66325f2336efSEd Maste 			p = "int";
66335f2336efSEd Maste 		break;
66345f2336efSEd Maste 	/* linux_pwrite */
66355f2336efSEd Maste 	case 68:
66365f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66375f2336efSEd Maste 			p = "int";
66385f2336efSEd Maste 		break;
66395f2336efSEd Maste 	/* linux_preadv */
66405f2336efSEd Maste 	case 69:
66415f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66425f2336efSEd Maste 			p = "int";
66435f2336efSEd Maste 		break;
66445f2336efSEd Maste 	/* linux_pwritev */
66455f2336efSEd Maste 	case 70:
66465f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66475f2336efSEd Maste 			p = "int";
66485f2336efSEd Maste 		break;
66495f2336efSEd Maste 	/* linux_sendfile */
66505f2336efSEd Maste 	case 71:
66515f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66525f2336efSEd Maste 			p = "int";
66535f2336efSEd Maste 		break;
66545f2336efSEd Maste 	/* linux_pselect6 */
66555f2336efSEd Maste 	case 72:
66565f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66575f2336efSEd Maste 			p = "int";
66585f2336efSEd Maste 		break;
66595f2336efSEd Maste 	/* linux_ppoll */
66605f2336efSEd Maste 	case 73:
66615f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66625f2336efSEd Maste 			p = "int";
66635f2336efSEd Maste 		break;
66645f2336efSEd Maste 	/* linux_signalfd4 */
66655f2336efSEd Maste 	case 74:
66665f2336efSEd Maste 	/* linux_vmsplice */
66675f2336efSEd Maste 	case 75:
66685f2336efSEd Maste 	/* linux_splice */
66695f2336efSEd Maste 	case 76:
66703e9a2142SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
66713e9a2142SEdward Tomasz Napierala 			p = "int";
66723e9a2142SEdward Tomasz Napierala 		break;
66735f2336efSEd Maste 	/* linux_tee */
66745f2336efSEd Maste 	case 77:
66755f2336efSEd Maste 	/* linux_readlinkat */
66765f2336efSEd Maste 	case 78:
66775f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66785f2336efSEd Maste 			p = "int";
66795f2336efSEd Maste 		break;
66805f2336efSEd Maste 	/* linux_newfstatat */
66815f2336efSEd Maste 	case 79:
66825f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66835f2336efSEd Maste 			p = "int";
66845f2336efSEd Maste 		break;
66855f2336efSEd Maste 	/* linux_newfstat */
66865f2336efSEd Maste 	case 80:
66875f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66885f2336efSEd Maste 			p = "int";
66895f2336efSEd Maste 		break;
66905f2336efSEd Maste 	/* fsync */
66915f2336efSEd Maste 	case 82:
66925f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66935f2336efSEd Maste 			p = "int";
66945f2336efSEd Maste 		break;
66955f2336efSEd Maste 	/* linux_fdatasync */
66965f2336efSEd Maste 	case 83:
66975f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66985f2336efSEd Maste 			p = "int";
66995f2336efSEd Maste 		break;
67005f2336efSEd Maste 	/* linux_sync_file_range */
67015f2336efSEd Maste 	case 84:
67020cde2b32SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
67030cde2b32SEdward Tomasz Napierala 			p = "int";
67040cde2b32SEdward Tomasz Napierala 		break;
67055f2336efSEd Maste 	/* linux_timerfd_create */
67065f2336efSEd Maste 	case 85:
67075f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67085f2336efSEd Maste 			p = "int";
67095f2336efSEd Maste 		break;
67105f2336efSEd Maste 	/* linux_timerfd_settime */
67115f2336efSEd Maste 	case 86:
67125f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67135f2336efSEd Maste 			p = "int";
67145f2336efSEd Maste 		break;
67155f2336efSEd Maste 	/* linux_timerfd_gettime */
67165f2336efSEd Maste 	case 87:
67175f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67185f2336efSEd Maste 			p = "int";
67195f2336efSEd Maste 		break;
67205f2336efSEd Maste 	/* linux_utimensat */
67215f2336efSEd Maste 	case 88:
67225f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67235f2336efSEd Maste 			p = "int";
67245f2336efSEd Maste 		break;
67255f2336efSEd Maste 	/* acct */
67265f2336efSEd Maste 	case 89:
67275f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67285f2336efSEd Maste 			p = "int";
67295f2336efSEd Maste 		break;
67305f2336efSEd Maste 	/* linux_capget */
67315f2336efSEd Maste 	case 90:
67325f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67335f2336efSEd Maste 			p = "int";
67345f2336efSEd Maste 		break;
67355f2336efSEd Maste 	/* linux_capset */
67365f2336efSEd Maste 	case 91:
67375f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67385f2336efSEd Maste 			p = "int";
67395f2336efSEd Maste 		break;
67405f2336efSEd Maste 	/* linux_personality */
67415f2336efSEd Maste 	case 92:
67425f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67435f2336efSEd Maste 			p = "int";
67445f2336efSEd Maste 		break;
67455f2336efSEd Maste 	/* linux_exit */
67465f2336efSEd Maste 	case 93:
67475f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67485f2336efSEd Maste 			p = "int";
67495f2336efSEd Maste 		break;
67505f2336efSEd Maste 	/* linux_exit_group */
67515f2336efSEd Maste 	case 94:
67525f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67535f2336efSEd Maste 			p = "int";
67545f2336efSEd Maste 		break;
67555f2336efSEd Maste 	/* linux_waitid */
67565f2336efSEd Maste 	case 95:
67575f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67585f2336efSEd Maste 			p = "int";
67595f2336efSEd Maste 		break;
67605f2336efSEd Maste 	/* linux_set_tid_address */
67615f2336efSEd Maste 	case 96:
67625f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67635f2336efSEd Maste 			p = "int";
67645f2336efSEd Maste 		break;
67655f2336efSEd Maste 	/* linux_unshare */
67665f2336efSEd Maste 	case 97:
67675f2336efSEd Maste 	/* linux_sys_futex */
67685f2336efSEd Maste 	case 98:
67695f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67705f2336efSEd Maste 			p = "int";
67715f2336efSEd Maste 		break;
67725f2336efSEd Maste 	/* linux_set_robust_list */
67735f2336efSEd Maste 	case 99:
67745f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67755f2336efSEd Maste 			p = "int";
67765f2336efSEd Maste 		break;
67775f2336efSEd Maste 	/* linux_get_robust_list */
67785f2336efSEd Maste 	case 100:
67795f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67805f2336efSEd Maste 			p = "int";
67815f2336efSEd Maste 		break;
67825f2336efSEd Maste 	/* linux_nanosleep */
67835f2336efSEd Maste 	case 101:
67845f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67855f2336efSEd Maste 			p = "int";
67865f2336efSEd Maste 		break;
67875f2336efSEd Maste 	/* linux_getitimer */
67885f2336efSEd Maste 	case 102:
67895f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67905f2336efSEd Maste 			p = "int";
67915f2336efSEd Maste 		break;
67925f2336efSEd Maste 	/* linux_setitimer */
67935f2336efSEd Maste 	case 103:
67945f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67955f2336efSEd Maste 			p = "int";
67965f2336efSEd Maste 		break;
67975f2336efSEd Maste 	/* linux_kexec_load */
67985f2336efSEd Maste 	case 104:
67995f2336efSEd Maste 	/* linux_init_module */
68005f2336efSEd Maste 	case 105:
68015f2336efSEd Maste 	/* linux_delete_module */
68025f2336efSEd Maste 	case 106:
68035f2336efSEd Maste 	/* linux_timer_create */
68045f2336efSEd Maste 	case 107:
68055f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68065f2336efSEd Maste 			p = "int";
68075f2336efSEd Maste 		break;
68085f2336efSEd Maste 	/* linux_timer_gettime */
68095f2336efSEd Maste 	case 108:
68105f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68115f2336efSEd Maste 			p = "int";
68125f2336efSEd Maste 		break;
68135f2336efSEd Maste 	/* linux_timer_getoverrun */
68145f2336efSEd Maste 	case 109:
68155f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68165f2336efSEd Maste 			p = "int";
68175f2336efSEd Maste 		break;
68185f2336efSEd Maste 	/* linux_timer_settime */
68195f2336efSEd Maste 	case 110:
68205f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68215f2336efSEd Maste 			p = "int";
68225f2336efSEd Maste 		break;
68235f2336efSEd Maste 	/* linux_timer_delete */
68245f2336efSEd Maste 	case 111:
68255f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68265f2336efSEd Maste 			p = "int";
68275f2336efSEd Maste 		break;
68285f2336efSEd Maste 	/* linux_clock_settime */
68295f2336efSEd Maste 	case 112:
68305f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68315f2336efSEd Maste 			p = "int";
68325f2336efSEd Maste 		break;
68335f2336efSEd Maste 	/* linux_clock_gettime */
68345f2336efSEd Maste 	case 113:
68355f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68365f2336efSEd Maste 			p = "int";
68375f2336efSEd Maste 		break;
68385f2336efSEd Maste 	/* linux_clock_getres */
68395f2336efSEd Maste 	case 114:
68405f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68415f2336efSEd Maste 			p = "int";
68425f2336efSEd Maste 		break;
68435f2336efSEd Maste 	/* linux_clock_nanosleep */
68445f2336efSEd Maste 	case 115:
68455f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68465f2336efSEd Maste 			p = "int";
68475f2336efSEd Maste 		break;
68485f2336efSEd Maste 	/* linux_syslog */
68495f2336efSEd Maste 	case 116:
68505f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68515f2336efSEd Maste 			p = "int";
68525f2336efSEd Maste 		break;
68535f2336efSEd Maste 	/* linux_ptrace */
68545f2336efSEd Maste 	case 117:
68555f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68565f2336efSEd Maste 			p = "int";
68575f2336efSEd Maste 		break;
68585f2336efSEd Maste 	/* linux_sched_setparam */
68595f2336efSEd Maste 	case 118:
68605f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68615f2336efSEd Maste 			p = "int";
68625f2336efSEd Maste 		break;
68635f2336efSEd Maste 	/* linux_sched_setscheduler */
68645f2336efSEd Maste 	case 119:
68655f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68665f2336efSEd Maste 			p = "int";
68675f2336efSEd Maste 		break;
68685f2336efSEd Maste 	/* linux_sched_getscheduler */
68695f2336efSEd Maste 	case 120:
68705f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68715f2336efSEd Maste 			p = "int";
68725f2336efSEd Maste 		break;
68735f2336efSEd Maste 	/* linux_sched_getparam */
68745f2336efSEd Maste 	case 121:
68755f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68765f2336efSEd Maste 			p = "int";
68775f2336efSEd Maste 		break;
68785f2336efSEd Maste 	/* linux_sched_setaffinity */
68795f2336efSEd Maste 	case 122:
68805f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68815f2336efSEd Maste 			p = "int";
68825f2336efSEd Maste 		break;
68835f2336efSEd Maste 	/* linux_sched_getaffinity */
68845f2336efSEd Maste 	case 123:
68855f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68865f2336efSEd Maste 			p = "int";
68875f2336efSEd Maste 		break;
68885f2336efSEd Maste 	/* sched_yield */
68895f2336efSEd Maste 	case 124:
68905f2336efSEd Maste 	/* linux_sched_get_priority_max */
68915f2336efSEd Maste 	case 125:
68925f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68935f2336efSEd Maste 			p = "int";
68945f2336efSEd Maste 		break;
68955f2336efSEd Maste 	/* linux_sched_get_priority_min */
68965f2336efSEd Maste 	case 126:
68975f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68985f2336efSEd Maste 			p = "int";
68995f2336efSEd Maste 		break;
69005f2336efSEd Maste 	/* linux_sched_rr_get_interval */
69015f2336efSEd Maste 	case 127:
69025f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
69035f2336efSEd Maste 			p = "int";
69045f2336efSEd Maste 		break;
69055f2336efSEd Maste 	/* linux_kill */
69065f2336efSEd Maste 	case 129:
69075f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
69085f2336efSEd Maste 			p = "int";
69095f2336efSEd Maste 		break;
69105f2336efSEd Maste 	/* linux_tkill */
69115f2336efSEd Maste 	case 130:
69125f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
69135f2336efSEd Maste 			p = "int";
69145f2336efSEd Maste 		break;
69155f2336efSEd Maste 	/* linux_tgkill */
69165f2336efSEd Maste 	case 131:
69175f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
69185f2336efSEd Maste 			p = "int";
69195f2336efSEd Maste 		break;
69205f2336efSEd Maste 	/* linux_sigaltstack */
69215f2336efSEd Maste 	case 132:
69225f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
69235f2336efSEd Maste 			p = "int";
69245f2336efSEd Maste 		break;
69255f2336efSEd Maste 	/* linux_rt_sigsuspend */
69265f2336efSEd Maste 	case 133:
69275f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
69285f2336efSEd Maste 			p = "int";
69295f2336efSEd Maste 		break;
69305f2336efSEd Maste 	/* linux_rt_sigaction */
69315f2336efSEd Maste 	case 134:
69325f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
69335f2336efSEd Maste 			p = "int";
69345f2336efSEd Maste 		break;
69355f2336efSEd Maste 	/* linux_rt_sigprocmask */
69365f2336efSEd Maste 	case 135:
69375f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
69385f2336efSEd Maste 			p = "int";
69395f2336efSEd Maste 		break;
69405f2336efSEd Maste 	/* linux_rt_sigpending */
69415f2336efSEd Maste 	case 136:
69425f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
69435f2336efSEd Maste 			p = "int";
69445f2336efSEd Maste 		break;
69455f2336efSEd Maste 	/* linux_rt_sigtimedwait */
69465f2336efSEd Maste 	case 137:
69475f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
69485f2336efSEd Maste 			p = "int";
69495f2336efSEd Maste 		break;
69505f2336efSEd Maste 	/* linux_rt_sigqueueinfo */
69515f2336efSEd Maste 	case 138:
69525f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
69535f2336efSEd Maste 			p = "int";
69545f2336efSEd Maste 		break;
69555f2336efSEd Maste 	/* linux_rt_sigreturn */
69565f2336efSEd Maste 	case 139:
69575f2336efSEd Maste 	/* setpriority */
69585f2336efSEd Maste 	case 140:
69595f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
69605f2336efSEd Maste 			p = "int";
69615f2336efSEd Maste 		break;
69625f2336efSEd Maste 	/* linux_getpriority */
69635f2336efSEd Maste 	case 141:
69645f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
69655f2336efSEd Maste 			p = "int";
69665f2336efSEd Maste 		break;
69675f2336efSEd Maste 	/* linux_reboot */
69685f2336efSEd Maste 	case 142:
69695f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
69705f2336efSEd Maste 			p = "int";
69715f2336efSEd Maste 		break;
69725f2336efSEd Maste 	/* setregid */
69735f2336efSEd Maste 	case 143:
69745f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
69755f2336efSEd Maste 			p = "int";
69765f2336efSEd Maste 		break;
69775f2336efSEd Maste 	/* setgid */
69785f2336efSEd Maste 	case 144:
69795f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
69805f2336efSEd Maste 			p = "int";
69815f2336efSEd Maste 		break;
69825f2336efSEd Maste 	/* setreuid */
69835f2336efSEd Maste 	case 145:
69845f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
69855f2336efSEd Maste 			p = "int";
69865f2336efSEd Maste 		break;
69875f2336efSEd Maste 	/* setuid */
69885f2336efSEd Maste 	case 146:
69895f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
69905f2336efSEd Maste 			p = "int";
69915f2336efSEd Maste 		break;
69925f2336efSEd Maste 	/* setresuid */
69935f2336efSEd Maste 	case 147:
69945f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
69955f2336efSEd Maste 			p = "int";
69965f2336efSEd Maste 		break;
69975f2336efSEd Maste 	/* getresuid */
69985f2336efSEd Maste 	case 148:
69995f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70005f2336efSEd Maste 			p = "int";
70015f2336efSEd Maste 		break;
70025f2336efSEd Maste 	/* setresgid */
70035f2336efSEd Maste 	case 149:
70045f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70055f2336efSEd Maste 			p = "int";
70065f2336efSEd Maste 		break;
70075f2336efSEd Maste 	/* getresgid */
70085f2336efSEd Maste 	case 150:
70095f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70105f2336efSEd Maste 			p = "int";
70115f2336efSEd Maste 		break;
70125f2336efSEd Maste 	/* linux_setfsuid */
70135f2336efSEd Maste 	case 151:
70145f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70155f2336efSEd Maste 			p = "int";
70165f2336efSEd Maste 		break;
70175f2336efSEd Maste 	/* linux_setfsgid */
70185f2336efSEd Maste 	case 152:
70195f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70205f2336efSEd Maste 			p = "int";
70215f2336efSEd Maste 		break;
70225f2336efSEd Maste 	/* linux_times */
70235f2336efSEd Maste 	case 153:
70245f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70255f2336efSEd Maste 			p = "int";
70265f2336efSEd Maste 		break;
70275f2336efSEd Maste 	/* setpgid */
70285f2336efSEd Maste 	case 154:
70295f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70305f2336efSEd Maste 			p = "int";
70315f2336efSEd Maste 		break;
70325f2336efSEd Maste 	/* getpgid */
70335f2336efSEd Maste 	case 155:
70345f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70355f2336efSEd Maste 			p = "int";
70365f2336efSEd Maste 		break;
70375f2336efSEd Maste 	/* linux_getsid */
70385f2336efSEd Maste 	case 156:
70395f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70405f2336efSEd Maste 			p = "int";
70415f2336efSEd Maste 		break;
70425f2336efSEd Maste 	/* setsid */
70435f2336efSEd Maste 	case 157:
70445f2336efSEd Maste 	/* linux_getgroups */
70455f2336efSEd Maste 	case 158:
70465f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70475f2336efSEd Maste 			p = "int";
70485f2336efSEd Maste 		break;
70495f2336efSEd Maste 	/* linux_setgroups */
70505f2336efSEd Maste 	case 159:
70515f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70525f2336efSEd Maste 			p = "int";
70535f2336efSEd Maste 		break;
70545f2336efSEd Maste 	/* linux_newuname */
70555f2336efSEd Maste 	case 160:
70565f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70575f2336efSEd Maste 			p = "int";
70585f2336efSEd Maste 		break;
70595f2336efSEd Maste 	/* linux_sethostname */
70605f2336efSEd Maste 	case 161:
70615f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70625f2336efSEd Maste 			p = "int";
70635f2336efSEd Maste 		break;
70645f2336efSEd Maste 	/* linux_setdomainname */
70655f2336efSEd Maste 	case 162:
70665f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70675f2336efSEd Maste 			p = "int";
70685f2336efSEd Maste 		break;
70695f2336efSEd Maste 	/* linux_getrlimit */
70705f2336efSEd Maste 	case 163:
70715f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70725f2336efSEd Maste 			p = "int";
70735f2336efSEd Maste 		break;
70745f2336efSEd Maste 	/* linux_setrlimit */
70755f2336efSEd Maste 	case 164:
70765f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70775f2336efSEd Maste 			p = "int";
70785f2336efSEd Maste 		break;
70795f2336efSEd Maste 	/* getrusage */
70805f2336efSEd Maste 	case 165:
70815f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70825f2336efSEd Maste 			p = "int";
70835f2336efSEd Maste 		break;
70845f2336efSEd Maste 	/* umask */
70855f2336efSEd Maste 	case 166:
70865f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70875f2336efSEd Maste 			p = "int";
70885f2336efSEd Maste 		break;
70895f2336efSEd Maste 	/* linux_prctl */
70905f2336efSEd Maste 	case 167:
70915f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70925f2336efSEd Maste 			p = "int";
70935f2336efSEd Maste 		break;
70945f2336efSEd Maste 	/* linux_getcpu */
70955f2336efSEd Maste 	case 168:
70965f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70975f2336efSEd Maste 			p = "int";
70985f2336efSEd Maste 		break;
70995f2336efSEd Maste 	/* gettimeofday */
71005f2336efSEd Maste 	case 169:
71015f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
71025f2336efSEd Maste 			p = "int";
71035f2336efSEd Maste 		break;
71045f2336efSEd Maste 	/* settimeofday */
71055f2336efSEd Maste 	case 170:
71065f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
71075f2336efSEd Maste 			p = "int";
71085f2336efSEd Maste 		break;
71095f2336efSEd Maste 	/* linux_adjtimex */
71105f2336efSEd Maste 	case 171:
71115f2336efSEd Maste 	/* linux_getpid */
71125f2336efSEd Maste 	case 172:
71135f2336efSEd Maste 	/* linux_getppid */
71145f2336efSEd Maste 	case 173:
71155f2336efSEd Maste 	/* linux_getuid */
71165f2336efSEd Maste 	case 174:
71175f2336efSEd Maste 	/* geteuid */
71185f2336efSEd Maste 	case 175:
71195f2336efSEd Maste 	/* linux_getgid */
71205f2336efSEd Maste 	case 176:
71215f2336efSEd Maste 	/* getegid */
71225f2336efSEd Maste 	case 177:
71235f2336efSEd Maste 	/* linux_gettid */
71245f2336efSEd Maste 	case 178:
71255f2336efSEd Maste 	/* linux_sysinfo */
71265f2336efSEd Maste 	case 179:
71275f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
71285f2336efSEd Maste 			p = "int";
71295f2336efSEd Maste 		break;
71305f2336efSEd Maste 	/* linux_mq_open */
71315f2336efSEd Maste 	case 180:
7132a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
7133a39cdcd7SEdward Tomasz Napierala 			p = "int";
7134a39cdcd7SEdward Tomasz Napierala 		break;
71355f2336efSEd Maste 	/* linux_mq_unlink */
71365f2336efSEd Maste 	case 181:
7137a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
7138a39cdcd7SEdward Tomasz Napierala 			p = "int";
7139a39cdcd7SEdward Tomasz Napierala 		break;
71405f2336efSEd Maste 	/* linux_mq_timedsend */
71415f2336efSEd Maste 	case 182:
7142a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
7143a39cdcd7SEdward Tomasz Napierala 			p = "int";
7144a39cdcd7SEdward Tomasz Napierala 		break;
71455f2336efSEd Maste 	/* linux_mq_timedreceive */
71465f2336efSEd Maste 	case 183:
7147a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
7148a39cdcd7SEdward Tomasz Napierala 			p = "int";
7149a39cdcd7SEdward Tomasz Napierala 		break;
71505f2336efSEd Maste 	/* linux_mq_notify */
71515f2336efSEd Maste 	case 184:
7152a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
7153a39cdcd7SEdward Tomasz Napierala 			p = "int";
7154a39cdcd7SEdward Tomasz Napierala 		break;
71555f2336efSEd Maste 	/* linux_mq_getsetattr */
71565f2336efSEd Maste 	case 185:
7157a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
7158a39cdcd7SEdward Tomasz Napierala 			p = "int";
7159a39cdcd7SEdward Tomasz Napierala 		break;
71605f2336efSEd Maste 	/* linux_msgget */
71615f2336efSEd Maste 	case 186:
71625f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
71635f2336efSEd Maste 			p = "int";
71645f2336efSEd Maste 		break;
71655f2336efSEd Maste 	/* linux_msgctl */
71665f2336efSEd Maste 	case 187:
71675f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
71685f2336efSEd Maste 			p = "int";
71695f2336efSEd Maste 		break;
71705f2336efSEd Maste 	/* linux_msgrcv */
71715f2336efSEd Maste 	case 188:
71725f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
71735f2336efSEd Maste 			p = "int";
71745f2336efSEd Maste 		break;
71755f2336efSEd Maste 	/* linux_msgsnd */
71765f2336efSEd Maste 	case 189:
71775f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
71785f2336efSEd Maste 			p = "int";
71795f2336efSEd Maste 		break;
71805f2336efSEd Maste 	/* linux_semget */
71815f2336efSEd Maste 	case 190:
71825f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
71835f2336efSEd Maste 			p = "int";
71845f2336efSEd Maste 		break;
71855f2336efSEd Maste 	/* linux_semctl */
71865f2336efSEd Maste 	case 191:
71875f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
71885f2336efSEd Maste 			p = "int";
71895f2336efSEd Maste 		break;
71905f2336efSEd Maste 	/* linux_semtimedop */
71915f2336efSEd Maste 	case 192:
7192430460d7SDmitry Chagin 		if (ndx == 0 || ndx == 1)
7193430460d7SDmitry Chagin 			p = "int";
7194430460d7SDmitry Chagin 		break;
7195cd875998SDmitry Chagin 	/* semop */
71965f2336efSEd Maste 	case 193:
71975f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
71985f2336efSEd Maste 			p = "int";
71995f2336efSEd Maste 		break;
72005f2336efSEd Maste 	/* linux_shmget */
72015f2336efSEd Maste 	case 194:
72025f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72035f2336efSEd Maste 			p = "int";
72045f2336efSEd Maste 		break;
72055f2336efSEd Maste 	/* linux_shmctl */
72065f2336efSEd Maste 	case 195:
72075f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72085f2336efSEd Maste 			p = "int";
72095f2336efSEd Maste 		break;
72105f2336efSEd Maste 	/* linux_shmat */
72115f2336efSEd Maste 	case 196:
72125f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72135f2336efSEd Maste 			p = "int";
72145f2336efSEd Maste 		break;
72155f2336efSEd Maste 	/* linux_shmdt */
72165f2336efSEd Maste 	case 197:
72175f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72185f2336efSEd Maste 			p = "int";
72195f2336efSEd Maste 		break;
72205f2336efSEd Maste 	/* linux_socket */
72215f2336efSEd Maste 	case 198:
72225f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72235f2336efSEd Maste 			p = "int";
72245f2336efSEd Maste 		break;
72255f2336efSEd Maste 	/* linux_socketpair */
72265f2336efSEd Maste 	case 199:
72275f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72285f2336efSEd Maste 			p = "int";
72295f2336efSEd Maste 		break;
72305f2336efSEd Maste 	/* linux_bind */
72315f2336efSEd Maste 	case 200:
72325f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72335f2336efSEd Maste 			p = "int";
72345f2336efSEd Maste 		break;
72355f2336efSEd Maste 	/* linux_listen */
72365f2336efSEd Maste 	case 201:
72375f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72385f2336efSEd Maste 			p = "int";
72395f2336efSEd Maste 		break;
72405f2336efSEd Maste 	/* linux_accept */
72415f2336efSEd Maste 	case 202:
72425f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72435f2336efSEd Maste 			p = "int";
72445f2336efSEd Maste 		break;
72455f2336efSEd Maste 	/* linux_connect */
72465f2336efSEd Maste 	case 203:
72475f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72485f2336efSEd Maste 			p = "int";
72495f2336efSEd Maste 		break;
72505f2336efSEd Maste 	/* linux_getsockname */
72515f2336efSEd Maste 	case 204:
72525f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72535f2336efSEd Maste 			p = "int";
72545f2336efSEd Maste 		break;
72555f2336efSEd Maste 	/* linux_getpeername */
72565f2336efSEd Maste 	case 205:
72575f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72585f2336efSEd Maste 			p = "int";
72595f2336efSEd Maste 		break;
72605f2336efSEd Maste 	/* linux_sendto */
72615f2336efSEd Maste 	case 206:
72625f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72635f2336efSEd Maste 			p = "int";
72645f2336efSEd Maste 		break;
72655f2336efSEd Maste 	/* linux_recvfrom */
72665f2336efSEd Maste 	case 207:
72675f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72685f2336efSEd Maste 			p = "int";
72695f2336efSEd Maste 		break;
72705f2336efSEd Maste 	/* linux_setsockopt */
72715f2336efSEd Maste 	case 208:
72725f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72735f2336efSEd Maste 			p = "int";
72745f2336efSEd Maste 		break;
72755f2336efSEd Maste 	/* linux_getsockopt */
72765f2336efSEd Maste 	case 209:
72775f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72785f2336efSEd Maste 			p = "int";
72795f2336efSEd Maste 		break;
72805f2336efSEd Maste 	/* linux_shutdown */
72815f2336efSEd Maste 	case 210:
72825f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72835f2336efSEd Maste 			p = "int";
72845f2336efSEd Maste 		break;
72855f2336efSEd Maste 	/* linux_sendmsg */
72865f2336efSEd Maste 	case 211:
72875f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72885f2336efSEd Maste 			p = "int";
72895f2336efSEd Maste 		break;
72905f2336efSEd Maste 	/* linux_recvmsg */
72915f2336efSEd Maste 	case 212:
72925f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72935f2336efSEd Maste 			p = "int";
72945f2336efSEd Maste 		break;
72955f2336efSEd Maste 	/* linux_brk */
72965f2336efSEd Maste 	case 214:
72975f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72985f2336efSEd Maste 			p = "int";
72995f2336efSEd Maste 		break;
73005f2336efSEd Maste 	/* munmap */
73015f2336efSEd Maste 	case 215:
73025f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
73035f2336efSEd Maste 			p = "int";
73045f2336efSEd Maste 		break;
73055f2336efSEd Maste 	/* linux_mremap */
73065f2336efSEd Maste 	case 216:
73075f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
73085f2336efSEd Maste 			p = "int";
73095f2336efSEd Maste 		break;
73105f2336efSEd Maste 	/* linux_add_key */
73115f2336efSEd Maste 	case 217:
73125f2336efSEd Maste 	/* linux_request_key */
73135f2336efSEd Maste 	case 218:
73145f2336efSEd Maste 	/* linux_keyctl */
73155f2336efSEd Maste 	case 219:
73165f2336efSEd Maste 	/* linux_clone */
73175f2336efSEd Maste 	case 220:
73185f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
73195f2336efSEd Maste 			p = "int";
73205f2336efSEd Maste 		break;
73215f2336efSEd Maste 	/* linux_execve */
73225f2336efSEd Maste 	case 221:
73235f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
73245f2336efSEd Maste 			p = "int";
73255f2336efSEd Maste 		break;
73265f2336efSEd Maste 	/* linux_mmap2 */
73275f2336efSEd Maste 	case 222:
73285f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
73295f2336efSEd Maste 			p = "int";
73305f2336efSEd Maste 		break;
73315f2336efSEd Maste 	/* linux_fadvise64 */
73325f2336efSEd Maste 	case 223:
73335f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
73345f2336efSEd Maste 			p = "int";
73355f2336efSEd Maste 		break;
73365f2336efSEd Maste 	/* swapon */
73375f2336efSEd Maste 	case 224:
73385f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
73395f2336efSEd Maste 			p = "int";
73405f2336efSEd Maste 		break;
73415f2336efSEd Maste 	/* linux_swapoff */
73425f2336efSEd Maste 	case 225:
73435f2336efSEd Maste 	/* linux_mprotect */
73445f2336efSEd Maste 	case 226:
73455f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
73465f2336efSEd Maste 			p = "int";
73475f2336efSEd Maste 		break;
73485f2336efSEd Maste 	/* linux_msync */
73495f2336efSEd Maste 	case 227:
73505f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
73515f2336efSEd Maste 			p = "int";
73525f2336efSEd Maste 		break;
73535f2336efSEd Maste 	/* mlock */
73545f2336efSEd Maste 	case 228:
73555f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
73565f2336efSEd Maste 			p = "int";
73575f2336efSEd Maste 		break;
73585f2336efSEd Maste 	/* munlock */
73595f2336efSEd Maste 	case 229:
73605f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
73615f2336efSEd Maste 			p = "int";
73625f2336efSEd Maste 		break;
73635f2336efSEd Maste 	/* mlockall */
73645f2336efSEd Maste 	case 230:
73655f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
73665f2336efSEd Maste 			p = "int";
73675f2336efSEd Maste 		break;
73685f2336efSEd Maste 	/* munlockall */
73695f2336efSEd Maste 	case 231:
73705f2336efSEd Maste 	/* linux_mincore */
73715f2336efSEd Maste 	case 232:
73725f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
73735f2336efSEd Maste 			p = "int";
73745f2336efSEd Maste 		break;
7375bafd96b8SEdward Tomasz Napierala 	/* linux_madvise */
73765f2336efSEd Maste 	case 233:
73775f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
73785f2336efSEd Maste 			p = "int";
73795f2336efSEd Maste 		break;
73805f2336efSEd Maste 	/* linux_remap_file_pages */
73815f2336efSEd Maste 	case 234:
73825f2336efSEd Maste 	/* linux_mbind */
73835f2336efSEd Maste 	case 235:
73845f2336efSEd Maste 	/* linux_get_mempolicy */
73855f2336efSEd Maste 	case 236:
73865f2336efSEd Maste 	/* linux_set_mempolicy */
73875f2336efSEd Maste 	case 237:
73885f2336efSEd Maste 	/* linux_migrate_pages */
73895f2336efSEd Maste 	case 238:
73905f2336efSEd Maste 	/* linux_move_pages */
73915f2336efSEd Maste 	case 239:
73925f2336efSEd Maste 	/* linux_rt_tgsigqueueinfo */
73935f2336efSEd Maste 	case 240:
73945f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
73955f2336efSEd Maste 			p = "int";
73965f2336efSEd Maste 		break;
73975f2336efSEd Maste 	/* linux_perf_event_open */
73985f2336efSEd Maste 	case 241:
73995f2336efSEd Maste 	/* linux_accept4 */
74005f2336efSEd Maste 	case 242:
74015f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
74025f2336efSEd Maste 			p = "int";
74035f2336efSEd Maste 		break;
74045f2336efSEd Maste 	/* linux_recvmmsg */
74055f2336efSEd Maste 	case 243:
74065f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
74075f2336efSEd Maste 			p = "int";
74085f2336efSEd Maste 		break;
74095f2336efSEd Maste 	/* linux_wait4 */
74105f2336efSEd Maste 	case 260:
74115f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
74125f2336efSEd Maste 			p = "int";
74135f2336efSEd Maste 		break;
74145f2336efSEd Maste 	/* linux_prlimit64 */
74155f2336efSEd Maste 	case 261:
74165f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
74175f2336efSEd Maste 			p = "int";
74185f2336efSEd Maste 		break;
74195f2336efSEd Maste 	/* linux_fanotify_init */
74205f2336efSEd Maste 	case 262:
74215f2336efSEd Maste 	/* linux_fanotify_mark */
74225f2336efSEd Maste 	case 263:
74235f2336efSEd Maste 	/* linux_name_to_handle_at */
74245f2336efSEd Maste 	case 264:
742577eb9841SConrad Meyer 		if (ndx == 0 || ndx == 1)
742677eb9841SConrad Meyer 			p = "int";
742777eb9841SConrad Meyer 		break;
74285f2336efSEd Maste 	/* linux_open_by_handle_at */
74295f2336efSEd Maste 	case 265:
743077eb9841SConrad Meyer 		if (ndx == 0 || ndx == 1)
743177eb9841SConrad Meyer 			p = "int";
743277eb9841SConrad Meyer 		break;
74335f2336efSEd Maste 	/* linux_clock_adjtime */
74345f2336efSEd Maste 	case 266:
74355f2336efSEd Maste 	/* linux_syncfs */
74365f2336efSEd Maste 	case 267:
74375f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
74385f2336efSEd Maste 			p = "int";
74395f2336efSEd Maste 		break;
74405f2336efSEd Maste 	/* linux_setns */
74415f2336efSEd Maste 	case 268:
74425f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
74435f2336efSEd Maste 			p = "int";
74445f2336efSEd Maste 		break;
74455f2336efSEd Maste 	/* linux_sendmmsg */
74465f2336efSEd Maste 	case 269:
74475f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
74485f2336efSEd Maste 			p = "int";
74495f2336efSEd Maste 		break;
74505f2336efSEd Maste 	/* linux_process_vm_readv */
74515f2336efSEd Maste 	case 270:
74525f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
74535f2336efSEd Maste 			p = "int";
74545f2336efSEd Maste 		break;
74555f2336efSEd Maste 	/* linux_process_vm_writev */
74565f2336efSEd Maste 	case 271:
74575f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
74585f2336efSEd Maste 			p = "int";
74595f2336efSEd Maste 		break;
74605f2336efSEd Maste 	/* linux_kcmp */
74615f2336efSEd Maste 	case 272:
74625f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
74635f2336efSEd Maste 			p = "int";
74645f2336efSEd Maste 		break;
74655f2336efSEd Maste 	/* linux_finit_module */
74665f2336efSEd Maste 	case 273:
74675f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
74685f2336efSEd Maste 			p = "int";
74695f2336efSEd Maste 		break;
74705f2336efSEd Maste 	/* linux_sched_setattr */
74715f2336efSEd Maste 	case 274:
74725f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
74735f2336efSEd Maste 			p = "int";
74745f2336efSEd Maste 		break;
74755f2336efSEd Maste 	/* linux_sched_getattr */
74765f2336efSEd Maste 	case 275:
74775f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
74785f2336efSEd Maste 			p = "int";
74795f2336efSEd Maste 		break;
74805f2336efSEd Maste 	/* linux_renameat2 */
74815f2336efSEd Maste 	case 276:
74825f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
74835f2336efSEd Maste 			p = "int";
74845f2336efSEd Maste 		break;
74855f2336efSEd Maste 	/* linux_seccomp */
74865f2336efSEd Maste 	case 277:
74875f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
74885f2336efSEd Maste 			p = "int";
74895f2336efSEd Maste 		break;
74905f2336efSEd Maste 	/* linux_getrandom */
74915f2336efSEd Maste 	case 278:
74925f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
74935f2336efSEd Maste 			p = "int";
74945f2336efSEd Maste 		break;
74955f2336efSEd Maste 	/* linux_memfd_create */
74965f2336efSEd Maste 	case 279:
74975f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
74985f2336efSEd Maste 			p = "int";
74995f2336efSEd Maste 		break;
75005f2336efSEd Maste 	/* linux_bpf */
75015f2336efSEd Maste 	case 280:
75025f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
75035f2336efSEd Maste 			p = "int";
75045f2336efSEd Maste 		break;
75055f2336efSEd Maste 	/* linux_execveat */
75065f2336efSEd Maste 	case 281:
75075f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
75085f2336efSEd Maste 			p = "int";
75095f2336efSEd Maste 		break;
75105f2336efSEd Maste 	/* linux_userfaultfd */
75115f2336efSEd Maste 	case 282:
75125f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
75135f2336efSEd Maste 			p = "int";
75145f2336efSEd Maste 		break;
75155f2336efSEd Maste 	/* linux_membarrier */
75165f2336efSEd Maste 	case 283:
75175f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
75185f2336efSEd Maste 			p = "int";
75195f2336efSEd Maste 		break;
75205f2336efSEd Maste 	/* linux_mlock2 */
75215f2336efSEd Maste 	case 284:
75225f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
75235f2336efSEd Maste 			p = "int";
75245f2336efSEd Maste 		break;
75255f2336efSEd Maste 	/* linux_copy_file_range */
75265f2336efSEd Maste 	case 285:
75275f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
75285f2336efSEd Maste 			p = "int";
75295f2336efSEd Maste 		break;
75305f2336efSEd Maste 	/* linux_preadv2 */
75315f2336efSEd Maste 	case 286:
75325f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
75335f2336efSEd Maste 			p = "int";
75345f2336efSEd Maste 		break;
75355f2336efSEd Maste 	/* linux_pwritev2 */
75365f2336efSEd Maste 	case 287:
75375f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
75385f2336efSEd Maste 			p = "int";
75395f2336efSEd Maste 		break;
75405f2336efSEd Maste 	/* linux_pkey_mprotect */
75415f2336efSEd Maste 	case 288:
75425f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
75435f2336efSEd Maste 			p = "int";
75445f2336efSEd Maste 		break;
75455f2336efSEd Maste 	/* linux_pkey_alloc */
75465f2336efSEd Maste 	case 289:
75475f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
75485f2336efSEd Maste 			p = "int";
75495f2336efSEd Maste 		break;
75505f2336efSEd Maste 	/* linux_pkey_free */
75515f2336efSEd Maste 	case 290:
75525f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
75535f2336efSEd Maste 			p = "int";
75545f2336efSEd Maste 		break;
7555c0f17173SEdward Tomasz Napierala 	/* linux_statx */
7556c0f17173SEdward Tomasz Napierala 	case 291:
7557c0f17173SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
7558c0f17173SEdward Tomasz Napierala 			p = "int";
7559c0f17173SEdward Tomasz Napierala 		break;
7560c0f17173SEdward Tomasz Napierala 	/* linux_io_pgetevents */
7561c0f17173SEdward Tomasz Napierala 	case 292:
7562c0f17173SEdward Tomasz Napierala 	/* linux_rseq */
7563c0f17173SEdward Tomasz Napierala 	case 293:
756475e40949SDmitry Chagin 		if (ndx == 0 || ndx == 1)
756575e40949SDmitry Chagin 			p = "int";
756675e40949SDmitry Chagin 		break;
7567c0f17173SEdward Tomasz Napierala 	/* linux_kexec_file_load */
7568c0f17173SEdward Tomasz Napierala 	case 294:
7569c0f17173SEdward Tomasz Napierala 	/* linux_pidfd_send_signal */
7570c0f17173SEdward Tomasz Napierala 	case 424:
7571c0f17173SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
7572c0f17173SEdward Tomasz Napierala 			p = "int";
7573c0f17173SEdward Tomasz Napierala 		break;
7574c0f17173SEdward Tomasz Napierala 	/* linux_io_uring_setup */
7575c0f17173SEdward Tomasz Napierala 	case 425:
7576c0f17173SEdward Tomasz Napierala 	/* linux_io_uring_enter */
7577c0f17173SEdward Tomasz Napierala 	case 426:
7578c0f17173SEdward Tomasz Napierala 	/* linux_io_uring_register */
7579c0f17173SEdward Tomasz Napierala 	case 427:
7580c0f17173SEdward Tomasz Napierala 	/* linux_open_tree */
7581c0f17173SEdward Tomasz Napierala 	case 428:
7582c0f17173SEdward Tomasz Napierala 	/* linux_move_mount */
7583c0f17173SEdward Tomasz Napierala 	case 429:
7584c0f17173SEdward Tomasz Napierala 	/* linux_fsopen */
7585c0f17173SEdward Tomasz Napierala 	case 430:
7586c0f17173SEdward Tomasz Napierala 	/* linux_fsconfig */
7587c0f17173SEdward Tomasz Napierala 	case 431:
7588c0f17173SEdward Tomasz Napierala 	/* linux_fsmount */
7589c0f17173SEdward Tomasz Napierala 	case 432:
7590c0f17173SEdward Tomasz Napierala 	/* linux_fspick */
7591c0f17173SEdward Tomasz Napierala 	case 433:
7592c0f17173SEdward Tomasz Napierala 	/* linux_pidfd_open */
7593c0f17173SEdward Tomasz Napierala 	case 434:
7594c0f17173SEdward Tomasz Napierala 	/* linux_clone3 */
7595c0f17173SEdward Tomasz Napierala 	case 435:
7596b356030eSDmitry Chagin 		if (ndx == 0 || ndx == 1)
7597b356030eSDmitry Chagin 			p = "int";
7598b356030eSDmitry Chagin 		break;
7599c0f17173SEdward Tomasz Napierala 	/* linux_close_range */
7600c0f17173SEdward Tomasz Napierala 	case 436:
760150111714SDmitry Chagin 		if (ndx == 0 || ndx == 1)
760250111714SDmitry Chagin 			p = "int";
760350111714SDmitry Chagin 		break;
7604c0f17173SEdward Tomasz Napierala 	/* linux_openat2 */
7605c0f17173SEdward Tomasz Napierala 	case 437:
7606c0f17173SEdward Tomasz Napierala 	/* linux_pidfd_getfd */
7607c0f17173SEdward Tomasz Napierala 	case 438:
7608c0f17173SEdward Tomasz Napierala 	/* linux_faccessat2 */
7609c0f17173SEdward Tomasz Napierala 	case 439:
7610bee191e4SDmitry Chagin 		if (ndx == 0 || ndx == 1)
7611bee191e4SDmitry Chagin 			p = "int";
7612bee191e4SDmitry Chagin 		break;
7613c0f17173SEdward Tomasz Napierala 	/* linux_process_madvise */
7614c0f17173SEdward Tomasz Napierala 	case 440:
7615c0f17173SEdward Tomasz Napierala 	/* linux_epoll_pwait2 */
7616c0f17173SEdward Tomasz Napierala 	case 441:
7617df377f1fSDmitry Chagin 		if (ndx == 0 || ndx == 1)
7618df377f1fSDmitry Chagin 			p = "int";
7619df377f1fSDmitry Chagin 		break;
7620c0f17173SEdward Tomasz Napierala 	/* linux_mount_setattr */
7621c0f17173SEdward Tomasz Napierala 	case 442:
762228035f67SDmitry Chagin 	/* linux_quotactl_fd */
762328035f67SDmitry Chagin 	case 443:
762428035f67SDmitry Chagin 	/* linux_landlock_create_ruleset */
762528035f67SDmitry Chagin 	case 444:
762628035f67SDmitry Chagin 	/* linux_landlock_add_rule */
762728035f67SDmitry Chagin 	case 445:
762828035f67SDmitry Chagin 	/* linux_landlock_restrict_self */
762928035f67SDmitry Chagin 	case 446:
763028035f67SDmitry Chagin 	/* linux_memfd_secret */
763128035f67SDmitry Chagin 	case 447:
763228035f67SDmitry Chagin 	/* linux_process_mrelease */
763328035f67SDmitry Chagin 	case 448:
763428035f67SDmitry Chagin 	/* linux_futex_waitv */
763528035f67SDmitry Chagin 	case 449:
763628035f67SDmitry Chagin 	/* linux_set_mempolicy_home_node */
763728035f67SDmitry Chagin 	case 450:
763828035f67SDmitry Chagin 	/* linux_cachestat */
763928035f67SDmitry Chagin 	case 451:
764028035f67SDmitry Chagin 	/* linux_fchmodat2 */
764128035f67SDmitry Chagin 	case 452:
76425f2336efSEd Maste 	default:
76435f2336efSEd Maste 		break;
76445f2336efSEd Maste 	};
76455f2336efSEd Maste 	if (p != NULL)
76465f2336efSEd Maste 		strlcpy(desc, p, descsz);
76475f2336efSEd Maste }
7648