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