xref: /freebsd/sys/arm64/linux/linux_systrace_args.c (revision 0c08f34f4ddff9847bd57f262270687ea1220a6a)
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  * $FreeBSD$
65f2336efSEd Maste  * This file is part of the DTrace syscall provider.
75f2336efSEd Maste  */
85f2336efSEd Maste 
95f2336efSEd Maste static void
105f2336efSEd Maste systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
115f2336efSEd Maste {
125f2336efSEd Maste 	int64_t *iarg = (int64_t *)uarg;
135f2336efSEd Maste 	switch (sysnum) {
145f2336efSEd Maste #define	nosys	linux_nosys
155f2336efSEd Maste 	/* linux_setxattr */
165f2336efSEd Maste 	case 5: {
17a39cdcd7SEdward Tomasz Napierala 		struct linux_setxattr_args *p = params;
18a39cdcd7SEdward Tomasz Napierala 		uarg[0] = (intptr_t)p->path; /* const char * */
19a39cdcd7SEdward Tomasz Napierala 		uarg[1] = (intptr_t)p->name; /* const char * */
20a39cdcd7SEdward Tomasz Napierala 		uarg[2] = (intptr_t)p->value; /* const char * */
21a39cdcd7SEdward Tomasz Napierala 		iarg[3] = p->size; /* l_size_t */
22a39cdcd7SEdward Tomasz Napierala 		iarg[4] = p->flags; /* l_int */
23a39cdcd7SEdward Tomasz Napierala 		*n_args = 5;
245f2336efSEd Maste 		break;
255f2336efSEd Maste 	}
265f2336efSEd Maste 	/* linux_lsetxattr */
275f2336efSEd Maste 	case 6: {
28a39cdcd7SEdward Tomasz Napierala 		struct linux_lsetxattr_args *p = params;
29a39cdcd7SEdward Tomasz Napierala 		uarg[0] = (intptr_t)p->path; /* const char * */
30a39cdcd7SEdward Tomasz Napierala 		uarg[1] = (intptr_t)p->name; /* const char * */
31a39cdcd7SEdward Tomasz Napierala 		uarg[2] = (intptr_t)p->value; /* const char * */
32a39cdcd7SEdward Tomasz Napierala 		iarg[3] = p->size; /* l_size_t */
33a39cdcd7SEdward Tomasz Napierala 		iarg[4] = p->flags; /* l_int */
34a39cdcd7SEdward Tomasz Napierala 		*n_args = 5;
355f2336efSEd Maste 		break;
365f2336efSEd Maste 	}
375f2336efSEd Maste 	/* linux_fsetxattr */
385f2336efSEd Maste 	case 7: {
39a39cdcd7SEdward Tomasz Napierala 		struct linux_fsetxattr_args *p = params;
40a39cdcd7SEdward Tomasz Napierala 		iarg[0] = p->fd; /* l_int */
41a39cdcd7SEdward Tomasz Napierala 		uarg[1] = (intptr_t)p->name; /* const char * */
42a39cdcd7SEdward Tomasz Napierala 		uarg[2] = (intptr_t)p->value; /* const char * */
43a39cdcd7SEdward Tomasz Napierala 		iarg[3] = p->size; /* l_size_t */
44a39cdcd7SEdward Tomasz Napierala 		iarg[4] = p->flags; /* l_int */
45a39cdcd7SEdward Tomasz Napierala 		*n_args = 5;
465f2336efSEd Maste 		break;
475f2336efSEd Maste 	}
485f2336efSEd Maste 	/* linux_getxattr */
495f2336efSEd Maste 	case 8: {
50a39cdcd7SEdward Tomasz Napierala 		struct linux_getxattr_args *p = params;
51a39cdcd7SEdward Tomasz Napierala 		uarg[0] = (intptr_t)p->path; /* const char * */
52a39cdcd7SEdward Tomasz Napierala 		uarg[1] = (intptr_t)p->name; /* const char * */
53a39cdcd7SEdward Tomasz Napierala 		uarg[2] = (intptr_t)p->value; /* char * */
54a39cdcd7SEdward Tomasz Napierala 		iarg[3] = p->size; /* l_size_t */
55a39cdcd7SEdward Tomasz Napierala 		*n_args = 4;
565f2336efSEd Maste 		break;
575f2336efSEd Maste 	}
585f2336efSEd Maste 	/* linux_lgetxattr */
595f2336efSEd Maste 	case 9: {
60a39cdcd7SEdward Tomasz Napierala 		struct linux_lgetxattr_args *p = params;
61a39cdcd7SEdward Tomasz Napierala 		uarg[0] = (intptr_t)p->path; /* const char * */
62a39cdcd7SEdward Tomasz Napierala 		uarg[1] = (intptr_t)p->name; /* const char * */
63a39cdcd7SEdward Tomasz Napierala 		uarg[2] = (intptr_t)p->value; /* char * */
64a39cdcd7SEdward Tomasz Napierala 		iarg[3] = p->size; /* l_size_t */
65a39cdcd7SEdward Tomasz Napierala 		*n_args = 4;
665f2336efSEd Maste 		break;
675f2336efSEd Maste 	}
685f2336efSEd Maste 	/* linux_fgetxattr */
695f2336efSEd Maste 	case 10: {
70a39cdcd7SEdward Tomasz Napierala 		struct linux_fgetxattr_args *p = params;
71a39cdcd7SEdward Tomasz Napierala 		iarg[0] = p->fd; /* l_int */
72a39cdcd7SEdward Tomasz Napierala 		uarg[1] = (intptr_t)p->name; /* const char * */
73a39cdcd7SEdward Tomasz Napierala 		uarg[2] = (intptr_t)p->value; /* char * */
74a39cdcd7SEdward Tomasz Napierala 		iarg[3] = p->size; /* l_size_t */
75a39cdcd7SEdward Tomasz Napierala 		*n_args = 4;
765f2336efSEd Maste 		break;
775f2336efSEd Maste 	}
785f2336efSEd Maste 	/* linux_listxattr */
795f2336efSEd Maste 	case 11: {
80a39cdcd7SEdward Tomasz Napierala 		struct linux_listxattr_args *p = params;
81a39cdcd7SEdward Tomasz Napierala 		uarg[0] = (intptr_t)p->path; /* const char * */
82a39cdcd7SEdward Tomasz Napierala 		uarg[1] = (intptr_t)p->list; /* const char * */
83a39cdcd7SEdward Tomasz Napierala 		iarg[2] = p->size; /* l_size_t */
84a39cdcd7SEdward Tomasz Napierala 		*n_args = 3;
855f2336efSEd Maste 		break;
865f2336efSEd Maste 	}
875f2336efSEd Maste 	/* linux_llistxattr */
885f2336efSEd Maste 	case 12: {
89a39cdcd7SEdward Tomasz Napierala 		struct linux_llistxattr_args *p = params;
90a39cdcd7SEdward Tomasz Napierala 		uarg[0] = (intptr_t)p->path; /* const char * */
91a39cdcd7SEdward Tomasz Napierala 		uarg[1] = (intptr_t)p->list; /* const char * */
92a39cdcd7SEdward Tomasz Napierala 		iarg[2] = p->size; /* l_size_t */
93a39cdcd7SEdward Tomasz Napierala 		*n_args = 3;
945f2336efSEd Maste 		break;
955f2336efSEd Maste 	}
965f2336efSEd Maste 	/* linux_flistxattr */
975f2336efSEd Maste 	case 13: {
98a39cdcd7SEdward Tomasz Napierala 		struct linux_flistxattr_args *p = params;
99a39cdcd7SEdward Tomasz Napierala 		iarg[0] = p->fd; /* l_int */
100a39cdcd7SEdward Tomasz Napierala 		uarg[1] = (intptr_t)p->list; /* const char * */
101a39cdcd7SEdward Tomasz Napierala 		iarg[2] = p->size; /* l_size_t */
102a39cdcd7SEdward Tomasz Napierala 		*n_args = 3;
1035f2336efSEd Maste 		break;
1045f2336efSEd Maste 	}
1055f2336efSEd Maste 	/* linux_removexattr */
1065f2336efSEd Maste 	case 14: {
107a39cdcd7SEdward Tomasz Napierala 		struct linux_removexattr_args *p = params;
108a39cdcd7SEdward Tomasz Napierala 		uarg[0] = (intptr_t)p->path; /* const char * */
109a39cdcd7SEdward Tomasz Napierala 		uarg[1] = (intptr_t)p->name; /* const char * */
110a39cdcd7SEdward Tomasz Napierala 		*n_args = 2;
1115f2336efSEd Maste 		break;
1125f2336efSEd Maste 	}
1135f2336efSEd Maste 	/* linux_lremovexattr */
1145f2336efSEd Maste 	case 15: {
115a39cdcd7SEdward Tomasz Napierala 		struct linux_lremovexattr_args *p = params;
116a39cdcd7SEdward Tomasz Napierala 		uarg[0] = (intptr_t)p->path; /* const char * */
117a39cdcd7SEdward Tomasz Napierala 		uarg[1] = (intptr_t)p->name; /* const char * */
118a39cdcd7SEdward Tomasz Napierala 		*n_args = 2;
1195f2336efSEd Maste 		break;
1205f2336efSEd Maste 	}
1215f2336efSEd Maste 	/* linux_fremovexattr */
1225f2336efSEd Maste 	case 16: {
123a39cdcd7SEdward Tomasz Napierala 		struct linux_fremovexattr_args *p = params;
124a39cdcd7SEdward Tomasz Napierala 		iarg[0] = p->fd; /* l_int */
125a39cdcd7SEdward Tomasz Napierala 		uarg[1] = (intptr_t)p->name; /* const char * */
126a39cdcd7SEdward Tomasz Napierala 		*n_args = 2;
1275f2336efSEd Maste 		break;
1285f2336efSEd Maste 	}
1295f2336efSEd Maste 	/* linux_getcwd */
1305f2336efSEd Maste 	case 17: {
1315f2336efSEd Maste 		struct linux_getcwd_args *p = params;
1325f2336efSEd Maste 		uarg[0] = (intptr_t)p->buf; /* char * */
1335f2336efSEd Maste 		iarg[1] = p->bufsize; /* l_ulong */
1345f2336efSEd Maste 		*n_args = 2;
1355f2336efSEd Maste 		break;
1365f2336efSEd Maste 	}
1375f2336efSEd Maste 	/* linux_lookup_dcookie */
1385f2336efSEd Maste 	case 18: {
1395f2336efSEd Maste 		*n_args = 0;
1405f2336efSEd Maste 		break;
1415f2336efSEd Maste 	}
1425f2336efSEd Maste 	/* linux_eventfd2 */
1435f2336efSEd Maste 	case 19: {
1445f2336efSEd Maste 		struct linux_eventfd2_args *p = params;
1455f2336efSEd Maste 		iarg[0] = p->initval; /* l_uint */
1465f2336efSEd Maste 		iarg[1] = p->flags; /* l_int */
1475f2336efSEd Maste 		*n_args = 2;
1485f2336efSEd Maste 		break;
1495f2336efSEd Maste 	}
1505f2336efSEd Maste 	/* linux_epoll_create1 */
1515f2336efSEd Maste 	case 20: {
1525f2336efSEd Maste 		struct linux_epoll_create1_args *p = params;
1535f2336efSEd Maste 		iarg[0] = p->flags; /* l_int */
1545f2336efSEd Maste 		*n_args = 1;
1555f2336efSEd Maste 		break;
1565f2336efSEd Maste 	}
1575f2336efSEd Maste 	/* linux_epoll_ctl */
1585f2336efSEd Maste 	case 21: {
1595f2336efSEd Maste 		struct linux_epoll_ctl_args *p = params;
1605f2336efSEd Maste 		iarg[0] = p->epfd; /* l_int */
1615f2336efSEd Maste 		iarg[1] = p->op; /* l_int */
1625f2336efSEd Maste 		iarg[2] = p->fd; /* l_int */
1635f2336efSEd Maste 		uarg[3] = (intptr_t)p->event; /* struct epoll_event * */
1645f2336efSEd Maste 		*n_args = 4;
1655f2336efSEd Maste 		break;
1665f2336efSEd Maste 	}
1675f2336efSEd Maste 	/* linux_epoll_pwait */
1685f2336efSEd Maste 	case 22: {
1695f2336efSEd Maste 		struct linux_epoll_pwait_args *p = params;
1705f2336efSEd Maste 		iarg[0] = p->epfd; /* l_int */
1715f2336efSEd Maste 		uarg[1] = (intptr_t)p->events; /* struct epoll_event * */
1725f2336efSEd Maste 		iarg[2] = p->maxevents; /* l_int */
1735f2336efSEd Maste 		iarg[3] = p->timeout; /* l_int */
1745f2336efSEd Maste 		uarg[4] = (intptr_t)p->mask; /* l_sigset_t * */
1755f2336efSEd Maste 		iarg[5] = p->sigsetsize; /* l_size_t */
1765f2336efSEd Maste 		*n_args = 6;
1775f2336efSEd Maste 		break;
1785f2336efSEd Maste 	}
179c4db0baaSEd Maste 	/* dup */
180c4db0baaSEd Maste 	case 23: {
181c4db0baaSEd Maste 		struct dup_args *p = params;
182c4db0baaSEd Maste 		uarg[0] = p->fd; /* u_int */
183c4db0baaSEd Maste 		*n_args = 1;
184c4db0baaSEd Maste 		break;
185c4db0baaSEd Maste 	}
1865f2336efSEd Maste 	/* linux_dup3 */
1875f2336efSEd Maste 	case 24: {
1885f2336efSEd Maste 		struct linux_dup3_args *p = params;
1895f2336efSEd Maste 		iarg[0] = p->oldfd; /* l_int */
1905f2336efSEd Maste 		iarg[1] = p->newfd; /* l_int */
1915f2336efSEd Maste 		iarg[2] = p->flags; /* l_int */
1925f2336efSEd Maste 		*n_args = 3;
1935f2336efSEd Maste 		break;
1945f2336efSEd Maste 	}
1955f2336efSEd Maste 	/* linux_fcntl */
1965f2336efSEd Maste 	case 25: {
1975f2336efSEd Maste 		struct linux_fcntl_args *p = params;
1985f2336efSEd Maste 		iarg[0] = p->fd; /* l_uint */
1995f2336efSEd Maste 		iarg[1] = p->cmd; /* l_uint */
2005f2336efSEd Maste 		iarg[2] = p->arg; /* l_ulong */
2015f2336efSEd Maste 		*n_args = 3;
2025f2336efSEd Maste 		break;
2035f2336efSEd Maste 	}
2045f2336efSEd Maste 	/* linux_inotify_init1 */
2055f2336efSEd Maste 	case 26: {
2065f2336efSEd Maste 		struct linux_inotify_init1_args *p = params;
2075f2336efSEd Maste 		iarg[0] = p->flags; /* l_int */
2085f2336efSEd Maste 		*n_args = 1;
2095f2336efSEd Maste 		break;
2105f2336efSEd Maste 	}
2115f2336efSEd Maste 	/* linux_inotify_add_watch */
2125f2336efSEd Maste 	case 27: {
2135f2336efSEd Maste 		*n_args = 0;
2145f2336efSEd Maste 		break;
2155f2336efSEd Maste 	}
2165f2336efSEd Maste 	/* linux_inotify_rm_watch */
2175f2336efSEd Maste 	case 28: {
2185f2336efSEd Maste 		*n_args = 0;
2195f2336efSEd Maste 		break;
2205f2336efSEd Maste 	}
2215f2336efSEd Maste 	/* linux_ioctl */
2225f2336efSEd Maste 	case 29: {
2235f2336efSEd Maste 		struct linux_ioctl_args *p = params;
2245f2336efSEd Maste 		iarg[0] = p->fd; /* l_uint */
2255f2336efSEd Maste 		iarg[1] = p->cmd; /* l_uint */
226a39cdcd7SEdward Tomasz Napierala 		iarg[2] = p->arg; /* l_ulong */
2275f2336efSEd Maste 		*n_args = 3;
2285f2336efSEd Maste 		break;
2295f2336efSEd Maste 	}
2305f2336efSEd Maste 	/* linux_ioprio_set */
2315f2336efSEd Maste 	case 30: {
2325f2336efSEd Maste 		*n_args = 0;
2335f2336efSEd Maste 		break;
2345f2336efSEd Maste 	}
2355f2336efSEd Maste 	/* linux_ioprio_get */
2365f2336efSEd Maste 	case 31: {
2375f2336efSEd Maste 		*n_args = 0;
2385f2336efSEd Maste 		break;
2395f2336efSEd Maste 	}
2405f2336efSEd Maste 	/* flock */
2415f2336efSEd Maste 	case 32: {
2425f2336efSEd Maste 		struct flock_args *p = params;
2435f2336efSEd Maste 		iarg[0] = p->fd; /* int */
2445f2336efSEd Maste 		iarg[1] = p->how; /* int */
2455f2336efSEd Maste 		*n_args = 2;
2465f2336efSEd Maste 		break;
2475f2336efSEd Maste 	}
2485f2336efSEd Maste 	/* linux_mknodat */
2495f2336efSEd Maste 	case 33: {
2505f2336efSEd Maste 		struct linux_mknodat_args *p = params;
2515f2336efSEd Maste 		iarg[0] = p->dfd; /* l_int */
2525f2336efSEd Maste 		uarg[1] = (intptr_t)p->filename; /* const char * */
2535f2336efSEd Maste 		iarg[2] = p->mode; /* l_int */
2545f2336efSEd Maste 		iarg[3] = p->dev; /* l_uint */
2555f2336efSEd Maste 		*n_args = 4;
2565f2336efSEd Maste 		break;
2575f2336efSEd Maste 	}
2585f2336efSEd Maste 	/* linux_mkdirat */
2595f2336efSEd Maste 	case 34: {
2605f2336efSEd Maste 		struct linux_mkdirat_args *p = params;
2615f2336efSEd Maste 		iarg[0] = p->dfd; /* l_int */
2625f2336efSEd Maste 		uarg[1] = (intptr_t)p->pathname; /* const char * */
263a39cdcd7SEdward Tomasz Napierala 		iarg[2] = p->mode; /* l_mode_t */
2645f2336efSEd Maste 		*n_args = 3;
2655f2336efSEd Maste 		break;
2665f2336efSEd Maste 	}
2675f2336efSEd Maste 	/* linux_unlinkat */
2685f2336efSEd Maste 	case 35: {
2695f2336efSEd Maste 		struct linux_unlinkat_args *p = params;
2705f2336efSEd Maste 		iarg[0] = p->dfd; /* l_int */
2715f2336efSEd Maste 		uarg[1] = (intptr_t)p->pathname; /* const char * */
2725f2336efSEd Maste 		iarg[2] = p->flag; /* l_int */
2735f2336efSEd Maste 		*n_args = 3;
2745f2336efSEd Maste 		break;
2755f2336efSEd Maste 	}
2765f2336efSEd Maste 	/* linux_symlinkat */
2775f2336efSEd Maste 	case 36: {
2785f2336efSEd Maste 		struct linux_symlinkat_args *p = params;
2795f2336efSEd Maste 		uarg[0] = (intptr_t)p->oldname; /* const char * */
2805f2336efSEd Maste 		iarg[1] = p->newdfd; /* l_int */
2815f2336efSEd Maste 		uarg[2] = (intptr_t)p->newname; /* const char * */
2825f2336efSEd Maste 		*n_args = 3;
2835f2336efSEd Maste 		break;
2845f2336efSEd Maste 	}
2855f2336efSEd Maste 	/* linux_linkat */
2865f2336efSEd Maste 	case 37: {
2875f2336efSEd Maste 		struct linux_linkat_args *p = params;
2885f2336efSEd Maste 		iarg[0] = p->olddfd; /* l_int */
2895f2336efSEd Maste 		uarg[1] = (intptr_t)p->oldname; /* const char * */
2905f2336efSEd Maste 		iarg[2] = p->newdfd; /* l_int */
2915f2336efSEd Maste 		uarg[3] = (intptr_t)p->newname; /* const char * */
2925f2336efSEd Maste 		iarg[4] = p->flag; /* l_int */
2935f2336efSEd Maste 		*n_args = 5;
2945f2336efSEd Maste 		break;
2955f2336efSEd Maste 	}
2965f2336efSEd Maste 	/* linux_renameat */
2975f2336efSEd Maste 	case 38: {
2985f2336efSEd Maste 		struct linux_renameat_args *p = params;
2995f2336efSEd Maste 		iarg[0] = p->olddfd; /* l_int */
3005f2336efSEd Maste 		uarg[1] = (intptr_t)p->oldname; /* const char * */
3015f2336efSEd Maste 		iarg[2] = p->newdfd; /* l_int */
3025f2336efSEd Maste 		uarg[3] = (intptr_t)p->newname; /* const char * */
3035f2336efSEd Maste 		*n_args = 4;
3045f2336efSEd Maste 		break;
3055f2336efSEd Maste 	}
3065f2336efSEd Maste 	/* linux_mount */
3075f2336efSEd Maste 	case 40: {
3085f2336efSEd Maste 		struct linux_mount_args *p = params;
3095f2336efSEd Maste 		uarg[0] = (intptr_t)p->specialfile; /* char * */
3105f2336efSEd Maste 		uarg[1] = (intptr_t)p->dir; /* char * */
3115f2336efSEd Maste 		uarg[2] = (intptr_t)p->filesystemtype; /* char * */
3125f2336efSEd Maste 		iarg[3] = p->rwflag; /* l_ulong */
3135f2336efSEd Maste 		uarg[4] = (intptr_t)p->data; /* void * */
3145f2336efSEd Maste 		*n_args = 5;
3155f2336efSEd Maste 		break;
3165f2336efSEd Maste 	}
3175f2336efSEd Maste 	/* linux_pivot_root */
3185f2336efSEd Maste 	case 41: {
3195f2336efSEd Maste 		*n_args = 0;
3205f2336efSEd Maste 		break;
3215f2336efSEd Maste 	}
3225f2336efSEd Maste 	/* linux_statfs */
3235f2336efSEd Maste 	case 43: {
3245f2336efSEd Maste 		struct linux_statfs_args *p = params;
3255f2336efSEd Maste 		uarg[0] = (intptr_t)p->path; /* char * */
3265f2336efSEd Maste 		uarg[1] = (intptr_t)p->buf; /* struct l_statfs_buf * */
3275f2336efSEd Maste 		*n_args = 2;
3285f2336efSEd Maste 		break;
3295f2336efSEd Maste 	}
3305f2336efSEd Maste 	/* linux_fstatfs */
3315f2336efSEd Maste 	case 44: {
3325f2336efSEd Maste 		struct linux_fstatfs_args *p = params;
3335f2336efSEd Maste 		iarg[0] = p->fd; /* l_uint */
3345f2336efSEd Maste 		uarg[1] = (intptr_t)p->buf; /* struct l_statfs_buf * */
3355f2336efSEd Maste 		*n_args = 2;
3365f2336efSEd Maste 		break;
3375f2336efSEd Maste 	}
3385f2336efSEd Maste 	/* linux_truncate */
3395f2336efSEd Maste 	case 45: {
3405f2336efSEd Maste 		struct linux_truncate_args *p = params;
3415f2336efSEd Maste 		uarg[0] = (intptr_t)p->path; /* char * */
3425f2336efSEd Maste 		iarg[1] = p->length; /* l_ulong */
3435f2336efSEd Maste 		*n_args = 2;
3445f2336efSEd Maste 		break;
3455f2336efSEd Maste 	}
3465f2336efSEd Maste 	/* linux_ftruncate */
3475f2336efSEd Maste 	case 46: {
3485f2336efSEd Maste 		struct linux_ftruncate_args *p = params;
3495f2336efSEd Maste 		iarg[0] = p->fd; /* l_int */
3505f2336efSEd Maste 		iarg[1] = p->length; /* l_long */
3515f2336efSEd Maste 		*n_args = 2;
3525f2336efSEd Maste 		break;
3535f2336efSEd Maste 	}
3545f2336efSEd Maste 	/* linux_fallocate */
3555f2336efSEd Maste 	case 47: {
3565f2336efSEd Maste 		struct linux_fallocate_args *p = params;
3575f2336efSEd Maste 		iarg[0] = p->fd; /* l_int */
3585f2336efSEd Maste 		iarg[1] = p->mode; /* l_int */
3595f2336efSEd Maste 		iarg[2] = p->offset; /* l_loff_t */
3605f2336efSEd Maste 		iarg[3] = p->len; /* l_loff_t */
3615f2336efSEd Maste 		*n_args = 4;
3625f2336efSEd Maste 		break;
3635f2336efSEd Maste 	}
3645f2336efSEd Maste 	/* linux_faccessat */
3655f2336efSEd Maste 	case 48: {
3665f2336efSEd Maste 		struct linux_faccessat_args *p = params;
3675f2336efSEd Maste 		iarg[0] = p->dfd; /* l_int */
3685f2336efSEd Maste 		uarg[1] = (intptr_t)p->filename; /* const char * */
3695f2336efSEd Maste 		iarg[2] = p->amode; /* l_int */
3705f2336efSEd Maste 		*n_args = 3;
3715f2336efSEd Maste 		break;
3725f2336efSEd Maste 	}
3735f2336efSEd Maste 	/* linux_chdir */
3745f2336efSEd Maste 	case 49: {
3755f2336efSEd Maste 		struct linux_chdir_args *p = params;
3765f2336efSEd Maste 		uarg[0] = (intptr_t)p->path; /* char * */
3775f2336efSEd Maste 		*n_args = 1;
3785f2336efSEd Maste 		break;
3795f2336efSEd Maste 	}
3805f2336efSEd Maste 	/* fchdir */
3815f2336efSEd Maste 	case 50: {
3825f2336efSEd Maste 		struct fchdir_args *p = params;
3835f2336efSEd Maste 		iarg[0] = p->fd; /* int */
3845f2336efSEd Maste 		*n_args = 1;
3855f2336efSEd Maste 		break;
3865f2336efSEd Maste 	}
3875f2336efSEd Maste 	/* chroot */
3885f2336efSEd Maste 	case 51: {
3895f2336efSEd Maste 		struct chroot_args *p = params;
3905f2336efSEd Maste 		uarg[0] = (intptr_t)p->path; /* char * */
3915f2336efSEd Maste 		*n_args = 1;
3925f2336efSEd Maste 		break;
3935f2336efSEd Maste 	}
3945f2336efSEd Maste 	/* fchmod */
3955f2336efSEd Maste 	case 52: {
3965f2336efSEd Maste 		struct fchmod_args *p = params;
3975f2336efSEd Maste 		iarg[0] = p->fd; /* int */
3985f2336efSEd Maste 		iarg[1] = p->mode; /* int */
3995f2336efSEd Maste 		*n_args = 2;
4005f2336efSEd Maste 		break;
4015f2336efSEd Maste 	}
4025f2336efSEd Maste 	/* linux_fchmodat */
4035f2336efSEd Maste 	case 53: {
4045f2336efSEd Maste 		struct linux_fchmodat_args *p = params;
4055f2336efSEd Maste 		iarg[0] = p->dfd; /* l_int */
4065f2336efSEd Maste 		uarg[1] = (intptr_t)p->filename; /* const char * */
4075f2336efSEd Maste 		iarg[2] = p->mode; /* l_mode_t */
4085f2336efSEd Maste 		*n_args = 3;
4095f2336efSEd Maste 		break;
4105f2336efSEd Maste 	}
4115f2336efSEd Maste 	/* linux_fchownat */
4125f2336efSEd Maste 	case 54: {
4135f2336efSEd Maste 		struct linux_fchownat_args *p = params;
4145f2336efSEd Maste 		iarg[0] = p->dfd; /* l_int */
4155f2336efSEd Maste 		uarg[1] = (intptr_t)p->filename; /* const char * */
4165f2336efSEd Maste 		iarg[2] = p->uid; /* l_uid_t */
4175f2336efSEd Maste 		iarg[3] = p->gid; /* l_gid_t */
4185f2336efSEd Maste 		iarg[4] = p->flag; /* l_int */
4195f2336efSEd Maste 		*n_args = 5;
4205f2336efSEd Maste 		break;
4215f2336efSEd Maste 	}
4225f2336efSEd Maste 	/* fchown */
4235f2336efSEd Maste 	case 55: {
4245f2336efSEd Maste 		struct fchown_args *p = params;
4255f2336efSEd Maste 		iarg[0] = p->fd; /* int */
4265f2336efSEd Maste 		iarg[1] = p->uid; /* int */
4275f2336efSEd Maste 		iarg[2] = p->gid; /* int */
4285f2336efSEd Maste 		*n_args = 3;
4295f2336efSEd Maste 		break;
4305f2336efSEd Maste 	}
4315f2336efSEd Maste 	/* linux_openat */
4325f2336efSEd Maste 	case 56: {
4335f2336efSEd Maste 		struct linux_openat_args *p = params;
4345f2336efSEd Maste 		iarg[0] = p->dfd; /* l_int */
4355f2336efSEd Maste 		uarg[1] = (intptr_t)p->filename; /* const char * */
4365f2336efSEd Maste 		iarg[2] = p->flags; /* l_int */
437a39cdcd7SEdward Tomasz Napierala 		iarg[3] = p->mode; /* l_mode_t */
4385f2336efSEd Maste 		*n_args = 4;
4395f2336efSEd Maste 		break;
4405f2336efSEd Maste 	}
4415f2336efSEd Maste 	/* close */
4425f2336efSEd Maste 	case 57: {
4435f2336efSEd Maste 		struct close_args *p = params;
4445f2336efSEd Maste 		iarg[0] = p->fd; /* int */
4455f2336efSEd Maste 		*n_args = 1;
4465f2336efSEd Maste 		break;
4475f2336efSEd Maste 	}
4485f2336efSEd Maste 	/* linux_vhangup */
4495f2336efSEd Maste 	case 58: {
4505f2336efSEd Maste 		*n_args = 0;
4515f2336efSEd Maste 		break;
4525f2336efSEd Maste 	}
4535f2336efSEd Maste 	/* linux_pipe2 */
4545f2336efSEd Maste 	case 59: {
4555f2336efSEd Maste 		struct linux_pipe2_args *p = params;
4565f2336efSEd Maste 		uarg[0] = (intptr_t)p->pipefds; /* l_int * */
4575f2336efSEd Maste 		iarg[1] = p->flags; /* l_int */
4585f2336efSEd Maste 		*n_args = 2;
4595f2336efSEd Maste 		break;
4605f2336efSEd Maste 	}
4615f2336efSEd Maste 	/* linux_getdents64 */
4625f2336efSEd Maste 	case 61: {
4635f2336efSEd Maste 		struct linux_getdents64_args *p = params;
4645f2336efSEd Maste 		iarg[0] = p->fd; /* l_uint */
4655f2336efSEd Maste 		uarg[1] = (intptr_t)p->dirent; /* void * */
4665f2336efSEd Maste 		iarg[2] = p->count; /* l_uint */
4675f2336efSEd Maste 		*n_args = 3;
4685f2336efSEd Maste 		break;
4695f2336efSEd Maste 	}
4705f2336efSEd Maste 	/* linux_lseek */
4715f2336efSEd Maste 	case 62: {
4725f2336efSEd Maste 		struct linux_lseek_args *p = params;
4735f2336efSEd Maste 		iarg[0] = p->fdes; /* l_uint */
4745f2336efSEd Maste 		iarg[1] = p->off; /* l_off_t */
4755f2336efSEd Maste 		iarg[2] = p->whence; /* l_int */
4765f2336efSEd Maste 		*n_args = 3;
4775f2336efSEd Maste 		break;
4785f2336efSEd Maste 	}
4795f2336efSEd Maste 	/* read */
4805f2336efSEd Maste 	case 63: {
4815f2336efSEd Maste 		struct read_args *p = params;
4825f2336efSEd Maste 		iarg[0] = p->fd; /* int */
4835f2336efSEd Maste 		uarg[1] = (intptr_t)p->buf; /* char * */
484a39cdcd7SEdward Tomasz Napierala 		iarg[2] = p->nbyte; /* l_size_t */
4855f2336efSEd Maste 		*n_args = 3;
4865f2336efSEd Maste 		break;
4875f2336efSEd Maste 	}
4885f2336efSEd Maste 	/* write */
4895f2336efSEd Maste 	case 64: {
4905f2336efSEd Maste 		struct write_args *p = params;
4915f2336efSEd Maste 		iarg[0] = p->fd; /* int */
4925f2336efSEd Maste 		uarg[1] = (intptr_t)p->buf; /* char * */
493a39cdcd7SEdward Tomasz Napierala 		iarg[2] = p->nbyte; /* l_size_t */
4945f2336efSEd Maste 		*n_args = 3;
4955f2336efSEd Maste 		break;
4965f2336efSEd Maste 	}
4975f2336efSEd Maste 	/* readv */
4985f2336efSEd Maste 	case 65: {
4995f2336efSEd Maste 		struct readv_args *p = params;
5005f2336efSEd Maste 		iarg[0] = p->fd; /* int */
5015f2336efSEd Maste 		uarg[1] = (intptr_t)p->iovp; /* struct iovec * */
5025f2336efSEd Maste 		uarg[2] = p->iovcnt; /* u_int */
5035f2336efSEd Maste 		*n_args = 3;
5045f2336efSEd Maste 		break;
5055f2336efSEd Maste 	}
5065f2336efSEd Maste 	/* writev */
5075f2336efSEd Maste 	case 66: {
5085f2336efSEd Maste 		struct writev_args *p = params;
5095f2336efSEd Maste 		iarg[0] = p->fd; /* int */
5105f2336efSEd Maste 		uarg[1] = (intptr_t)p->iovp; /* struct iovec * */
5115f2336efSEd Maste 		uarg[2] = p->iovcnt; /* u_int */
5125f2336efSEd Maste 		*n_args = 3;
5135f2336efSEd Maste 		break;
5145f2336efSEd Maste 	}
5155f2336efSEd Maste 	/* linux_pread */
5165f2336efSEd Maste 	case 67: {
5175f2336efSEd Maste 		struct linux_pread_args *p = params;
5185f2336efSEd Maste 		iarg[0] = p->fd; /* l_uint */
5195f2336efSEd Maste 		uarg[1] = (intptr_t)p->buf; /* char * */
5205f2336efSEd Maste 		iarg[2] = p->nbyte; /* l_size_t */
5215f2336efSEd Maste 		iarg[3] = p->offset; /* l_loff_t */
5225f2336efSEd Maste 		*n_args = 4;
5235f2336efSEd Maste 		break;
5245f2336efSEd Maste 	}
5255f2336efSEd Maste 	/* linux_pwrite */
5265f2336efSEd Maste 	case 68: {
5275f2336efSEd Maste 		struct linux_pwrite_args *p = params;
5285f2336efSEd Maste 		iarg[0] = p->fd; /* l_uint */
5295f2336efSEd Maste 		uarg[1] = (intptr_t)p->buf; /* char * */
5305f2336efSEd Maste 		iarg[2] = p->nbyte; /* l_size_t */
5315f2336efSEd Maste 		iarg[3] = p->offset; /* l_loff_t */
5325f2336efSEd Maste 		*n_args = 4;
5335f2336efSEd Maste 		break;
5345f2336efSEd Maste 	}
5355f2336efSEd Maste 	/* linux_preadv */
5365f2336efSEd Maste 	case 69: {
5375f2336efSEd Maste 		struct linux_preadv_args *p = params;
5385f2336efSEd Maste 		iarg[0] = p->fd; /* l_ulong */
5395f2336efSEd Maste 		uarg[1] = (intptr_t)p->vec; /* struct iovec * */
5405f2336efSEd Maste 		iarg[2] = p->vlen; /* l_ulong */
5415f2336efSEd Maste 		iarg[3] = p->pos_l; /* l_ulong */
5425f2336efSEd Maste 		iarg[4] = p->pos_h; /* l_ulong */
5435f2336efSEd Maste 		*n_args = 5;
5445f2336efSEd Maste 		break;
5455f2336efSEd Maste 	}
5465f2336efSEd Maste 	/* linux_pwritev */
5475f2336efSEd Maste 	case 70: {
5485f2336efSEd Maste 		struct linux_pwritev_args *p = params;
5495f2336efSEd Maste 		iarg[0] = p->fd; /* l_ulong */
5505f2336efSEd Maste 		uarg[1] = (intptr_t)p->vec; /* struct iovec * */
5515f2336efSEd Maste 		iarg[2] = p->vlen; /* l_ulong */
5525f2336efSEd Maste 		iarg[3] = p->pos_l; /* l_ulong */
5535f2336efSEd Maste 		iarg[4] = p->pos_h; /* l_ulong */
5545f2336efSEd Maste 		*n_args = 5;
5555f2336efSEd Maste 		break;
5565f2336efSEd Maste 	}
5575f2336efSEd Maste 	/* linux_sendfile */
5585f2336efSEd Maste 	case 71: {
5595f2336efSEd Maste 		struct linux_sendfile_args *p = params;
5605f2336efSEd Maste 		iarg[0] = p->out; /* l_int */
5615f2336efSEd Maste 		iarg[1] = p->in; /* l_int */
562a39cdcd7SEdward Tomasz Napierala 		uarg[2] = (intptr_t)p->offset; /* l_off_t * */
5635f2336efSEd Maste 		iarg[3] = p->count; /* l_size_t */
5645f2336efSEd Maste 		*n_args = 4;
5655f2336efSEd Maste 		break;
5665f2336efSEd Maste 	}
5675f2336efSEd Maste 	/* linux_pselect6 */
5685f2336efSEd Maste 	case 72: {
5695f2336efSEd Maste 		struct linux_pselect6_args *p = params;
5705f2336efSEd Maste 		iarg[0] = p->nfds; /* l_int */
5715f2336efSEd Maste 		uarg[1] = (intptr_t)p->readfds; /* l_fd_set * */
5725f2336efSEd Maste 		uarg[2] = (intptr_t)p->writefds; /* l_fd_set * */
5735f2336efSEd Maste 		uarg[3] = (intptr_t)p->exceptfds; /* l_fd_set * */
5745f2336efSEd Maste 		uarg[4] = (intptr_t)p->tsp; /* struct l_timespec * */
5755f2336efSEd Maste 		uarg[5] = (intptr_t)p->sig; /* l_uintptr_t * */
5765f2336efSEd Maste 		*n_args = 6;
5775f2336efSEd Maste 		break;
5785f2336efSEd Maste 	}
5795f2336efSEd Maste 	/* linux_ppoll */
5805f2336efSEd Maste 	case 73: {
5815f2336efSEd Maste 		struct linux_ppoll_args *p = params;
5825f2336efSEd Maste 		uarg[0] = (intptr_t)p->fds; /* struct pollfd * */
583a39cdcd7SEdward Tomasz Napierala 		iarg[1] = p->nfds; /* l_uint */
5845f2336efSEd Maste 		uarg[2] = (intptr_t)p->tsp; /* struct l_timespec * */
5855f2336efSEd Maste 		uarg[3] = (intptr_t)p->sset; /* l_sigset_t * */
5865f2336efSEd Maste 		iarg[4] = p->ssize; /* l_size_t */
5875f2336efSEd Maste 		*n_args = 5;
5885f2336efSEd Maste 		break;
5895f2336efSEd Maste 	}
5905f2336efSEd Maste 	/* linux_signalfd4 */
5915f2336efSEd Maste 	case 74: {
5925f2336efSEd Maste 		*n_args = 0;
5935f2336efSEd Maste 		break;
5945f2336efSEd Maste 	}
5955f2336efSEd Maste 	/* linux_vmsplice */
5965f2336efSEd Maste 	case 75: {
5975f2336efSEd Maste 		*n_args = 0;
5985f2336efSEd Maste 		break;
5995f2336efSEd Maste 	}
6005f2336efSEd Maste 	/* linux_splice */
6015f2336efSEd Maste 	case 76: {
6023e9a2142SEdward Tomasz Napierala 		struct linux_splice_args *p = params;
6033e9a2142SEdward Tomasz Napierala 		iarg[0] = p->fd_in; /* int */
6043e9a2142SEdward Tomasz Napierala 		uarg[1] = (intptr_t)p->off_in; /* l_loff_t * */
6053e9a2142SEdward Tomasz Napierala 		iarg[2] = p->fd_out; /* int */
6063e9a2142SEdward Tomasz Napierala 		uarg[3] = (intptr_t)p->off_out; /* l_loff_t * */
6073e9a2142SEdward Tomasz Napierala 		iarg[4] = p->len; /* l_size_t */
6083e9a2142SEdward Tomasz Napierala 		iarg[5] = p->flags; /* l_uint */
6093e9a2142SEdward Tomasz Napierala 		*n_args = 6;
6105f2336efSEd Maste 		break;
6115f2336efSEd Maste 	}
6125f2336efSEd Maste 	/* linux_tee */
6135f2336efSEd Maste 	case 77: {
6145f2336efSEd Maste 		*n_args = 0;
6155f2336efSEd Maste 		break;
6165f2336efSEd Maste 	}
6175f2336efSEd Maste 	/* linux_readlinkat */
6185f2336efSEd Maste 	case 78: {
6195f2336efSEd Maste 		struct linux_readlinkat_args *p = params;
6205f2336efSEd Maste 		iarg[0] = p->dfd; /* l_int */
6215f2336efSEd Maste 		uarg[1] = (intptr_t)p->path; /* const char * */
6225f2336efSEd Maste 		uarg[2] = (intptr_t)p->buf; /* char * */
6235f2336efSEd Maste 		iarg[3] = p->bufsiz; /* l_int */
6245f2336efSEd Maste 		*n_args = 4;
6255f2336efSEd Maste 		break;
6265f2336efSEd Maste 	}
6275f2336efSEd Maste 	/* linux_newfstatat */
6285f2336efSEd Maste 	case 79: {
6295f2336efSEd Maste 		struct linux_newfstatat_args *p = params;
6305f2336efSEd Maste 		iarg[0] = p->dfd; /* l_int */
6315f2336efSEd Maste 		uarg[1] = (intptr_t)p->pathname; /* char * */
6325f2336efSEd Maste 		uarg[2] = (intptr_t)p->statbuf; /* struct l_stat64 * */
6335f2336efSEd Maste 		iarg[3] = p->flag; /* l_int */
6345f2336efSEd Maste 		*n_args = 4;
6355f2336efSEd Maste 		break;
6365f2336efSEd Maste 	}
6375f2336efSEd Maste 	/* linux_newfstat */
6385f2336efSEd Maste 	case 80: {
6395f2336efSEd Maste 		struct linux_newfstat_args *p = params;
6405f2336efSEd Maste 		iarg[0] = p->fd; /* l_uint */
6415f2336efSEd Maste 		uarg[1] = (intptr_t)p->buf; /* struct l_newstat * */
6425f2336efSEd Maste 		*n_args = 2;
6435f2336efSEd Maste 		break;
6445f2336efSEd Maste 	}
6455f2336efSEd Maste 	/* fsync */
6465f2336efSEd Maste 	case 82: {
6475f2336efSEd Maste 		struct fsync_args *p = params;
6485f2336efSEd Maste 		iarg[0] = p->fd; /* int */
6495f2336efSEd Maste 		*n_args = 1;
6505f2336efSEd Maste 		break;
6515f2336efSEd Maste 	}
6525f2336efSEd Maste 	/* linux_fdatasync */
6535f2336efSEd Maste 	case 83: {
6545f2336efSEd Maste 		struct linux_fdatasync_args *p = params;
6555f2336efSEd Maste 		iarg[0] = p->fd; /* l_uint */
6565f2336efSEd Maste 		*n_args = 1;
6575f2336efSEd Maste 		break;
6585f2336efSEd Maste 	}
6595f2336efSEd Maste 	/* linux_sync_file_range */
6605f2336efSEd Maste 	case 84: {
6610cde2b32SEdward Tomasz Napierala 		struct linux_sync_file_range_args *p = params;
6620cde2b32SEdward Tomasz Napierala 		iarg[0] = p->fd; /* l_int */
6630cde2b32SEdward Tomasz Napierala 		iarg[1] = p->offset; /* l_loff_t */
6640cde2b32SEdward Tomasz Napierala 		iarg[2] = p->nbytes; /* l_loff_t */
665a39cdcd7SEdward Tomasz Napierala 		iarg[3] = p->flags; /* l_uint */
6660cde2b32SEdward Tomasz Napierala 		*n_args = 4;
6675f2336efSEd Maste 		break;
6685f2336efSEd Maste 	}
6695f2336efSEd Maste 	/* linux_timerfd_create */
6705f2336efSEd Maste 	case 85: {
6715f2336efSEd Maste 		struct linux_timerfd_create_args *p = params;
6725f2336efSEd Maste 		iarg[0] = p->clockid; /* l_int */
6735f2336efSEd Maste 		iarg[1] = p->flags; /* l_int */
6745f2336efSEd Maste 		*n_args = 2;
6755f2336efSEd Maste 		break;
6765f2336efSEd Maste 	}
6775f2336efSEd Maste 	/* linux_timerfd_settime */
6785f2336efSEd Maste 	case 86: {
6795f2336efSEd Maste 		struct linux_timerfd_settime_args *p = params;
6805f2336efSEd Maste 		iarg[0] = p->fd; /* l_int */
6815f2336efSEd Maste 		iarg[1] = p->flags; /* l_int */
6825f2336efSEd Maste 		uarg[2] = (intptr_t)p->new_value; /* const struct l_itimerspec * */
6835f2336efSEd Maste 		uarg[3] = (intptr_t)p->old_value; /* struct l_itimerspec * */
6845f2336efSEd Maste 		*n_args = 4;
6855f2336efSEd Maste 		break;
6865f2336efSEd Maste 	}
6875f2336efSEd Maste 	/* linux_timerfd_gettime */
6885f2336efSEd Maste 	case 87: {
6895f2336efSEd Maste 		struct linux_timerfd_gettime_args *p = params;
6905f2336efSEd Maste 		iarg[0] = p->fd; /* l_int */
6915f2336efSEd Maste 		uarg[1] = (intptr_t)p->old_value; /* struct l_itimerspec * */
6925f2336efSEd Maste 		*n_args = 2;
6935f2336efSEd Maste 		break;
6945f2336efSEd Maste 	}
6955f2336efSEd Maste 	/* linux_utimensat */
6965f2336efSEd Maste 	case 88: {
6975f2336efSEd Maste 		struct linux_utimensat_args *p = params;
6985f2336efSEd Maste 		iarg[0] = p->dfd; /* l_int */
6995f2336efSEd Maste 		uarg[1] = (intptr_t)p->pathname; /* const char * */
7005f2336efSEd Maste 		uarg[2] = (intptr_t)p->times; /* const struct l_timespec * */
7015f2336efSEd Maste 		iarg[3] = p->flags; /* l_int */
7025f2336efSEd Maste 		*n_args = 4;
7035f2336efSEd Maste 		break;
7045f2336efSEd Maste 	}
7055f2336efSEd Maste 	/* acct */
7065f2336efSEd Maste 	case 89: {
7075f2336efSEd Maste 		struct acct_args *p = params;
7085f2336efSEd Maste 		uarg[0] = (intptr_t)p->path; /* char * */
7095f2336efSEd Maste 		*n_args = 1;
7105f2336efSEd Maste 		break;
7115f2336efSEd Maste 	}
7125f2336efSEd Maste 	/* linux_capget */
7135f2336efSEd Maste 	case 90: {
7145f2336efSEd Maste 		struct linux_capget_args *p = params;
7155f2336efSEd Maste 		uarg[0] = (intptr_t)p->hdrp; /* struct l_user_cap_header * */
7165f2336efSEd Maste 		uarg[1] = (intptr_t)p->datap; /* struct l_user_cap_data * */
7175f2336efSEd Maste 		*n_args = 2;
7185f2336efSEd Maste 		break;
7195f2336efSEd Maste 	}
7205f2336efSEd Maste 	/* linux_capset */
7215f2336efSEd Maste 	case 91: {
7225f2336efSEd Maste 		struct linux_capset_args *p = params;
7235f2336efSEd Maste 		uarg[0] = (intptr_t)p->hdrp; /* struct l_user_cap_header * */
7245f2336efSEd Maste 		uarg[1] = (intptr_t)p->datap; /* struct l_user_cap_data * */
7255f2336efSEd Maste 		*n_args = 2;
7265f2336efSEd Maste 		break;
7275f2336efSEd Maste 	}
7285f2336efSEd Maste 	/* linux_personality */
7295f2336efSEd Maste 	case 92: {
7305f2336efSEd Maste 		struct linux_personality_args *p = params;
7315f2336efSEd Maste 		iarg[0] = p->per; /* l_uint */
7325f2336efSEd Maste 		*n_args = 1;
7335f2336efSEd Maste 		break;
7345f2336efSEd Maste 	}
7355f2336efSEd Maste 	/* linux_exit */
7365f2336efSEd Maste 	case 93: {
7375f2336efSEd Maste 		struct linux_exit_args *p = params;
738a39cdcd7SEdward Tomasz Napierala 		uarg[0] = p->rval; /* u_int */
7395f2336efSEd Maste 		*n_args = 1;
7405f2336efSEd Maste 		break;
7415f2336efSEd Maste 	}
7425f2336efSEd Maste 	/* linux_exit_group */
7435f2336efSEd Maste 	case 94: {
7445f2336efSEd Maste 		struct linux_exit_group_args *p = params;
745a39cdcd7SEdward Tomasz Napierala 		iarg[0] = p->error_code; /* l_int */
7465f2336efSEd Maste 		*n_args = 1;
7475f2336efSEd Maste 		break;
7485f2336efSEd Maste 	}
7495f2336efSEd Maste 	/* linux_waitid */
7505f2336efSEd Maste 	case 95: {
7515f2336efSEd Maste 		struct linux_waitid_args *p = params;
7525f2336efSEd Maste 		iarg[0] = p->idtype; /* l_int */
7535f2336efSEd Maste 		iarg[1] = p->id; /* l_pid_t */
7545f2336efSEd Maste 		uarg[2] = (intptr_t)p->info; /* l_siginfo_t * */
7555f2336efSEd Maste 		iarg[3] = p->options; /* l_int */
7565f2336efSEd Maste 		uarg[4] = (intptr_t)p->rusage; /* struct rusage * */
7575f2336efSEd Maste 		*n_args = 5;
7585f2336efSEd Maste 		break;
7595f2336efSEd Maste 	}
7605f2336efSEd Maste 	/* linux_set_tid_address */
7615f2336efSEd Maste 	case 96: {
7625f2336efSEd Maste 		struct linux_set_tid_address_args *p = params;
763a39cdcd7SEdward Tomasz Napierala 		uarg[0] = (intptr_t)p->tidptr; /* l_int * */
7645f2336efSEd Maste 		*n_args = 1;
7655f2336efSEd Maste 		break;
7665f2336efSEd Maste 	}
7675f2336efSEd Maste 	/* linux_unshare */
7685f2336efSEd Maste 	case 97: {
7695f2336efSEd Maste 		*n_args = 0;
7705f2336efSEd Maste 		break;
7715f2336efSEd Maste 	}
7725f2336efSEd Maste 	/* linux_sys_futex */
7735f2336efSEd Maste 	case 98: {
7745f2336efSEd Maste 		struct linux_sys_futex_args *p = params;
775ee64d982SDmitry Chagin 		uarg[0] = (intptr_t)p->uaddr; /* uint32_t * */
776ee64d982SDmitry Chagin 		iarg[1] = p->op; /* l_int */
777ee64d982SDmitry Chagin 		uarg[2] = p->val; /* uint32_t */
7785f2336efSEd Maste 		uarg[3] = (intptr_t)p->timeout; /* struct l_timespec * */
779ee64d982SDmitry Chagin 		uarg[4] = (intptr_t)p->uaddr2; /* uint32_t * */
780ee64d982SDmitry Chagin 		uarg[5] = p->val3; /* uint32_t */
7815f2336efSEd Maste 		*n_args = 6;
7825f2336efSEd Maste 		break;
7835f2336efSEd Maste 	}
7845f2336efSEd Maste 	/* linux_set_robust_list */
7855f2336efSEd Maste 	case 99: {
7865f2336efSEd Maste 		struct linux_set_robust_list_args *p = params;
7875f2336efSEd Maste 		uarg[0] = (intptr_t)p->head; /* struct linux_robust_list_head * */
7885f2336efSEd Maste 		iarg[1] = p->len; /* l_size_t */
7895f2336efSEd Maste 		*n_args = 2;
7905f2336efSEd Maste 		break;
7915f2336efSEd Maste 	}
7925f2336efSEd Maste 	/* linux_get_robust_list */
7935f2336efSEd Maste 	case 100: {
7945f2336efSEd Maste 		struct linux_get_robust_list_args *p = params;
7955f2336efSEd Maste 		iarg[0] = p->pid; /* l_int */
7965f2336efSEd Maste 		uarg[1] = (intptr_t)p->head; /* struct linux_robust_list_head ** */
7975f2336efSEd Maste 		uarg[2] = (intptr_t)p->len; /* l_size_t * */
7985f2336efSEd Maste 		*n_args = 3;
7995f2336efSEd Maste 		break;
8005f2336efSEd Maste 	}
8015f2336efSEd Maste 	/* linux_nanosleep */
8025f2336efSEd Maste 	case 101: {
8035f2336efSEd Maste 		struct linux_nanosleep_args *p = params;
8045f2336efSEd Maste 		uarg[0] = (intptr_t)p->rqtp; /* const struct l_timespec * */
8055f2336efSEd Maste 		uarg[1] = (intptr_t)p->rmtp; /* struct l_timespec * */
8065f2336efSEd Maste 		*n_args = 2;
8075f2336efSEd Maste 		break;
8085f2336efSEd Maste 	}
8095f2336efSEd Maste 	/* linux_getitimer */
8105f2336efSEd Maste 	case 102: {
8115f2336efSEd Maste 		struct linux_getitimer_args *p = params;
8125f2336efSEd Maste 		iarg[0] = p->which; /* l_int */
8135f2336efSEd Maste 		uarg[1] = (intptr_t)p->itv; /* struct l_itimerval * */
8145f2336efSEd Maste 		*n_args = 2;
8155f2336efSEd Maste 		break;
8165f2336efSEd Maste 	}
8175f2336efSEd Maste 	/* linux_setitimer */
8185f2336efSEd Maste 	case 103: {
8195f2336efSEd Maste 		struct linux_setitimer_args *p = params;
8205f2336efSEd Maste 		iarg[0] = p->which; /* l_int */
8215f2336efSEd Maste 		uarg[1] = (intptr_t)p->itv; /* struct l_itimerval * */
8225f2336efSEd Maste 		uarg[2] = (intptr_t)p->oitv; /* struct l_itimerval * */
8235f2336efSEd Maste 		*n_args = 3;
8245f2336efSEd Maste 		break;
8255f2336efSEd Maste 	}
8265f2336efSEd Maste 	/* linux_kexec_load */
8275f2336efSEd Maste 	case 104: {
8285f2336efSEd Maste 		*n_args = 0;
8295f2336efSEd Maste 		break;
8305f2336efSEd Maste 	}
8315f2336efSEd Maste 	/* linux_init_module */
8325f2336efSEd Maste 	case 105: {
8335f2336efSEd Maste 		*n_args = 0;
8345f2336efSEd Maste 		break;
8355f2336efSEd Maste 	}
8365f2336efSEd Maste 	/* linux_delete_module */
8375f2336efSEd Maste 	case 106: {
8385f2336efSEd Maste 		*n_args = 0;
8395f2336efSEd Maste 		break;
8405f2336efSEd Maste 	}
8415f2336efSEd Maste 	/* linux_timer_create */
8425f2336efSEd Maste 	case 107: {
8435f2336efSEd Maste 		struct linux_timer_create_args *p = params;
8445f2336efSEd Maste 		iarg[0] = p->clock_id; /* clockid_t */
8455f2336efSEd Maste 		uarg[1] = (intptr_t)p->evp; /* struct sigevent * */
8465f2336efSEd Maste 		uarg[2] = (intptr_t)p->timerid; /* l_timer_t * */
8475f2336efSEd Maste 		*n_args = 3;
8485f2336efSEd Maste 		break;
8495f2336efSEd Maste 	}
8505f2336efSEd Maste 	/* linux_timer_gettime */
8515f2336efSEd Maste 	case 108: {
8525f2336efSEd Maste 		struct linux_timer_gettime_args *p = params;
8535f2336efSEd Maste 		iarg[0] = p->timerid; /* l_timer_t */
8545f2336efSEd Maste 		uarg[1] = (intptr_t)p->setting; /* struct itimerspec * */
8555f2336efSEd Maste 		*n_args = 2;
8565f2336efSEd Maste 		break;
8575f2336efSEd Maste 	}
8585f2336efSEd Maste 	/* linux_timer_getoverrun */
8595f2336efSEd Maste 	case 109: {
8605f2336efSEd Maste 		struct linux_timer_getoverrun_args *p = params;
8615f2336efSEd Maste 		iarg[0] = p->timerid; /* l_timer_t */
8625f2336efSEd Maste 		*n_args = 1;
8635f2336efSEd Maste 		break;
8645f2336efSEd Maste 	}
8655f2336efSEd Maste 	/* linux_timer_settime */
8665f2336efSEd Maste 	case 110: {
8675f2336efSEd Maste 		struct linux_timer_settime_args *p = params;
8685f2336efSEd Maste 		iarg[0] = p->timerid; /* l_timer_t */
8695f2336efSEd Maste 		iarg[1] = p->flags; /* l_int */
8705f2336efSEd Maste 		uarg[2] = (intptr_t)p->new; /* const struct itimerspec * */
8715f2336efSEd Maste 		uarg[3] = (intptr_t)p->old; /* struct itimerspec * */
8725f2336efSEd Maste 		*n_args = 4;
8735f2336efSEd Maste 		break;
8745f2336efSEd Maste 	}
8755f2336efSEd Maste 	/* linux_timer_delete */
8765f2336efSEd Maste 	case 111: {
8775f2336efSEd Maste 		struct linux_timer_delete_args *p = params;
8785f2336efSEd Maste 		iarg[0] = p->timerid; /* l_timer_t */
8795f2336efSEd Maste 		*n_args = 1;
8805f2336efSEd Maste 		break;
8815f2336efSEd Maste 	}
8825f2336efSEd Maste 	/* linux_clock_settime */
8835f2336efSEd Maste 	case 112: {
8845f2336efSEd Maste 		struct linux_clock_settime_args *p = params;
8855f2336efSEd Maste 		iarg[0] = p->which; /* clockid_t */
8865f2336efSEd Maste 		uarg[1] = (intptr_t)p->tp; /* struct l_timespec * */
8875f2336efSEd Maste 		*n_args = 2;
8885f2336efSEd Maste 		break;
8895f2336efSEd Maste 	}
8905f2336efSEd Maste 	/* linux_clock_gettime */
8915f2336efSEd Maste 	case 113: {
8925f2336efSEd Maste 		struct linux_clock_gettime_args *p = params;
8935f2336efSEd Maste 		iarg[0] = p->which; /* clockid_t */
8945f2336efSEd Maste 		uarg[1] = (intptr_t)p->tp; /* struct l_timespec * */
8955f2336efSEd Maste 		*n_args = 2;
8965f2336efSEd Maste 		break;
8975f2336efSEd Maste 	}
8985f2336efSEd Maste 	/* linux_clock_getres */
8995f2336efSEd Maste 	case 114: {
9005f2336efSEd Maste 		struct linux_clock_getres_args *p = params;
9015f2336efSEd Maste 		iarg[0] = p->which; /* clockid_t */
9025f2336efSEd Maste 		uarg[1] = (intptr_t)p->tp; /* struct l_timespec * */
9035f2336efSEd Maste 		*n_args = 2;
9045f2336efSEd Maste 		break;
9055f2336efSEd Maste 	}
9065f2336efSEd Maste 	/* linux_clock_nanosleep */
9075f2336efSEd Maste 	case 115: {
9085f2336efSEd Maste 		struct linux_clock_nanosleep_args *p = params;
9095f2336efSEd Maste 		iarg[0] = p->which; /* clockid_t */
910a39cdcd7SEdward Tomasz Napierala 		iarg[1] = p->flags; /* l_int */
9115f2336efSEd Maste 		uarg[2] = (intptr_t)p->rqtp; /* struct l_timespec * */
9125f2336efSEd Maste 		uarg[3] = (intptr_t)p->rmtp; /* struct l_timespec * */
9135f2336efSEd Maste 		*n_args = 4;
9145f2336efSEd Maste 		break;
9155f2336efSEd Maste 	}
9165f2336efSEd Maste 	/* linux_syslog */
9175f2336efSEd Maste 	case 116: {
9185f2336efSEd Maste 		struct linux_syslog_args *p = params;
9195f2336efSEd Maste 		iarg[0] = p->type; /* l_int */
9205f2336efSEd Maste 		uarg[1] = (intptr_t)p->buf; /* char * */
9215f2336efSEd Maste 		iarg[2] = p->len; /* l_int */
9225f2336efSEd Maste 		*n_args = 3;
9235f2336efSEd Maste 		break;
9245f2336efSEd Maste 	}
9255f2336efSEd Maste 	/* linux_ptrace */
9265f2336efSEd Maste 	case 117: {
9275f2336efSEd Maste 		struct linux_ptrace_args *p = params;
9285f2336efSEd Maste 		iarg[0] = p->req; /* l_long */
9295f2336efSEd Maste 		iarg[1] = p->pid; /* l_long */
9305f2336efSEd Maste 		iarg[2] = p->addr; /* l_ulong */
9315f2336efSEd Maste 		iarg[3] = p->data; /* l_ulong */
9325f2336efSEd Maste 		*n_args = 4;
9335f2336efSEd Maste 		break;
9345f2336efSEd Maste 	}
9355f2336efSEd Maste 	/* linux_sched_setparam */
9365f2336efSEd Maste 	case 118: {
9375f2336efSEd Maste 		struct linux_sched_setparam_args *p = params;
9385f2336efSEd Maste 		iarg[0] = p->pid; /* l_pid_t */
9395f2336efSEd Maste 		uarg[1] = (intptr_t)p->param; /* struct sched_param * */
9405f2336efSEd Maste 		*n_args = 2;
9415f2336efSEd Maste 		break;
9425f2336efSEd Maste 	}
9435f2336efSEd Maste 	/* linux_sched_setscheduler */
9445f2336efSEd Maste 	case 119: {
9455f2336efSEd Maste 		struct linux_sched_setscheduler_args *p = params;
9465f2336efSEd Maste 		iarg[0] = p->pid; /* l_pid_t */
9475f2336efSEd Maste 		iarg[1] = p->policy; /* l_int */
9485f2336efSEd Maste 		uarg[2] = (intptr_t)p->param; /* struct sched_param * */
9495f2336efSEd Maste 		*n_args = 3;
9505f2336efSEd Maste 		break;
9515f2336efSEd Maste 	}
9525f2336efSEd Maste 	/* linux_sched_getscheduler */
9535f2336efSEd Maste 	case 120: {
9545f2336efSEd Maste 		struct linux_sched_getscheduler_args *p = params;
9555f2336efSEd Maste 		iarg[0] = p->pid; /* l_pid_t */
9565f2336efSEd Maste 		*n_args = 1;
9575f2336efSEd Maste 		break;
9585f2336efSEd Maste 	}
9595f2336efSEd Maste 	/* linux_sched_getparam */
9605f2336efSEd Maste 	case 121: {
9615f2336efSEd Maste 		struct linux_sched_getparam_args *p = params;
9625f2336efSEd Maste 		iarg[0] = p->pid; /* l_pid_t */
9635f2336efSEd Maste 		uarg[1] = (intptr_t)p->param; /* struct sched_param * */
9645f2336efSEd Maste 		*n_args = 2;
9655f2336efSEd Maste 		break;
9665f2336efSEd Maste 	}
9675f2336efSEd Maste 	/* linux_sched_setaffinity */
9685f2336efSEd Maste 	case 122: {
9695f2336efSEd Maste 		struct linux_sched_setaffinity_args *p = params;
9705f2336efSEd Maste 		iarg[0] = p->pid; /* l_pid_t */
9715f2336efSEd Maste 		iarg[1] = p->len; /* l_uint */
9725f2336efSEd Maste 		uarg[2] = (intptr_t)p->user_mask_ptr; /* l_ulong * */
9735f2336efSEd Maste 		*n_args = 3;
9745f2336efSEd Maste 		break;
9755f2336efSEd Maste 	}
9765f2336efSEd Maste 	/* linux_sched_getaffinity */
9775f2336efSEd Maste 	case 123: {
9785f2336efSEd Maste 		struct linux_sched_getaffinity_args *p = params;
9795f2336efSEd Maste 		iarg[0] = p->pid; /* l_pid_t */
9805f2336efSEd Maste 		iarg[1] = p->len; /* l_uint */
9815f2336efSEd Maste 		uarg[2] = (intptr_t)p->user_mask_ptr; /* l_ulong * */
9825f2336efSEd Maste 		*n_args = 3;
9835f2336efSEd Maste 		break;
9845f2336efSEd Maste 	}
9855f2336efSEd Maste 	/* sched_yield */
9865f2336efSEd Maste 	case 124: {
9875f2336efSEd Maste 		*n_args = 0;
9885f2336efSEd Maste 		break;
9895f2336efSEd Maste 	}
9905f2336efSEd Maste 	/* linux_sched_get_priority_max */
9915f2336efSEd Maste 	case 125: {
9925f2336efSEd Maste 		struct linux_sched_get_priority_max_args *p = params;
9935f2336efSEd Maste 		iarg[0] = p->policy; /* l_int */
9945f2336efSEd Maste 		*n_args = 1;
9955f2336efSEd Maste 		break;
9965f2336efSEd Maste 	}
9975f2336efSEd Maste 	/* linux_sched_get_priority_min */
9985f2336efSEd Maste 	case 126: {
9995f2336efSEd Maste 		struct linux_sched_get_priority_min_args *p = params;
10005f2336efSEd Maste 		iarg[0] = p->policy; /* l_int */
10015f2336efSEd Maste 		*n_args = 1;
10025f2336efSEd Maste 		break;
10035f2336efSEd Maste 	}
10045f2336efSEd Maste 	/* linux_sched_rr_get_interval */
10055f2336efSEd Maste 	case 127: {
10065f2336efSEd Maste 		struct linux_sched_rr_get_interval_args *p = params;
10075f2336efSEd Maste 		iarg[0] = p->pid; /* l_pid_t */
10085f2336efSEd Maste 		uarg[1] = (intptr_t)p->interval; /* struct l_timespec * */
10095f2336efSEd Maste 		*n_args = 2;
10105f2336efSEd Maste 		break;
10115f2336efSEd Maste 	}
10125f2336efSEd Maste 	/* linux_kill */
10135f2336efSEd Maste 	case 129: {
10145f2336efSEd Maste 		struct linux_kill_args *p = params;
1015a39cdcd7SEdward Tomasz Napierala 		iarg[0] = p->pid; /* l_pid_t */
10165f2336efSEd Maste 		iarg[1] = p->signum; /* l_int */
10175f2336efSEd Maste 		*n_args = 2;
10185f2336efSEd Maste 		break;
10195f2336efSEd Maste 	}
10205f2336efSEd Maste 	/* linux_tkill */
10215f2336efSEd Maste 	case 130: {
10225f2336efSEd Maste 		struct linux_tkill_args *p = params;
1023a39cdcd7SEdward Tomasz Napierala 		iarg[0] = p->tid; /* l_pid_t */
10245f2336efSEd Maste 		iarg[1] = p->sig; /* l_int */
10255f2336efSEd Maste 		*n_args = 2;
10265f2336efSEd Maste 		break;
10275f2336efSEd Maste 	}
10285f2336efSEd Maste 	/* linux_tgkill */
10295f2336efSEd Maste 	case 131: {
10305f2336efSEd Maste 		struct linux_tgkill_args *p = params;
1031a39cdcd7SEdward Tomasz Napierala 		iarg[0] = p->tgid; /* l_pid_t */
1032a39cdcd7SEdward Tomasz Napierala 		iarg[1] = p->pid; /* l_pid_t */
10335f2336efSEd Maste 		iarg[2] = p->sig; /* l_int */
10345f2336efSEd Maste 		*n_args = 3;
10355f2336efSEd Maste 		break;
10365f2336efSEd Maste 	}
10375f2336efSEd Maste 	/* linux_sigaltstack */
10385f2336efSEd Maste 	case 132: {
10395f2336efSEd Maste 		struct linux_sigaltstack_args *p = params;
10405f2336efSEd Maste 		uarg[0] = (intptr_t)p->uss; /* l_stack_t * */
10415f2336efSEd Maste 		uarg[1] = (intptr_t)p->uoss; /* l_stack_t * */
10425f2336efSEd Maste 		*n_args = 2;
10435f2336efSEd Maste 		break;
10445f2336efSEd Maste 	}
10455f2336efSEd Maste 	/* linux_rt_sigsuspend */
10465f2336efSEd Maste 	case 133: {
10475f2336efSEd Maste 		struct linux_rt_sigsuspend_args *p = params;
10485f2336efSEd Maste 		uarg[0] = (intptr_t)p->newset; /* l_sigset_t * */
10495f2336efSEd Maste 		iarg[1] = p->sigsetsize; /* l_size_t */
10505f2336efSEd Maste 		*n_args = 2;
10515f2336efSEd Maste 		break;
10525f2336efSEd Maste 	}
10535f2336efSEd Maste 	/* linux_rt_sigaction */
10545f2336efSEd Maste 	case 134: {
10555f2336efSEd Maste 		struct linux_rt_sigaction_args *p = params;
10565f2336efSEd Maste 		iarg[0] = p->sig; /* l_int */
10575f2336efSEd Maste 		uarg[1] = (intptr_t)p->act; /* l_sigaction_t * */
10585f2336efSEd Maste 		uarg[2] = (intptr_t)p->oact; /* l_sigaction_t * */
10595f2336efSEd Maste 		iarg[3] = p->sigsetsize; /* l_size_t */
10605f2336efSEd Maste 		*n_args = 4;
10615f2336efSEd Maste 		break;
10625f2336efSEd Maste 	}
10635f2336efSEd Maste 	/* linux_rt_sigprocmask */
10645f2336efSEd Maste 	case 135: {
10655f2336efSEd Maste 		struct linux_rt_sigprocmask_args *p = params;
10665f2336efSEd Maste 		iarg[0] = p->how; /* l_int */
10675f2336efSEd Maste 		uarg[1] = (intptr_t)p->mask; /* l_sigset_t * */
10685f2336efSEd Maste 		uarg[2] = (intptr_t)p->omask; /* l_sigset_t * */
10695f2336efSEd Maste 		iarg[3] = p->sigsetsize; /* l_size_t */
10705f2336efSEd Maste 		*n_args = 4;
10715f2336efSEd Maste 		break;
10725f2336efSEd Maste 	}
10735f2336efSEd Maste 	/* linux_rt_sigpending */
10745f2336efSEd Maste 	case 136: {
10755f2336efSEd Maste 		struct linux_rt_sigpending_args *p = params;
10765f2336efSEd Maste 		uarg[0] = (intptr_t)p->set; /* l_sigset_t * */
10775f2336efSEd Maste 		iarg[1] = p->sigsetsize; /* l_size_t */
10785f2336efSEd Maste 		*n_args = 2;
10795f2336efSEd Maste 		break;
10805f2336efSEd Maste 	}
10815f2336efSEd Maste 	/* linux_rt_sigtimedwait */
10825f2336efSEd Maste 	case 137: {
10835f2336efSEd Maste 		struct linux_rt_sigtimedwait_args *p = params;
10845f2336efSEd Maste 		uarg[0] = (intptr_t)p->mask; /* l_sigset_t * */
10855f2336efSEd Maste 		uarg[1] = (intptr_t)p->ptr; /* l_siginfo_t * */
1086e29ea22fSDmitry Chagin 		uarg[2] = (intptr_t)p->timeout; /* struct l_timespec * */
10875f2336efSEd Maste 		iarg[3] = p->sigsetsize; /* l_size_t */
10885f2336efSEd Maste 		*n_args = 4;
10895f2336efSEd Maste 		break;
10905f2336efSEd Maste 	}
10915f2336efSEd Maste 	/* linux_rt_sigqueueinfo */
10925f2336efSEd Maste 	case 138: {
10935f2336efSEd Maste 		struct linux_rt_sigqueueinfo_args *p = params;
10945f2336efSEd Maste 		iarg[0] = p->pid; /* l_pid_t */
10955f2336efSEd Maste 		iarg[1] = p->sig; /* l_int */
10965f2336efSEd Maste 		uarg[2] = (intptr_t)p->info; /* l_siginfo_t * */
10975f2336efSEd Maste 		*n_args = 3;
10985f2336efSEd Maste 		break;
10995f2336efSEd Maste 	}
11005f2336efSEd Maste 	/* linux_rt_sigreturn */
11015f2336efSEd Maste 	case 139: {
11028bc3dc01SEdward Tomasz Napierala 		*n_args = 0;
11035f2336efSEd Maste 		break;
11045f2336efSEd Maste 	}
11055f2336efSEd Maste 	/* setpriority */
11065f2336efSEd Maste 	case 140: {
11075f2336efSEd Maste 		struct setpriority_args *p = params;
11085f2336efSEd Maste 		iarg[0] = p->which; /* int */
11095f2336efSEd Maste 		iarg[1] = p->who; /* int */
11105f2336efSEd Maste 		iarg[2] = p->prio; /* int */
11115f2336efSEd Maste 		*n_args = 3;
11125f2336efSEd Maste 		break;
11135f2336efSEd Maste 	}
11145f2336efSEd Maste 	/* linux_getpriority */
11155f2336efSEd Maste 	case 141: {
11165f2336efSEd Maste 		struct linux_getpriority_args *p = params;
11175f2336efSEd Maste 		iarg[0] = p->which; /* l_int */
11185f2336efSEd Maste 		iarg[1] = p->who; /* l_int */
11195f2336efSEd Maste 		*n_args = 2;
11205f2336efSEd Maste 		break;
11215f2336efSEd Maste 	}
11225f2336efSEd Maste 	/* linux_reboot */
11235f2336efSEd Maste 	case 142: {
11245f2336efSEd Maste 		struct linux_reboot_args *p = params;
11255f2336efSEd Maste 		iarg[0] = p->magic1; /* l_int */
11265f2336efSEd Maste 		iarg[1] = p->magic2; /* l_int */
11275f2336efSEd Maste 		iarg[2] = p->cmd; /* l_uint */
11285f2336efSEd Maste 		uarg[3] = (intptr_t)p->arg; /* void * */
11295f2336efSEd Maste 		*n_args = 4;
11305f2336efSEd Maste 		break;
11315f2336efSEd Maste 	}
11325f2336efSEd Maste 	/* setregid */
11335f2336efSEd Maste 	case 143: {
11345f2336efSEd Maste 		struct setregid_args *p = params;
11355f2336efSEd Maste 		iarg[0] = p->rgid; /* gid_t */
11365f2336efSEd Maste 		iarg[1] = p->egid; /* gid_t */
11375f2336efSEd Maste 		*n_args = 2;
11385f2336efSEd Maste 		break;
11395f2336efSEd Maste 	}
11405f2336efSEd Maste 	/* setgid */
11415f2336efSEd Maste 	case 144: {
11425f2336efSEd Maste 		struct setgid_args *p = params;
11435f2336efSEd Maste 		iarg[0] = p->gid; /* gid_t */
11445f2336efSEd Maste 		*n_args = 1;
11455f2336efSEd Maste 		break;
11465f2336efSEd Maste 	}
11475f2336efSEd Maste 	/* setreuid */
11485f2336efSEd Maste 	case 145: {
11495f2336efSEd Maste 		struct setreuid_args *p = params;
11505f2336efSEd Maste 		uarg[0] = p->ruid; /* uid_t */
11515f2336efSEd Maste 		uarg[1] = p->euid; /* uid_t */
11525f2336efSEd Maste 		*n_args = 2;
11535f2336efSEd Maste 		break;
11545f2336efSEd Maste 	}
11555f2336efSEd Maste 	/* setuid */
11565f2336efSEd Maste 	case 146: {
11575f2336efSEd Maste 		struct setuid_args *p = params;
11585f2336efSEd Maste 		uarg[0] = p->uid; /* uid_t */
11595f2336efSEd Maste 		*n_args = 1;
11605f2336efSEd Maste 		break;
11615f2336efSEd Maste 	}
11625f2336efSEd Maste 	/* setresuid */
11635f2336efSEd Maste 	case 147: {
11645f2336efSEd Maste 		struct setresuid_args *p = params;
11655f2336efSEd Maste 		uarg[0] = p->ruid; /* uid_t */
11665f2336efSEd Maste 		uarg[1] = p->euid; /* uid_t */
11675f2336efSEd Maste 		uarg[2] = p->suid; /* uid_t */
11685f2336efSEd Maste 		*n_args = 3;
11695f2336efSEd Maste 		break;
11705f2336efSEd Maste 	}
11715f2336efSEd Maste 	/* getresuid */
11725f2336efSEd Maste 	case 148: {
11735f2336efSEd Maste 		struct getresuid_args *p = params;
11745f2336efSEd Maste 		uarg[0] = (intptr_t)p->ruid; /* uid_t * */
11755f2336efSEd Maste 		uarg[1] = (intptr_t)p->euid; /* uid_t * */
11765f2336efSEd Maste 		uarg[2] = (intptr_t)p->suid; /* uid_t * */
11775f2336efSEd Maste 		*n_args = 3;
11785f2336efSEd Maste 		break;
11795f2336efSEd Maste 	}
11805f2336efSEd Maste 	/* setresgid */
11815f2336efSEd Maste 	case 149: {
11825f2336efSEd Maste 		struct setresgid_args *p = params;
11835f2336efSEd Maste 		iarg[0] = p->rgid; /* gid_t */
11845f2336efSEd Maste 		iarg[1] = p->egid; /* gid_t */
11855f2336efSEd Maste 		iarg[2] = p->sgid; /* gid_t */
11865f2336efSEd Maste 		*n_args = 3;
11875f2336efSEd Maste 		break;
11885f2336efSEd Maste 	}
11895f2336efSEd Maste 	/* getresgid */
11905f2336efSEd Maste 	case 150: {
11915f2336efSEd Maste 		struct getresgid_args *p = params;
11925f2336efSEd Maste 		uarg[0] = (intptr_t)p->rgid; /* gid_t * */
11935f2336efSEd Maste 		uarg[1] = (intptr_t)p->egid; /* gid_t * */
11945f2336efSEd Maste 		uarg[2] = (intptr_t)p->sgid; /* gid_t * */
11955f2336efSEd Maste 		*n_args = 3;
11965f2336efSEd Maste 		break;
11975f2336efSEd Maste 	}
11985f2336efSEd Maste 	/* linux_setfsuid */
11995f2336efSEd Maste 	case 151: {
12005f2336efSEd Maste 		struct linux_setfsuid_args *p = params;
12015f2336efSEd Maste 		iarg[0] = p->uid; /* l_uid_t */
12025f2336efSEd Maste 		*n_args = 1;
12035f2336efSEd Maste 		break;
12045f2336efSEd Maste 	}
12055f2336efSEd Maste 	/* linux_setfsgid */
12065f2336efSEd Maste 	case 152: {
12075f2336efSEd Maste 		struct linux_setfsgid_args *p = params;
12085f2336efSEd Maste 		iarg[0] = p->gid; /* l_gid_t */
12095f2336efSEd Maste 		*n_args = 1;
12105f2336efSEd Maste 		break;
12115f2336efSEd Maste 	}
12125f2336efSEd Maste 	/* linux_times */
12135f2336efSEd Maste 	case 153: {
12145f2336efSEd Maste 		struct linux_times_args *p = params;
12155f2336efSEd Maste 		uarg[0] = (intptr_t)p->buf; /* struct l_times_argv * */
12165f2336efSEd Maste 		*n_args = 1;
12175f2336efSEd Maste 		break;
12185f2336efSEd Maste 	}
12195f2336efSEd Maste 	/* setpgid */
12205f2336efSEd Maste 	case 154: {
12215f2336efSEd Maste 		struct setpgid_args *p = params;
12225f2336efSEd Maste 		iarg[0] = p->pid; /* int */
12235f2336efSEd Maste 		iarg[1] = p->pgid; /* int */
12245f2336efSEd Maste 		*n_args = 2;
12255f2336efSEd Maste 		break;
12265f2336efSEd Maste 	}
12275f2336efSEd Maste 	/* getpgid */
12285f2336efSEd Maste 	case 155: {
12295f2336efSEd Maste 		struct getpgid_args *p = params;
12305f2336efSEd Maste 		iarg[0] = p->pid; /* int */
12315f2336efSEd Maste 		*n_args = 1;
12325f2336efSEd Maste 		break;
12335f2336efSEd Maste 	}
12345f2336efSEd Maste 	/* linux_getsid */
12355f2336efSEd Maste 	case 156: {
12365f2336efSEd Maste 		struct linux_getsid_args *p = params;
12375f2336efSEd Maste 		iarg[0] = p->pid; /* l_pid_t */
12385f2336efSEd Maste 		*n_args = 1;
12395f2336efSEd Maste 		break;
12405f2336efSEd Maste 	}
12415f2336efSEd Maste 	/* setsid */
12425f2336efSEd Maste 	case 157: {
12435f2336efSEd Maste 		*n_args = 0;
12445f2336efSEd Maste 		break;
12455f2336efSEd Maste 	}
12465f2336efSEd Maste 	/* linux_getgroups */
12475f2336efSEd Maste 	case 158: {
12485f2336efSEd Maste 		struct linux_getgroups_args *p = params;
12495f2336efSEd Maste 		iarg[0] = p->gidsetsize; /* l_int */
12505f2336efSEd Maste 		uarg[1] = (intptr_t)p->grouplist; /* l_gid_t * */
12515f2336efSEd Maste 		*n_args = 2;
12525f2336efSEd Maste 		break;
12535f2336efSEd Maste 	}
12545f2336efSEd Maste 	/* linux_setgroups */
12555f2336efSEd Maste 	case 159: {
12565f2336efSEd Maste 		struct linux_setgroups_args *p = params;
12575f2336efSEd Maste 		iarg[0] = p->gidsetsize; /* l_int */
12585f2336efSEd Maste 		uarg[1] = (intptr_t)p->grouplist; /* l_gid_t * */
12595f2336efSEd Maste 		*n_args = 2;
12605f2336efSEd Maste 		break;
12615f2336efSEd Maste 	}
12625f2336efSEd Maste 	/* linux_newuname */
12635f2336efSEd Maste 	case 160: {
12645f2336efSEd Maste 		struct linux_newuname_args *p = params;
12655f2336efSEd Maste 		uarg[0] = (intptr_t)p->buf; /* struct l_new_utsname * */
12665f2336efSEd Maste 		*n_args = 1;
12675f2336efSEd Maste 		break;
12685f2336efSEd Maste 	}
12695f2336efSEd Maste 	/* linux_sethostname */
12705f2336efSEd Maste 	case 161: {
12715f2336efSEd Maste 		struct linux_sethostname_args *p = params;
12725f2336efSEd Maste 		uarg[0] = (intptr_t)p->hostname; /* char * */
12735f2336efSEd Maste 		iarg[1] = p->len; /* l_uint */
12745f2336efSEd Maste 		*n_args = 2;
12755f2336efSEd Maste 		break;
12765f2336efSEd Maste 	}
12775f2336efSEd Maste 	/* linux_setdomainname */
12785f2336efSEd Maste 	case 162: {
12795f2336efSEd Maste 		struct linux_setdomainname_args *p = params;
12805f2336efSEd Maste 		uarg[0] = (intptr_t)p->name; /* char * */
12815f2336efSEd Maste 		iarg[1] = p->len; /* l_int */
12825f2336efSEd Maste 		*n_args = 2;
12835f2336efSEd Maste 		break;
12845f2336efSEd Maste 	}
12855f2336efSEd Maste 	/* linux_getrlimit */
12865f2336efSEd Maste 	case 163: {
12875f2336efSEd Maste 		struct linux_getrlimit_args *p = params;
12885f2336efSEd Maste 		iarg[0] = p->resource; /* l_uint */
12895f2336efSEd Maste 		uarg[1] = (intptr_t)p->rlim; /* struct l_rlimit * */
12905f2336efSEd Maste 		*n_args = 2;
12915f2336efSEd Maste 		break;
12925f2336efSEd Maste 	}
12935f2336efSEd Maste 	/* linux_setrlimit */
12945f2336efSEd Maste 	case 164: {
12955f2336efSEd Maste 		struct linux_setrlimit_args *p = params;
12965f2336efSEd Maste 		iarg[0] = p->resource; /* l_uint */
12975f2336efSEd Maste 		uarg[1] = (intptr_t)p->rlim; /* struct l_rlimit * */
12985f2336efSEd Maste 		*n_args = 2;
12995f2336efSEd Maste 		break;
13005f2336efSEd Maste 	}
13015f2336efSEd Maste 	/* getrusage */
13025f2336efSEd Maste 	case 165: {
13035f2336efSEd Maste 		struct getrusage_args *p = params;
13045f2336efSEd Maste 		iarg[0] = p->who; /* int */
13055f2336efSEd Maste 		uarg[1] = (intptr_t)p->rusage; /* struct rusage * */
13065f2336efSEd Maste 		*n_args = 2;
13075f2336efSEd Maste 		break;
13085f2336efSEd Maste 	}
13095f2336efSEd Maste 	/* umask */
13105f2336efSEd Maste 	case 166: {
13115f2336efSEd Maste 		struct umask_args *p = params;
13125f2336efSEd Maste 		iarg[0] = p->newmask; /* int */
13135f2336efSEd Maste 		*n_args = 1;
13145f2336efSEd Maste 		break;
13155f2336efSEd Maste 	}
13165f2336efSEd Maste 	/* linux_prctl */
13175f2336efSEd Maste 	case 167: {
13185f2336efSEd Maste 		struct linux_prctl_args *p = params;
13195f2336efSEd Maste 		iarg[0] = p->option; /* l_int */
13205f2336efSEd Maste 		iarg[1] = p->arg2; /* l_uintptr_t */
13215f2336efSEd Maste 		iarg[2] = p->arg3; /* l_uintptr_t */
13225f2336efSEd Maste 		iarg[3] = p->arg4; /* l_uintptr_t */
13235f2336efSEd Maste 		iarg[4] = p->arg5; /* l_uintptr_t */
13245f2336efSEd Maste 		*n_args = 5;
13255f2336efSEd Maste 		break;
13265f2336efSEd Maste 	}
13275f2336efSEd Maste 	/* linux_getcpu */
13285f2336efSEd Maste 	case 168: {
13295f2336efSEd Maste 		struct linux_getcpu_args *p = params;
13305f2336efSEd Maste 		uarg[0] = (intptr_t)p->cpu; /* l_uint * */
13315f2336efSEd Maste 		uarg[1] = (intptr_t)p->node; /* l_uint * */
13325f2336efSEd Maste 		uarg[2] = (intptr_t)p->cache; /* void * */
13335f2336efSEd Maste 		*n_args = 3;
13345f2336efSEd Maste 		break;
13355f2336efSEd Maste 	}
13365f2336efSEd Maste 	/* gettimeofday */
13375f2336efSEd Maste 	case 169: {
13385f2336efSEd Maste 		struct gettimeofday_args *p = params;
13395f2336efSEd Maste 		uarg[0] = (intptr_t)p->tp; /* struct l_timeval * */
13405f2336efSEd Maste 		uarg[1] = (intptr_t)p->tzp; /* struct timezone * */
13415f2336efSEd Maste 		*n_args = 2;
13425f2336efSEd Maste 		break;
13435f2336efSEd Maste 	}
13445f2336efSEd Maste 	/* settimeofday */
13455f2336efSEd Maste 	case 170: {
13465f2336efSEd Maste 		struct settimeofday_args *p = params;
13475f2336efSEd Maste 		uarg[0] = (intptr_t)p->tv; /* struct l_timeval * */
13485f2336efSEd Maste 		uarg[1] = (intptr_t)p->tzp; /* struct timezone * */
13495f2336efSEd Maste 		*n_args = 2;
13505f2336efSEd Maste 		break;
13515f2336efSEd Maste 	}
13525f2336efSEd Maste 	/* linux_adjtimex */
13535f2336efSEd Maste 	case 171: {
13545f2336efSEd Maste 		*n_args = 0;
13555f2336efSEd Maste 		break;
13565f2336efSEd Maste 	}
13575f2336efSEd Maste 	/* linux_getpid */
13585f2336efSEd Maste 	case 172: {
13595f2336efSEd Maste 		*n_args = 0;
13605f2336efSEd Maste 		break;
13615f2336efSEd Maste 	}
13625f2336efSEd Maste 	/* linux_getppid */
13635f2336efSEd Maste 	case 173: {
13645f2336efSEd Maste 		*n_args = 0;
13655f2336efSEd Maste 		break;
13665f2336efSEd Maste 	}
13675f2336efSEd Maste 	/* linux_getuid */
13685f2336efSEd Maste 	case 174: {
13695f2336efSEd Maste 		*n_args = 0;
13705f2336efSEd Maste 		break;
13715f2336efSEd Maste 	}
13725f2336efSEd Maste 	/* geteuid */
13735f2336efSEd Maste 	case 175: {
13745f2336efSEd Maste 		*n_args = 0;
13755f2336efSEd Maste 		break;
13765f2336efSEd Maste 	}
13775f2336efSEd Maste 	/* linux_getgid */
13785f2336efSEd Maste 	case 176: {
13795f2336efSEd Maste 		*n_args = 0;
13805f2336efSEd Maste 		break;
13815f2336efSEd Maste 	}
13825f2336efSEd Maste 	/* getegid */
13835f2336efSEd Maste 	case 177: {
13845f2336efSEd Maste 		*n_args = 0;
13855f2336efSEd Maste 		break;
13865f2336efSEd Maste 	}
13875f2336efSEd Maste 	/* linux_gettid */
13885f2336efSEd Maste 	case 178: {
13895f2336efSEd Maste 		*n_args = 0;
13905f2336efSEd Maste 		break;
13915f2336efSEd Maste 	}
13925f2336efSEd Maste 	/* linux_sysinfo */
13935f2336efSEd Maste 	case 179: {
13945f2336efSEd Maste 		struct linux_sysinfo_args *p = params;
13955f2336efSEd Maste 		uarg[0] = (intptr_t)p->info; /* struct l_sysinfo * */
13965f2336efSEd Maste 		*n_args = 1;
13975f2336efSEd Maste 		break;
13985f2336efSEd Maste 	}
13995f2336efSEd Maste 	/* linux_mq_open */
14005f2336efSEd Maste 	case 180: {
1401a39cdcd7SEdward Tomasz Napierala 		struct linux_mq_open_args *p = params;
1402a39cdcd7SEdward Tomasz Napierala 		uarg[0] = (intptr_t)p->name; /* const char * */
1403a39cdcd7SEdward Tomasz Napierala 		iarg[1] = p->oflag; /* l_int */
1404a39cdcd7SEdward Tomasz Napierala 		iarg[2] = p->mode; /* l_mode_t */
1405a39cdcd7SEdward Tomasz Napierala 		uarg[3] = (intptr_t)p->attr; /* struct mq_attr * */
1406a39cdcd7SEdward Tomasz Napierala 		*n_args = 4;
14075f2336efSEd Maste 		break;
14085f2336efSEd Maste 	}
14095f2336efSEd Maste 	/* linux_mq_unlink */
14105f2336efSEd Maste 	case 181: {
1411a39cdcd7SEdward Tomasz Napierala 		struct linux_mq_unlink_args *p = params;
1412a39cdcd7SEdward Tomasz Napierala 		uarg[0] = (intptr_t)p->name; /* const char * */
1413a39cdcd7SEdward Tomasz Napierala 		*n_args = 1;
14145f2336efSEd Maste 		break;
14155f2336efSEd Maste 	}
14165f2336efSEd Maste 	/* linux_mq_timedsend */
14175f2336efSEd Maste 	case 182: {
1418a39cdcd7SEdward Tomasz Napierala 		struct linux_mq_timedsend_args *p = params;
1419a39cdcd7SEdward Tomasz Napierala 		iarg[0] = p->mqd; /* l_mqd_t */
1420a39cdcd7SEdward Tomasz Napierala 		uarg[1] = (intptr_t)p->msg_ptr; /* const char * */
1421a39cdcd7SEdward Tomasz Napierala 		iarg[2] = p->msg_len; /* l_size_t */
1422a39cdcd7SEdward Tomasz Napierala 		iarg[3] = p->msg_prio; /* l_uint */
1423a39cdcd7SEdward Tomasz Napierala 		uarg[4] = (intptr_t)p->abs_timeout; /* const struct l_timespec * */
1424a39cdcd7SEdward Tomasz Napierala 		*n_args = 5;
14255f2336efSEd Maste 		break;
14265f2336efSEd Maste 	}
14275f2336efSEd Maste 	/* linux_mq_timedreceive */
14285f2336efSEd Maste 	case 183: {
1429a39cdcd7SEdward Tomasz Napierala 		struct linux_mq_timedreceive_args *p = params;
1430a39cdcd7SEdward Tomasz Napierala 		iarg[0] = p->mqd; /* l_mqd_t */
1431a39cdcd7SEdward Tomasz Napierala 		uarg[1] = (intptr_t)p->msg_ptr; /* char * */
1432a39cdcd7SEdward Tomasz Napierala 		iarg[2] = p->msg_len; /* l_size_t */
1433a39cdcd7SEdward Tomasz Napierala 		uarg[3] = (intptr_t)p->msg_prio; /* l_uint * */
1434a39cdcd7SEdward Tomasz Napierala 		uarg[4] = (intptr_t)p->abs_timeout; /* const struct l_timespec * */
1435a39cdcd7SEdward Tomasz Napierala 		*n_args = 5;
14365f2336efSEd Maste 		break;
14375f2336efSEd Maste 	}
14385f2336efSEd Maste 	/* linux_mq_notify */
14395f2336efSEd Maste 	case 184: {
1440a39cdcd7SEdward Tomasz Napierala 		struct linux_mq_notify_args *p = params;
1441a39cdcd7SEdward Tomasz Napierala 		iarg[0] = p->mqd; /* l_mqd_t */
1442a39cdcd7SEdward Tomasz Napierala 		uarg[1] = (intptr_t)p->abs_timeout; /* const struct l_timespec * */
1443a39cdcd7SEdward Tomasz Napierala 		*n_args = 2;
14445f2336efSEd Maste 		break;
14455f2336efSEd Maste 	}
14465f2336efSEd Maste 	/* linux_mq_getsetattr */
14475f2336efSEd Maste 	case 185: {
1448a39cdcd7SEdward Tomasz Napierala 		struct linux_mq_getsetattr_args *p = params;
1449a39cdcd7SEdward Tomasz Napierala 		iarg[0] = p->mqd; /* l_mqd_t */
1450a39cdcd7SEdward Tomasz Napierala 		uarg[1] = (intptr_t)p->attr; /* const struct mq_attr * */
1451a39cdcd7SEdward Tomasz Napierala 		uarg[2] = (intptr_t)p->oattr; /* struct mq_attr * */
1452a39cdcd7SEdward Tomasz Napierala 		*n_args = 3;
14535f2336efSEd Maste 		break;
14545f2336efSEd Maste 	}
14555f2336efSEd Maste 	/* linux_msgget */
14565f2336efSEd Maste 	case 186: {
14575f2336efSEd Maste 		struct linux_msgget_args *p = params;
14585f2336efSEd Maste 		iarg[0] = p->key; /* l_key_t */
14595f2336efSEd Maste 		iarg[1] = p->msgflg; /* l_int */
14605f2336efSEd Maste 		*n_args = 2;
14615f2336efSEd Maste 		break;
14625f2336efSEd Maste 	}
14635f2336efSEd Maste 	/* linux_msgctl */
14645f2336efSEd Maste 	case 187: {
14655f2336efSEd Maste 		struct linux_msgctl_args *p = params;
14665f2336efSEd Maste 		iarg[0] = p->msqid; /* l_int */
14675f2336efSEd Maste 		iarg[1] = p->cmd; /* l_int */
14685f2336efSEd Maste 		uarg[2] = (intptr_t)p->buf; /* struct l_msqid_ds * */
14695f2336efSEd Maste 		*n_args = 3;
14705f2336efSEd Maste 		break;
14715f2336efSEd Maste 	}
14725f2336efSEd Maste 	/* linux_msgrcv */
14735f2336efSEd Maste 	case 188: {
14745f2336efSEd Maste 		struct linux_msgrcv_args *p = params;
14755f2336efSEd Maste 		iarg[0] = p->msqid; /* l_int */
14765f2336efSEd Maste 		uarg[1] = (intptr_t)p->msgp; /* struct l_msgbuf * */
14775f2336efSEd Maste 		iarg[2] = p->msgsz; /* l_size_t */
14785f2336efSEd Maste 		iarg[3] = p->msgtyp; /* l_long */
14795f2336efSEd Maste 		iarg[4] = p->msgflg; /* l_int */
14805f2336efSEd Maste 		*n_args = 5;
14815f2336efSEd Maste 		break;
14825f2336efSEd Maste 	}
14835f2336efSEd Maste 	/* linux_msgsnd */
14845f2336efSEd Maste 	case 189: {
14855f2336efSEd Maste 		struct linux_msgsnd_args *p = params;
14865f2336efSEd Maste 		iarg[0] = p->msqid; /* l_int */
14875f2336efSEd Maste 		uarg[1] = (intptr_t)p->msgp; /* struct l_msgbuf * */
14885f2336efSEd Maste 		iarg[2] = p->msgsz; /* l_size_t */
14895f2336efSEd Maste 		iarg[3] = p->msgflg; /* l_int */
14905f2336efSEd Maste 		*n_args = 4;
14915f2336efSEd Maste 		break;
14925f2336efSEd Maste 	}
14935f2336efSEd Maste 	/* linux_semget */
14945f2336efSEd Maste 	case 190: {
14955f2336efSEd Maste 		struct linux_semget_args *p = params;
14965f2336efSEd Maste 		iarg[0] = p->key; /* l_key_t */
14975f2336efSEd Maste 		iarg[1] = p->nsems; /* l_int */
14985f2336efSEd Maste 		iarg[2] = p->semflg; /* l_int */
14995f2336efSEd Maste 		*n_args = 3;
15005f2336efSEd Maste 		break;
15015f2336efSEd Maste 	}
15025f2336efSEd Maste 	/* linux_semctl */
15035f2336efSEd Maste 	case 191: {
15045f2336efSEd Maste 		struct linux_semctl_args *p = params;
15055f2336efSEd Maste 		iarg[0] = p->semid; /* l_int */
15065f2336efSEd Maste 		iarg[1] = p->semnum; /* l_int */
15075f2336efSEd Maste 		iarg[2] = p->cmd; /* l_int */
15085f2336efSEd Maste 		uarg[3] = p->arg.buf; /* union l_semun */
15095f2336efSEd Maste 		*n_args = 4;
15105f2336efSEd Maste 		break;
15115f2336efSEd Maste 	}
15125f2336efSEd Maste 	/* linux_semtimedop */
15135f2336efSEd Maste 	case 192: {
15145f2336efSEd Maste 		*n_args = 0;
15155f2336efSEd Maste 		break;
15165f2336efSEd Maste 	}
15175f2336efSEd Maste 	/* linux_semop */
15185f2336efSEd Maste 	case 193: {
15195f2336efSEd Maste 		struct linux_semop_args *p = params;
15205f2336efSEd Maste 		iarg[0] = p->semid; /* l_int */
15215f2336efSEd Maste 		uarg[1] = (intptr_t)p->tsops; /* struct l_sembuf * */
15225f2336efSEd Maste 		iarg[2] = p->nsops; /* l_uint */
15235f2336efSEd Maste 		*n_args = 3;
15245f2336efSEd Maste 		break;
15255f2336efSEd Maste 	}
15265f2336efSEd Maste 	/* linux_shmget */
15275f2336efSEd Maste 	case 194: {
15285f2336efSEd Maste 		struct linux_shmget_args *p = params;
15295f2336efSEd Maste 		iarg[0] = p->key; /* l_key_t */
15305f2336efSEd Maste 		iarg[1] = p->size; /* l_size_t */
15315f2336efSEd Maste 		iarg[2] = p->shmflg; /* l_int */
15325f2336efSEd Maste 		*n_args = 3;
15335f2336efSEd Maste 		break;
15345f2336efSEd Maste 	}
15355f2336efSEd Maste 	/* linux_shmctl */
15365f2336efSEd Maste 	case 195: {
15375f2336efSEd Maste 		struct linux_shmctl_args *p = params;
15385f2336efSEd Maste 		iarg[0] = p->shmid; /* l_int */
15395f2336efSEd Maste 		iarg[1] = p->cmd; /* l_int */
15405f2336efSEd Maste 		uarg[2] = (intptr_t)p->buf; /* struct l_shmid_ds * */
15415f2336efSEd Maste 		*n_args = 3;
15425f2336efSEd Maste 		break;
15435f2336efSEd Maste 	}
15445f2336efSEd Maste 	/* linux_shmat */
15455f2336efSEd Maste 	case 196: {
15465f2336efSEd Maste 		struct linux_shmat_args *p = params;
15475f2336efSEd Maste 		iarg[0] = p->shmid; /* l_int */
15485f2336efSEd Maste 		uarg[1] = (intptr_t)p->shmaddr; /* char * */
15495f2336efSEd Maste 		iarg[2] = p->shmflg; /* l_int */
15505f2336efSEd Maste 		*n_args = 3;
15515f2336efSEd Maste 		break;
15525f2336efSEd Maste 	}
15535f2336efSEd Maste 	/* linux_shmdt */
15545f2336efSEd Maste 	case 197: {
15555f2336efSEd Maste 		struct linux_shmdt_args *p = params;
15565f2336efSEd Maste 		uarg[0] = (intptr_t)p->shmaddr; /* char * */
15575f2336efSEd Maste 		*n_args = 1;
15585f2336efSEd Maste 		break;
15595f2336efSEd Maste 	}
15605f2336efSEd Maste 	/* linux_socket */
15615f2336efSEd Maste 	case 198: {
15625f2336efSEd Maste 		struct linux_socket_args *p = params;
15635f2336efSEd Maste 		iarg[0] = p->domain; /* l_int */
15645f2336efSEd Maste 		iarg[1] = p->type; /* l_int */
15655f2336efSEd Maste 		iarg[2] = p->protocol; /* l_int */
15665f2336efSEd Maste 		*n_args = 3;
15675f2336efSEd Maste 		break;
15685f2336efSEd Maste 	}
15695f2336efSEd Maste 	/* linux_socketpair */
15705f2336efSEd Maste 	case 199: {
15715f2336efSEd Maste 		struct linux_socketpair_args *p = params;
15725f2336efSEd Maste 		iarg[0] = p->domain; /* l_int */
15735f2336efSEd Maste 		iarg[1] = p->type; /* l_int */
15745f2336efSEd Maste 		iarg[2] = p->protocol; /* l_int */
15755f2336efSEd Maste 		iarg[3] = p->rsv; /* l_uintptr_t */
15765f2336efSEd Maste 		*n_args = 4;
15775f2336efSEd Maste 		break;
15785f2336efSEd Maste 	}
15795f2336efSEd Maste 	/* linux_bind */
15805f2336efSEd Maste 	case 200: {
15815f2336efSEd Maste 		struct linux_bind_args *p = params;
15825f2336efSEd Maste 		iarg[0] = p->s; /* l_int */
15835f2336efSEd Maste 		iarg[1] = p->name; /* l_uintptr_t */
15845f2336efSEd Maste 		iarg[2] = p->namelen; /* l_int */
15855f2336efSEd Maste 		*n_args = 3;
15865f2336efSEd Maste 		break;
15875f2336efSEd Maste 	}
15885f2336efSEd Maste 	/* linux_listen */
15895f2336efSEd Maste 	case 201: {
15905f2336efSEd Maste 		struct linux_listen_args *p = params;
15915f2336efSEd Maste 		iarg[0] = p->s; /* l_int */
15925f2336efSEd Maste 		iarg[1] = p->backlog; /* l_int */
15935f2336efSEd Maste 		*n_args = 2;
15945f2336efSEd Maste 		break;
15955f2336efSEd Maste 	}
15965f2336efSEd Maste 	/* linux_accept */
15975f2336efSEd Maste 	case 202: {
15985f2336efSEd Maste 		struct linux_accept_args *p = params;
15995f2336efSEd Maste 		iarg[0] = p->s; /* l_int */
16005f2336efSEd Maste 		iarg[1] = p->addr; /* l_uintptr_t */
16015f2336efSEd Maste 		iarg[2] = p->namelen; /* l_uintptr_t */
16025f2336efSEd Maste 		*n_args = 3;
16035f2336efSEd Maste 		break;
16045f2336efSEd Maste 	}
16055f2336efSEd Maste 	/* linux_connect */
16065f2336efSEd Maste 	case 203: {
16075f2336efSEd Maste 		struct linux_connect_args *p = params;
16085f2336efSEd Maste 		iarg[0] = p->s; /* l_int */
16095f2336efSEd Maste 		iarg[1] = p->name; /* l_uintptr_t */
16105f2336efSEd Maste 		iarg[2] = p->namelen; /* l_int */
16115f2336efSEd Maste 		*n_args = 3;
16125f2336efSEd Maste 		break;
16135f2336efSEd Maste 	}
16145f2336efSEd Maste 	/* linux_getsockname */
16155f2336efSEd Maste 	case 204: {
16165f2336efSEd Maste 		struct linux_getsockname_args *p = params;
16175f2336efSEd Maste 		iarg[0] = p->s; /* l_int */
16185f2336efSEd Maste 		iarg[1] = p->addr; /* l_uintptr_t */
16195f2336efSEd Maste 		iarg[2] = p->namelen; /* l_uintptr_t */
16205f2336efSEd Maste 		*n_args = 3;
16215f2336efSEd Maste 		break;
16225f2336efSEd Maste 	}
16235f2336efSEd Maste 	/* linux_getpeername */
16245f2336efSEd Maste 	case 205: {
16255f2336efSEd Maste 		struct linux_getpeername_args *p = params;
16265f2336efSEd Maste 		iarg[0] = p->s; /* l_int */
16275f2336efSEd Maste 		iarg[1] = p->addr; /* l_uintptr_t */
16285f2336efSEd Maste 		iarg[2] = p->namelen; /* l_uintptr_t */
16295f2336efSEd Maste 		*n_args = 3;
16305f2336efSEd Maste 		break;
16315f2336efSEd Maste 	}
16325f2336efSEd Maste 	/* linux_sendto */
16335f2336efSEd Maste 	case 206: {
16345f2336efSEd Maste 		struct linux_sendto_args *p = params;
16355f2336efSEd Maste 		iarg[0] = p->s; /* l_int */
16365f2336efSEd Maste 		iarg[1] = p->msg; /* l_uintptr_t */
1637a39cdcd7SEdward Tomasz Napierala 		iarg[2] = p->len; /* l_size_t */
1638a39cdcd7SEdward Tomasz Napierala 		iarg[3] = p->flags; /* l_uint */
16395f2336efSEd Maste 		iarg[4] = p->to; /* l_uintptr_t */
16405f2336efSEd Maste 		iarg[5] = p->tolen; /* l_int */
16415f2336efSEd Maste 		*n_args = 6;
16425f2336efSEd Maste 		break;
16435f2336efSEd Maste 	}
16445f2336efSEd Maste 	/* linux_recvfrom */
16455f2336efSEd Maste 	case 207: {
16465f2336efSEd Maste 		struct linux_recvfrom_args *p = params;
16475f2336efSEd Maste 		iarg[0] = p->s; /* l_int */
16485f2336efSEd Maste 		iarg[1] = p->buf; /* l_uintptr_t */
16495f2336efSEd Maste 		iarg[2] = p->len; /* l_size_t */
1650a39cdcd7SEdward Tomasz Napierala 		iarg[3] = p->flags; /* l_uint */
16515f2336efSEd Maste 		iarg[4] = p->from; /* l_uintptr_t */
16525f2336efSEd Maste 		iarg[5] = p->fromlen; /* l_uintptr_t */
16535f2336efSEd Maste 		*n_args = 6;
16545f2336efSEd Maste 		break;
16555f2336efSEd Maste 	}
16565f2336efSEd Maste 	/* linux_setsockopt */
16575f2336efSEd Maste 	case 208: {
16585f2336efSEd Maste 		struct linux_setsockopt_args *p = params;
16595f2336efSEd Maste 		iarg[0] = p->s; /* l_int */
16605f2336efSEd Maste 		iarg[1] = p->level; /* l_int */
16615f2336efSEd Maste 		iarg[2] = p->optname; /* l_int */
16625f2336efSEd Maste 		iarg[3] = p->optval; /* l_uintptr_t */
16635f2336efSEd Maste 		iarg[4] = p->optlen; /* l_int */
16645f2336efSEd Maste 		*n_args = 5;
16655f2336efSEd Maste 		break;
16665f2336efSEd Maste 	}
16675f2336efSEd Maste 	/* linux_getsockopt */
16685f2336efSEd Maste 	case 209: {
16695f2336efSEd Maste 		struct linux_getsockopt_args *p = params;
16705f2336efSEd Maste 		iarg[0] = p->s; /* l_int */
16715f2336efSEd Maste 		iarg[1] = p->level; /* l_int */
16725f2336efSEd Maste 		iarg[2] = p->optname; /* l_int */
16735f2336efSEd Maste 		iarg[3] = p->optval; /* l_uintptr_t */
16745f2336efSEd Maste 		iarg[4] = p->optlen; /* l_uintptr_t */
16755f2336efSEd Maste 		*n_args = 5;
16765f2336efSEd Maste 		break;
16775f2336efSEd Maste 	}
16785f2336efSEd Maste 	/* linux_shutdown */
16795f2336efSEd Maste 	case 210: {
16805f2336efSEd Maste 		struct linux_shutdown_args *p = params;
16815f2336efSEd Maste 		iarg[0] = p->s; /* l_int */
16825f2336efSEd Maste 		iarg[1] = p->how; /* l_int */
16835f2336efSEd Maste 		*n_args = 2;
16845f2336efSEd Maste 		break;
16855f2336efSEd Maste 	}
16865f2336efSEd Maste 	/* linux_sendmsg */
16875f2336efSEd Maste 	case 211: {
16885f2336efSEd Maste 		struct linux_sendmsg_args *p = params;
16895f2336efSEd Maste 		iarg[0] = p->s; /* l_int */
16905f2336efSEd Maste 		iarg[1] = p->msg; /* l_uintptr_t */
1691a39cdcd7SEdward Tomasz Napierala 		iarg[2] = p->flags; /* l_uint */
16925f2336efSEd Maste 		*n_args = 3;
16935f2336efSEd Maste 		break;
16945f2336efSEd Maste 	}
16955f2336efSEd Maste 	/* linux_recvmsg */
16965f2336efSEd Maste 	case 212: {
16975f2336efSEd Maste 		struct linux_recvmsg_args *p = params;
16985f2336efSEd Maste 		iarg[0] = p->s; /* l_int */
16995f2336efSEd Maste 		iarg[1] = p->msg; /* l_uintptr_t */
1700a39cdcd7SEdward Tomasz Napierala 		iarg[2] = p->flags; /* l_uint */
17015f2336efSEd Maste 		*n_args = 3;
17025f2336efSEd Maste 		break;
17035f2336efSEd Maste 	}
17045f2336efSEd Maste 	/* linux_brk */
17055f2336efSEd Maste 	case 214: {
17065f2336efSEd Maste 		struct linux_brk_args *p = params;
17075f2336efSEd Maste 		iarg[0] = p->dsend; /* l_ulong */
17085f2336efSEd Maste 		*n_args = 1;
17095f2336efSEd Maste 		break;
17105f2336efSEd Maste 	}
17115f2336efSEd Maste 	/* munmap */
17125f2336efSEd Maste 	case 215: {
17135f2336efSEd Maste 		struct munmap_args *p = params;
1714a39cdcd7SEdward Tomasz Napierala 		uarg[0] = (intptr_t)p->addr; /* void * */
1715a39cdcd7SEdward Tomasz Napierala 		iarg[1] = p->len; /* l_size_t */
17165f2336efSEd Maste 		*n_args = 2;
17175f2336efSEd Maste 		break;
17185f2336efSEd Maste 	}
17195f2336efSEd Maste 	/* linux_mremap */
17205f2336efSEd Maste 	case 216: {
17215f2336efSEd Maste 		struct linux_mremap_args *p = params;
17225f2336efSEd Maste 		iarg[0] = p->addr; /* l_ulong */
17235f2336efSEd Maste 		iarg[1] = p->old_len; /* l_ulong */
17245f2336efSEd Maste 		iarg[2] = p->new_len; /* l_ulong */
17255f2336efSEd Maste 		iarg[3] = p->flags; /* l_ulong */
17265f2336efSEd Maste 		iarg[4] = p->new_addr; /* l_ulong */
17275f2336efSEd Maste 		*n_args = 5;
17285f2336efSEd Maste 		break;
17295f2336efSEd Maste 	}
17305f2336efSEd Maste 	/* linux_add_key */
17315f2336efSEd Maste 	case 217: {
17325f2336efSEd Maste 		*n_args = 0;
17335f2336efSEd Maste 		break;
17345f2336efSEd Maste 	}
17355f2336efSEd Maste 	/* linux_request_key */
17365f2336efSEd Maste 	case 218: {
17375f2336efSEd Maste 		*n_args = 0;
17385f2336efSEd Maste 		break;
17395f2336efSEd Maste 	}
17405f2336efSEd Maste 	/* linux_keyctl */
17415f2336efSEd Maste 	case 219: {
17425f2336efSEd Maste 		*n_args = 0;
17435f2336efSEd Maste 		break;
17445f2336efSEd Maste 	}
17455f2336efSEd Maste 	/* linux_clone */
17465f2336efSEd Maste 	case 220: {
17475f2336efSEd Maste 		struct linux_clone_args *p = params;
1748a39cdcd7SEdward Tomasz Napierala 		iarg[0] = p->flags; /* l_ulong */
1749*0c08f34fSDmitry Chagin 		iarg[1] = p->stack; /* l_ulong */
1750*0c08f34fSDmitry Chagin 		uarg[2] = (intptr_t)p->parent_tidptr; /* l_int * */
1751*0c08f34fSDmitry Chagin 		iarg[3] = p->tls; /* l_ulong */
1752*0c08f34fSDmitry Chagin 		uarg[4] = (intptr_t)p->child_tidptr; /* l_int * */
17535f2336efSEd Maste 		*n_args = 5;
17545f2336efSEd Maste 		break;
17555f2336efSEd Maste 	}
17565f2336efSEd Maste 	/* linux_execve */
17575f2336efSEd Maste 	case 221: {
17585f2336efSEd Maste 		struct linux_execve_args *p = params;
17595f2336efSEd Maste 		uarg[0] = (intptr_t)p->path; /* char * */
17605f2336efSEd Maste 		uarg[1] = (intptr_t)p->argp; /* char ** */
17615f2336efSEd Maste 		uarg[2] = (intptr_t)p->envp; /* char ** */
17625f2336efSEd Maste 		*n_args = 3;
17635f2336efSEd Maste 		break;
17645f2336efSEd Maste 	}
17655f2336efSEd Maste 	/* linux_mmap2 */
17665f2336efSEd Maste 	case 222: {
17675f2336efSEd Maste 		struct linux_mmap2_args *p = params;
17685f2336efSEd Maste 		iarg[0] = p->addr; /* l_ulong */
17695f2336efSEd Maste 		iarg[1] = p->len; /* l_ulong */
17705f2336efSEd Maste 		iarg[2] = p->prot; /* l_ulong */
17715f2336efSEd Maste 		iarg[3] = p->flags; /* l_ulong */
17725f2336efSEd Maste 		iarg[4] = p->fd; /* l_ulong */
17735f2336efSEd Maste 		iarg[5] = p->pgoff; /* l_ulong */
17745f2336efSEd Maste 		*n_args = 6;
17755f2336efSEd Maste 		break;
17765f2336efSEd Maste 	}
17775f2336efSEd Maste 	/* linux_fadvise64 */
17785f2336efSEd Maste 	case 223: {
17795f2336efSEd Maste 		struct linux_fadvise64_args *p = params;
17805f2336efSEd Maste 		iarg[0] = p->fd; /* l_int */
17815f2336efSEd Maste 		iarg[1] = p->offset; /* l_loff_t */
17825f2336efSEd Maste 		iarg[2] = p->len; /* l_size_t */
17835f2336efSEd Maste 		iarg[3] = p->advice; /* l_int */
17845f2336efSEd Maste 		*n_args = 4;
17855f2336efSEd Maste 		break;
17865f2336efSEd Maste 	}
17875f2336efSEd Maste 	/* swapon */
17885f2336efSEd Maste 	case 224: {
17895f2336efSEd Maste 		struct swapon_args *p = params;
17905f2336efSEd Maste 		uarg[0] = (intptr_t)p->name; /* char * */
17915f2336efSEd Maste 		*n_args = 1;
17925f2336efSEd Maste 		break;
17935f2336efSEd Maste 	}
17945f2336efSEd Maste 	/* linux_swapoff */
17955f2336efSEd Maste 	case 225: {
17965f2336efSEd Maste 		*n_args = 0;
17975f2336efSEd Maste 		break;
17985f2336efSEd Maste 	}
17995f2336efSEd Maste 	/* linux_mprotect */
18005f2336efSEd Maste 	case 226: {
18015f2336efSEd Maste 		struct linux_mprotect_args *p = params;
1802a39cdcd7SEdward Tomasz Napierala 		iarg[0] = p->addr; /* l_ulong */
1803a39cdcd7SEdward Tomasz Napierala 		iarg[1] = p->len; /* l_size_t */
1804a39cdcd7SEdward Tomasz Napierala 		iarg[2] = p->prot; /* l_ulong */
18055f2336efSEd Maste 		*n_args = 3;
18065f2336efSEd Maste 		break;
18075f2336efSEd Maste 	}
18085f2336efSEd Maste 	/* linux_msync */
18095f2336efSEd Maste 	case 227: {
18105f2336efSEd Maste 		struct linux_msync_args *p = params;
18115f2336efSEd Maste 		iarg[0] = p->addr; /* l_ulong */
18125f2336efSEd Maste 		iarg[1] = p->len; /* l_size_t */
18135f2336efSEd Maste 		iarg[2] = p->fl; /* l_int */
18145f2336efSEd Maste 		*n_args = 3;
18155f2336efSEd Maste 		break;
18165f2336efSEd Maste 	}
18175f2336efSEd Maste 	/* mlock */
18185f2336efSEd Maste 	case 228: {
18195f2336efSEd Maste 		struct mlock_args *p = params;
18205f2336efSEd Maste 		uarg[0] = (intptr_t)p->addr; /* const void * */
18215f2336efSEd Maste 		uarg[1] = p->len; /* size_t */
18225f2336efSEd Maste 		*n_args = 2;
18235f2336efSEd Maste 		break;
18245f2336efSEd Maste 	}
18255f2336efSEd Maste 	/* munlock */
18265f2336efSEd Maste 	case 229: {
18275f2336efSEd Maste 		struct munlock_args *p = params;
18285f2336efSEd Maste 		uarg[0] = (intptr_t)p->addr; /* const void * */
18295f2336efSEd Maste 		uarg[1] = p->len; /* size_t */
18305f2336efSEd Maste 		*n_args = 2;
18315f2336efSEd Maste 		break;
18325f2336efSEd Maste 	}
18335f2336efSEd Maste 	/* mlockall */
18345f2336efSEd Maste 	case 230: {
18355f2336efSEd Maste 		struct mlockall_args *p = params;
18365f2336efSEd Maste 		iarg[0] = p->how; /* int */
18375f2336efSEd Maste 		*n_args = 1;
18385f2336efSEd Maste 		break;
18395f2336efSEd Maste 	}
18405f2336efSEd Maste 	/* munlockall */
18415f2336efSEd Maste 	case 231: {
18425f2336efSEd Maste 		*n_args = 0;
18435f2336efSEd Maste 		break;
18445f2336efSEd Maste 	}
18455f2336efSEd Maste 	/* linux_mincore */
18465f2336efSEd Maste 	case 232: {
18475f2336efSEd Maste 		struct linux_mincore_args *p = params;
18485f2336efSEd Maste 		iarg[0] = p->start; /* l_ulong */
18495f2336efSEd Maste 		iarg[1] = p->len; /* l_size_t */
18505f2336efSEd Maste 		uarg[2] = (intptr_t)p->vec; /* u_char * */
18515f2336efSEd Maste 		*n_args = 3;
18525f2336efSEd Maste 		break;
18535f2336efSEd Maste 	}
1854bafd96b8SEdward Tomasz Napierala 	/* linux_madvise */
18555f2336efSEd Maste 	case 233: {
1856bafd96b8SEdward Tomasz Napierala 		struct linux_madvise_args *p = params;
1857a39cdcd7SEdward Tomasz Napierala 		iarg[0] = p->addr; /* l_ulong */
1858a39cdcd7SEdward Tomasz Napierala 		iarg[1] = p->len; /* l_size_t */
1859a39cdcd7SEdward Tomasz Napierala 		iarg[2] = p->behav; /* l_int */
18605f2336efSEd Maste 		*n_args = 3;
18615f2336efSEd Maste 		break;
18625f2336efSEd Maste 	}
18635f2336efSEd Maste 	/* linux_remap_file_pages */
18645f2336efSEd Maste 	case 234: {
18655f2336efSEd Maste 		*n_args = 0;
18665f2336efSEd Maste 		break;
18675f2336efSEd Maste 	}
18685f2336efSEd Maste 	/* linux_mbind */
18695f2336efSEd Maste 	case 235: {
18705f2336efSEd Maste 		*n_args = 0;
18715f2336efSEd Maste 		break;
18725f2336efSEd Maste 	}
18735f2336efSEd Maste 	/* linux_get_mempolicy */
18745f2336efSEd Maste 	case 236: {
18755f2336efSEd Maste 		*n_args = 0;
18765f2336efSEd Maste 		break;
18775f2336efSEd Maste 	}
18785f2336efSEd Maste 	/* linux_set_mempolicy */
18795f2336efSEd Maste 	case 237: {
18805f2336efSEd Maste 		*n_args = 0;
18815f2336efSEd Maste 		break;
18825f2336efSEd Maste 	}
18835f2336efSEd Maste 	/* linux_migrate_pages */
18845f2336efSEd Maste 	case 238: {
18855f2336efSEd Maste 		*n_args = 0;
18865f2336efSEd Maste 		break;
18875f2336efSEd Maste 	}
18885f2336efSEd Maste 	/* linux_move_pages */
18895f2336efSEd Maste 	case 239: {
18905f2336efSEd Maste 		*n_args = 0;
18915f2336efSEd Maste 		break;
18925f2336efSEd Maste 	}
18935f2336efSEd Maste 	/* linux_rt_tgsigqueueinfo */
18945f2336efSEd Maste 	case 240: {
18955f2336efSEd Maste 		struct linux_rt_tgsigqueueinfo_args *p = params;
18965f2336efSEd Maste 		iarg[0] = p->tgid; /* l_pid_t */
18975f2336efSEd Maste 		iarg[1] = p->tid; /* l_pid_t */
18985f2336efSEd Maste 		iarg[2] = p->sig; /* l_int */
18995f2336efSEd Maste 		uarg[3] = (intptr_t)p->uinfo; /* l_siginfo_t * */
19005f2336efSEd Maste 		*n_args = 4;
19015f2336efSEd Maste 		break;
19025f2336efSEd Maste 	}
19035f2336efSEd Maste 	/* linux_perf_event_open */
19045f2336efSEd Maste 	case 241: {
19055f2336efSEd Maste 		*n_args = 0;
19065f2336efSEd Maste 		break;
19075f2336efSEd Maste 	}
19085f2336efSEd Maste 	/* linux_accept4 */
19095f2336efSEd Maste 	case 242: {
19105f2336efSEd Maste 		struct linux_accept4_args *p = params;
19115f2336efSEd Maste 		iarg[0] = p->s; /* l_int */
19125f2336efSEd Maste 		iarg[1] = p->addr; /* l_uintptr_t */
19135f2336efSEd Maste 		iarg[2] = p->namelen; /* l_uintptr_t */
1914a39cdcd7SEdward Tomasz Napierala 		iarg[3] = p->flags; /* l_int */
19155f2336efSEd Maste 		*n_args = 4;
19165f2336efSEd Maste 		break;
19175f2336efSEd Maste 	}
19185f2336efSEd Maste 	/* linux_recvmmsg */
19195f2336efSEd Maste 	case 243: {
19205f2336efSEd Maste 		struct linux_recvmmsg_args *p = params;
19215f2336efSEd Maste 		iarg[0] = p->s; /* l_int */
19225f2336efSEd Maste 		uarg[1] = (intptr_t)p->msg; /* struct l_mmsghdr * */
19235f2336efSEd Maste 		iarg[2] = p->vlen; /* l_uint */
19245f2336efSEd Maste 		iarg[3] = p->flags; /* l_uint */
19255f2336efSEd Maste 		uarg[4] = (intptr_t)p->timeout; /* struct l_timespec * */
19265f2336efSEd Maste 		*n_args = 5;
19275f2336efSEd Maste 		break;
19285f2336efSEd Maste 	}
19295f2336efSEd Maste 	/* linux_wait4 */
19305f2336efSEd Maste 	case 260: {
19315f2336efSEd Maste 		struct linux_wait4_args *p = params;
19325f2336efSEd Maste 		iarg[0] = p->pid; /* l_pid_t */
19335f2336efSEd Maste 		uarg[1] = (intptr_t)p->status; /* l_int * */
19345f2336efSEd Maste 		iarg[2] = p->options; /* l_int */
19355f2336efSEd Maste 		uarg[3] = (intptr_t)p->rusage; /* struct rusage * */
19365f2336efSEd Maste 		*n_args = 4;
19375f2336efSEd Maste 		break;
19385f2336efSEd Maste 	}
19395f2336efSEd Maste 	/* linux_prlimit64 */
19405f2336efSEd Maste 	case 261: {
19415f2336efSEd Maste 		struct linux_prlimit64_args *p = params;
19425f2336efSEd Maste 		iarg[0] = p->pid; /* l_pid_t */
19435f2336efSEd Maste 		iarg[1] = p->resource; /* l_uint */
19445f2336efSEd Maste 		uarg[2] = (intptr_t)p->new; /* struct rlimit * */
19455f2336efSEd Maste 		uarg[3] = (intptr_t)p->old; /* struct rlimit * */
19465f2336efSEd Maste 		*n_args = 4;
19475f2336efSEd Maste 		break;
19485f2336efSEd Maste 	}
19495f2336efSEd Maste 	/* linux_fanotify_init */
19505f2336efSEd Maste 	case 262: {
19515f2336efSEd Maste 		*n_args = 0;
19525f2336efSEd Maste 		break;
19535f2336efSEd Maste 	}
19545f2336efSEd Maste 	/* linux_fanotify_mark */
19555f2336efSEd Maste 	case 263: {
19565f2336efSEd Maste 		*n_args = 0;
19575f2336efSEd Maste 		break;
19585f2336efSEd Maste 	}
19595f2336efSEd Maste 	/* linux_name_to_handle_at */
19605f2336efSEd Maste 	case 264: {
196177eb9841SConrad Meyer 		struct linux_name_to_handle_at_args *p = params;
196277eb9841SConrad Meyer 		iarg[0] = p->dirfd; /* l_int */
196377eb9841SConrad Meyer 		uarg[1] = (intptr_t)p->name; /* const char * */
196477eb9841SConrad Meyer 		uarg[2] = (intptr_t)p->handle; /* struct l_file_handle * */
196577eb9841SConrad Meyer 		uarg[3] = (intptr_t)p->mnt_id; /* l_int * */
196677eb9841SConrad Meyer 		iarg[4] = p->flags; /* l_int */
196777eb9841SConrad Meyer 		*n_args = 5;
19685f2336efSEd Maste 		break;
19695f2336efSEd Maste 	}
19705f2336efSEd Maste 	/* linux_open_by_handle_at */
19715f2336efSEd Maste 	case 265: {
197277eb9841SConrad Meyer 		struct linux_open_by_handle_at_args *p = params;
197377eb9841SConrad Meyer 		iarg[0] = p->mountdirfd; /* l_int */
197477eb9841SConrad Meyer 		uarg[1] = (intptr_t)p->handle; /* struct l_file_handle * */
197577eb9841SConrad Meyer 		iarg[2] = p->flags; /* l_int */
197677eb9841SConrad Meyer 		*n_args = 3;
19775f2336efSEd Maste 		break;
19785f2336efSEd Maste 	}
19795f2336efSEd Maste 	/* linux_clock_adjtime */
19805f2336efSEd Maste 	case 266: {
19815f2336efSEd Maste 		*n_args = 0;
19825f2336efSEd Maste 		break;
19835f2336efSEd Maste 	}
19845f2336efSEd Maste 	/* linux_syncfs */
19855f2336efSEd Maste 	case 267: {
19865f2336efSEd Maste 		struct linux_syncfs_args *p = params;
19875f2336efSEd Maste 		iarg[0] = p->fd; /* l_int */
19885f2336efSEd Maste 		*n_args = 1;
19895f2336efSEd Maste 		break;
19905f2336efSEd Maste 	}
19915f2336efSEd Maste 	/* linux_setns */
19925f2336efSEd Maste 	case 268: {
19935f2336efSEd Maste 		struct linux_setns_args *p = params;
19945f2336efSEd Maste 		iarg[0] = p->fd; /* l_int */
19955f2336efSEd Maste 		iarg[1] = p->nstype; /* l_int */
19965f2336efSEd Maste 		*n_args = 2;
19975f2336efSEd Maste 		break;
19985f2336efSEd Maste 	}
19995f2336efSEd Maste 	/* linux_sendmmsg */
20005f2336efSEd Maste 	case 269: {
20015f2336efSEd Maste 		struct linux_sendmmsg_args *p = params;
20025f2336efSEd Maste 		iarg[0] = p->s; /* l_int */
20035f2336efSEd Maste 		uarg[1] = (intptr_t)p->msg; /* struct l_mmsghdr * */
20045f2336efSEd Maste 		iarg[2] = p->vlen; /* l_uint */
20055f2336efSEd Maste 		iarg[3] = p->flags; /* l_uint */
20065f2336efSEd Maste 		*n_args = 4;
20075f2336efSEd Maste 		break;
20085f2336efSEd Maste 	}
20095f2336efSEd Maste 	/* linux_process_vm_readv */
20105f2336efSEd Maste 	case 270: {
20115f2336efSEd Maste 		struct linux_process_vm_readv_args *p = params;
20125f2336efSEd Maste 		iarg[0] = p->pid; /* l_pid_t */
20135f2336efSEd Maste 		uarg[1] = (intptr_t)p->lvec; /* const struct iovec * */
20145f2336efSEd Maste 		iarg[2] = p->liovcnt; /* l_ulong */
20155f2336efSEd Maste 		uarg[3] = (intptr_t)p->rvec; /* const struct iovec * */
20165f2336efSEd Maste 		iarg[4] = p->riovcnt; /* l_ulong */
20175f2336efSEd Maste 		iarg[5] = p->flags; /* l_ulong */
20185f2336efSEd Maste 		*n_args = 6;
20195f2336efSEd Maste 		break;
20205f2336efSEd Maste 	}
20215f2336efSEd Maste 	/* linux_process_vm_writev */
20225f2336efSEd Maste 	case 271: {
20235f2336efSEd Maste 		struct linux_process_vm_writev_args *p = params;
20245f2336efSEd Maste 		iarg[0] = p->pid; /* l_pid_t */
20255f2336efSEd Maste 		uarg[1] = (intptr_t)p->lvec; /* const struct iovec * */
20265f2336efSEd Maste 		iarg[2] = p->liovcnt; /* l_ulong */
20275f2336efSEd Maste 		uarg[3] = (intptr_t)p->rvec; /* const struct iovec * */
20285f2336efSEd Maste 		iarg[4] = p->riovcnt; /* l_ulong */
20295f2336efSEd Maste 		iarg[5] = p->flags; /* l_ulong */
20305f2336efSEd Maste 		*n_args = 6;
20315f2336efSEd Maste 		break;
20325f2336efSEd Maste 	}
20335f2336efSEd Maste 	/* linux_kcmp */
20345f2336efSEd Maste 	case 272: {
20355f2336efSEd Maste 		struct linux_kcmp_args *p = params;
20365f2336efSEd Maste 		iarg[0] = p->pid1; /* l_pid_t */
20375f2336efSEd Maste 		iarg[1] = p->pid2; /* l_pid_t */
20385f2336efSEd Maste 		iarg[2] = p->type; /* l_int */
20395f2336efSEd Maste 		iarg[3] = p->idx1; /* l_ulong */
20405f2336efSEd Maste 		iarg[4] = p->idx; /* l_ulong */
20415f2336efSEd Maste 		*n_args = 5;
20425f2336efSEd Maste 		break;
20435f2336efSEd Maste 	}
20445f2336efSEd Maste 	/* linux_finit_module */
20455f2336efSEd Maste 	case 273: {
20465f2336efSEd Maste 		struct linux_finit_module_args *p = params;
20475f2336efSEd Maste 		iarg[0] = p->fd; /* l_int */
20485f2336efSEd Maste 		uarg[1] = (intptr_t)p->uargs; /* const char * */
20495f2336efSEd Maste 		iarg[2] = p->flags; /* l_int */
20505f2336efSEd Maste 		*n_args = 3;
20515f2336efSEd Maste 		break;
20525f2336efSEd Maste 	}
20535f2336efSEd Maste 	/* linux_sched_setattr */
20545f2336efSEd Maste 	case 274: {
20555f2336efSEd Maste 		struct linux_sched_setattr_args *p = params;
20565f2336efSEd Maste 		iarg[0] = p->pid; /* l_pid_t */
20575f2336efSEd Maste 		uarg[1] = (intptr_t)p->attr; /* void * */
20585f2336efSEd Maste 		iarg[2] = p->flags; /* l_uint */
20595f2336efSEd Maste 		*n_args = 3;
20605f2336efSEd Maste 		break;
20615f2336efSEd Maste 	}
20625f2336efSEd Maste 	/* linux_sched_getattr */
20635f2336efSEd Maste 	case 275: {
20645f2336efSEd Maste 		struct linux_sched_getattr_args *p = params;
20655f2336efSEd Maste 		iarg[0] = p->pid; /* l_pid_t */
20665f2336efSEd Maste 		uarg[1] = (intptr_t)p->attr; /* void * */
20675f2336efSEd Maste 		iarg[2] = p->size; /* l_uint */
20685f2336efSEd Maste 		iarg[3] = p->flags; /* l_uint */
20695f2336efSEd Maste 		*n_args = 4;
20705f2336efSEd Maste 		break;
20715f2336efSEd Maste 	}
20725f2336efSEd Maste 	/* linux_renameat2 */
20735f2336efSEd Maste 	case 276: {
20745f2336efSEd Maste 		struct linux_renameat2_args *p = params;
207565ab1fddSEd Maste 		iarg[0] = p->olddfd; /* l_int */
20765f2336efSEd Maste 		uarg[1] = (intptr_t)p->oldname; /* const char * */
207765ab1fddSEd Maste 		iarg[2] = p->newdfd; /* l_int */
20785f2336efSEd Maste 		uarg[3] = (intptr_t)p->newname; /* const char * */
2079a39cdcd7SEdward Tomasz Napierala 		iarg[4] = p->flags; /* l_uint */
20805f2336efSEd Maste 		*n_args = 5;
20815f2336efSEd Maste 		break;
20825f2336efSEd Maste 	}
20835f2336efSEd Maste 	/* linux_seccomp */
20845f2336efSEd Maste 	case 277: {
20855f2336efSEd Maste 		struct linux_seccomp_args *p = params;
20865f2336efSEd Maste 		iarg[0] = p->op; /* l_uint */
20875f2336efSEd Maste 		iarg[1] = p->flags; /* l_uint */
20885f2336efSEd Maste 		uarg[2] = (intptr_t)p->uargs; /* const char * */
20895f2336efSEd Maste 		*n_args = 3;
20905f2336efSEd Maste 		break;
20915f2336efSEd Maste 	}
20925f2336efSEd Maste 	/* linux_getrandom */
20935f2336efSEd Maste 	case 278: {
20945f2336efSEd Maste 		struct linux_getrandom_args *p = params;
20955f2336efSEd Maste 		uarg[0] = (intptr_t)p->buf; /* char * */
20965f2336efSEd Maste 		iarg[1] = p->count; /* l_size_t */
20975f2336efSEd Maste 		iarg[2] = p->flags; /* l_uint */
20985f2336efSEd Maste 		*n_args = 3;
20995f2336efSEd Maste 		break;
21005f2336efSEd Maste 	}
21015f2336efSEd Maste 	/* linux_memfd_create */
21025f2336efSEd Maste 	case 279: {
21035f2336efSEd Maste 		struct linux_memfd_create_args *p = params;
21045f2336efSEd Maste 		uarg[0] = (intptr_t)p->uname_ptr; /* const char * */
21055f2336efSEd Maste 		iarg[1] = p->flags; /* l_uint */
21065f2336efSEd Maste 		*n_args = 2;
21075f2336efSEd Maste 		break;
21085f2336efSEd Maste 	}
21095f2336efSEd Maste 	/* linux_bpf */
21105f2336efSEd Maste 	case 280: {
21115f2336efSEd Maste 		struct linux_bpf_args *p = params;
21125f2336efSEd Maste 		iarg[0] = p->cmd; /* l_int */
21135f2336efSEd Maste 		uarg[1] = (intptr_t)p->attr; /* void * */
21145f2336efSEd Maste 		iarg[2] = p->size; /* l_uint */
21155f2336efSEd Maste 		*n_args = 3;
21165f2336efSEd Maste 		break;
21175f2336efSEd Maste 	}
21185f2336efSEd Maste 	/* linux_execveat */
21195f2336efSEd Maste 	case 281: {
21205f2336efSEd Maste 		struct linux_execveat_args *p = params;
21215f2336efSEd Maste 		iarg[0] = p->dfd; /* l_int */
21225f2336efSEd Maste 		uarg[1] = (intptr_t)p->filename; /* const char * */
21235f2336efSEd Maste 		uarg[2] = (intptr_t)p->argv; /* const char ** */
21245f2336efSEd Maste 		uarg[3] = (intptr_t)p->envp; /* const char ** */
21255f2336efSEd Maste 		iarg[4] = p->flags; /* l_int */
21265f2336efSEd Maste 		*n_args = 5;
21275f2336efSEd Maste 		break;
21285f2336efSEd Maste 	}
21295f2336efSEd Maste 	/* linux_userfaultfd */
21305f2336efSEd Maste 	case 282: {
21315f2336efSEd Maste 		struct linux_userfaultfd_args *p = params;
21325f2336efSEd Maste 		iarg[0] = p->flags; /* l_int */
21335f2336efSEd Maste 		*n_args = 1;
21345f2336efSEd Maste 		break;
21355f2336efSEd Maste 	}
21365f2336efSEd Maste 	/* linux_membarrier */
21375f2336efSEd Maste 	case 283: {
21385f2336efSEd Maste 		struct linux_membarrier_args *p = params;
21395f2336efSEd Maste 		iarg[0] = p->cmd; /* l_int */
21405f2336efSEd Maste 		iarg[1] = p->flags; /* l_int */
21415f2336efSEd Maste 		*n_args = 2;
21425f2336efSEd Maste 		break;
21435f2336efSEd Maste 	}
21445f2336efSEd Maste 	/* linux_mlock2 */
21455f2336efSEd Maste 	case 284: {
21465f2336efSEd Maste 		struct linux_mlock2_args *p = params;
21475f2336efSEd Maste 		iarg[0] = p->start; /* l_ulong */
21485f2336efSEd Maste 		iarg[1] = p->len; /* l_size_t */
21495f2336efSEd Maste 		iarg[2] = p->flags; /* l_int */
21505f2336efSEd Maste 		*n_args = 3;
21515f2336efSEd Maste 		break;
21525f2336efSEd Maste 	}
21535f2336efSEd Maste 	/* linux_copy_file_range */
21545f2336efSEd Maste 	case 285: {
21555f2336efSEd Maste 		struct linux_copy_file_range_args *p = params;
21565f2336efSEd Maste 		iarg[0] = p->fd_in; /* l_int */
21575f2336efSEd Maste 		uarg[1] = (intptr_t)p->off_in; /* l_loff_t * */
21585f2336efSEd Maste 		iarg[2] = p->fd_out; /* l_int */
21595f2336efSEd Maste 		uarg[3] = (intptr_t)p->off_out; /* l_loff_t * */
21605f2336efSEd Maste 		iarg[4] = p->len; /* l_size_t */
21615f2336efSEd Maste 		iarg[5] = p->flags; /* l_uint */
21625f2336efSEd Maste 		*n_args = 6;
21635f2336efSEd Maste 		break;
21645f2336efSEd Maste 	}
21655f2336efSEd Maste 	/* linux_preadv2 */
21665f2336efSEd Maste 	case 286: {
21675f2336efSEd Maste 		struct linux_preadv2_args *p = params;
21685f2336efSEd Maste 		iarg[0] = p->fd; /* l_ulong */
21695f2336efSEd Maste 		uarg[1] = (intptr_t)p->vec; /* const struct iovec * */
21705f2336efSEd Maste 		iarg[2] = p->vlen; /* l_ulong */
21715f2336efSEd Maste 		iarg[3] = p->pos_l; /* l_ulong */
21725f2336efSEd Maste 		iarg[4] = p->pos_h; /* l_ulong */
21735f2336efSEd Maste 		iarg[5] = p->flags; /* l_int */
21745f2336efSEd Maste 		*n_args = 6;
21755f2336efSEd Maste 		break;
21765f2336efSEd Maste 	}
21775f2336efSEd Maste 	/* linux_pwritev2 */
21785f2336efSEd Maste 	case 287: {
21795f2336efSEd Maste 		struct linux_pwritev2_args *p = params;
21805f2336efSEd Maste 		iarg[0] = p->fd; /* l_ulong */
21815f2336efSEd Maste 		uarg[1] = (intptr_t)p->vec; /* const struct iovec * */
21825f2336efSEd Maste 		iarg[2] = p->vlen; /* l_ulong */
21835f2336efSEd Maste 		iarg[3] = p->pos_l; /* l_ulong */
21845f2336efSEd Maste 		iarg[4] = p->pos_h; /* l_ulong */
21855f2336efSEd Maste 		iarg[5] = p->flags; /* l_int */
21865f2336efSEd Maste 		*n_args = 6;
21875f2336efSEd Maste 		break;
21885f2336efSEd Maste 	}
21895f2336efSEd Maste 	/* linux_pkey_mprotect */
21905f2336efSEd Maste 	case 288: {
21915f2336efSEd Maste 		struct linux_pkey_mprotect_args *p = params;
21925f2336efSEd Maste 		iarg[0] = p->start; /* l_ulong */
21935f2336efSEd Maste 		iarg[1] = p->len; /* l_size_t */
21945f2336efSEd Maste 		iarg[2] = p->prot; /* l_ulong */
21955f2336efSEd Maste 		iarg[3] = p->pkey; /* l_int */
21965f2336efSEd Maste 		*n_args = 4;
21975f2336efSEd Maste 		break;
21985f2336efSEd Maste 	}
21995f2336efSEd Maste 	/* linux_pkey_alloc */
22005f2336efSEd Maste 	case 289: {
22015f2336efSEd Maste 		struct linux_pkey_alloc_args *p = params;
22025f2336efSEd Maste 		iarg[0] = p->flags; /* l_ulong */
22035f2336efSEd Maste 		iarg[1] = p->init_val; /* l_ulong */
22045f2336efSEd Maste 		*n_args = 2;
22055f2336efSEd Maste 		break;
22065f2336efSEd Maste 	}
22075f2336efSEd Maste 	/* linux_pkey_free */
22085f2336efSEd Maste 	case 290: {
22095f2336efSEd Maste 		struct linux_pkey_free_args *p = params;
22105f2336efSEd Maste 		iarg[0] = p->pkey; /* l_int */
22115f2336efSEd Maste 		*n_args = 1;
22125f2336efSEd Maste 		break;
22135f2336efSEd Maste 	}
2214c0f17173SEdward Tomasz Napierala 	/* linux_statx */
2215c0f17173SEdward Tomasz Napierala 	case 291: {
2216c0f17173SEdward Tomasz Napierala 		struct linux_statx_args *p = params;
2217c0f17173SEdward Tomasz Napierala 		iarg[0] = p->dirfd; /* l_int */
2218c0f17173SEdward Tomasz Napierala 		uarg[1] = (intptr_t)p->pathname; /* const char * */
2219c0f17173SEdward Tomasz Napierala 		iarg[2] = p->flags; /* l_uint */
2220c0f17173SEdward Tomasz Napierala 		iarg[3] = p->mask; /* l_uint */
2221c0f17173SEdward Tomasz Napierala 		uarg[4] = (intptr_t)p->statxbuf; /* void * */
2222c0f17173SEdward Tomasz Napierala 		*n_args = 5;
2223c0f17173SEdward Tomasz Napierala 		break;
2224c0f17173SEdward Tomasz Napierala 	}
2225c0f17173SEdward Tomasz Napierala 	/* linux_io_pgetevents */
2226c0f17173SEdward Tomasz Napierala 	case 292: {
2227c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2228c0f17173SEdward Tomasz Napierala 		break;
2229c0f17173SEdward Tomasz Napierala 	}
2230c0f17173SEdward Tomasz Napierala 	/* linux_rseq */
2231c0f17173SEdward Tomasz Napierala 	case 293: {
2232c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2233c0f17173SEdward Tomasz Napierala 		break;
2234c0f17173SEdward Tomasz Napierala 	}
2235c0f17173SEdward Tomasz Napierala 	/* linux_kexec_file_load */
2236c0f17173SEdward Tomasz Napierala 	case 294: {
2237c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2238c0f17173SEdward Tomasz Napierala 		break;
2239c0f17173SEdward Tomasz Napierala 	}
2240c0f17173SEdward Tomasz Napierala 	/* linux_pidfd_send_signal */
2241c0f17173SEdward Tomasz Napierala 	case 424: {
2242c0f17173SEdward Tomasz Napierala 		struct linux_pidfd_send_signal_args *p = params;
2243c0f17173SEdward Tomasz Napierala 		iarg[0] = p->pidfd; /* l_int */
2244c0f17173SEdward Tomasz Napierala 		iarg[1] = p->sig; /* l_int */
2245c0f17173SEdward Tomasz Napierala 		uarg[2] = (intptr_t)p->info; /* l_siginfo_t * */
2246c0f17173SEdward Tomasz Napierala 		iarg[3] = p->flags; /* l_uint */
2247c0f17173SEdward Tomasz Napierala 		*n_args = 4;
2248c0f17173SEdward Tomasz Napierala 		break;
2249c0f17173SEdward Tomasz Napierala 	}
2250c0f17173SEdward Tomasz Napierala 	/* linux_io_uring_setup */
2251c0f17173SEdward Tomasz Napierala 	case 425: {
2252c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2253c0f17173SEdward Tomasz Napierala 		break;
2254c0f17173SEdward Tomasz Napierala 	}
2255c0f17173SEdward Tomasz Napierala 	/* linux_io_uring_enter */
2256c0f17173SEdward Tomasz Napierala 	case 426: {
2257c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2258c0f17173SEdward Tomasz Napierala 		break;
2259c0f17173SEdward Tomasz Napierala 	}
2260c0f17173SEdward Tomasz Napierala 	/* linux_io_uring_register */
2261c0f17173SEdward Tomasz Napierala 	case 427: {
2262c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2263c0f17173SEdward Tomasz Napierala 		break;
2264c0f17173SEdward Tomasz Napierala 	}
2265c0f17173SEdward Tomasz Napierala 	/* linux_open_tree */
2266c0f17173SEdward Tomasz Napierala 	case 428: {
2267c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2268c0f17173SEdward Tomasz Napierala 		break;
2269c0f17173SEdward Tomasz Napierala 	}
2270c0f17173SEdward Tomasz Napierala 	/* linux_move_mount */
2271c0f17173SEdward Tomasz Napierala 	case 429: {
2272c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2273c0f17173SEdward Tomasz Napierala 		break;
2274c0f17173SEdward Tomasz Napierala 	}
2275c0f17173SEdward Tomasz Napierala 	/* linux_fsopen */
2276c0f17173SEdward Tomasz Napierala 	case 430: {
2277c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2278c0f17173SEdward Tomasz Napierala 		break;
2279c0f17173SEdward Tomasz Napierala 	}
2280c0f17173SEdward Tomasz Napierala 	/* linux_fsconfig */
2281c0f17173SEdward Tomasz Napierala 	case 431: {
2282c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2283c0f17173SEdward Tomasz Napierala 		break;
2284c0f17173SEdward Tomasz Napierala 	}
2285c0f17173SEdward Tomasz Napierala 	/* linux_fsmount */
2286c0f17173SEdward Tomasz Napierala 	case 432: {
2287c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2288c0f17173SEdward Tomasz Napierala 		break;
2289c0f17173SEdward Tomasz Napierala 	}
2290c0f17173SEdward Tomasz Napierala 	/* linux_fspick */
2291c0f17173SEdward Tomasz Napierala 	case 433: {
2292c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2293c0f17173SEdward Tomasz Napierala 		break;
2294c0f17173SEdward Tomasz Napierala 	}
2295c0f17173SEdward Tomasz Napierala 	/* linux_pidfd_open */
2296c0f17173SEdward Tomasz Napierala 	case 434: {
2297c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2298c0f17173SEdward Tomasz Napierala 		break;
2299c0f17173SEdward Tomasz Napierala 	}
2300c0f17173SEdward Tomasz Napierala 	/* linux_clone3 */
2301c0f17173SEdward Tomasz Napierala 	case 435: {
2302c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2303c0f17173SEdward Tomasz Napierala 		break;
2304c0f17173SEdward Tomasz Napierala 	}
2305c0f17173SEdward Tomasz Napierala 	/* linux_close_range */
2306c0f17173SEdward Tomasz Napierala 	case 436: {
2307c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2308c0f17173SEdward Tomasz Napierala 		break;
2309c0f17173SEdward Tomasz Napierala 	}
2310c0f17173SEdward Tomasz Napierala 	/* linux_openat2 */
2311c0f17173SEdward Tomasz Napierala 	case 437: {
2312c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2313c0f17173SEdward Tomasz Napierala 		break;
2314c0f17173SEdward Tomasz Napierala 	}
2315c0f17173SEdward Tomasz Napierala 	/* linux_pidfd_getfd */
2316c0f17173SEdward Tomasz Napierala 	case 438: {
2317c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2318c0f17173SEdward Tomasz Napierala 		break;
2319c0f17173SEdward Tomasz Napierala 	}
2320c0f17173SEdward Tomasz Napierala 	/* linux_faccessat2 */
2321c0f17173SEdward Tomasz Napierala 	case 439: {
2322bee191e4SDmitry Chagin 		struct linux_faccessat2_args *p = params;
2323bee191e4SDmitry Chagin 		iarg[0] = p->dfd; /* l_int */
2324bee191e4SDmitry Chagin 		uarg[1] = (intptr_t)p->filename; /* const char * */
2325bee191e4SDmitry Chagin 		iarg[2] = p->amode; /* l_int */
2326bee191e4SDmitry Chagin 		iarg[3] = p->flags; /* l_int */
2327bee191e4SDmitry Chagin 		*n_args = 4;
2328c0f17173SEdward Tomasz Napierala 		break;
2329c0f17173SEdward Tomasz Napierala 	}
2330c0f17173SEdward Tomasz Napierala 	/* linux_process_madvise */
2331c0f17173SEdward Tomasz Napierala 	case 440: {
2332c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2333c0f17173SEdward Tomasz Napierala 		break;
2334c0f17173SEdward Tomasz Napierala 	}
2335c0f17173SEdward Tomasz Napierala 	/* linux_epoll_pwait2 */
2336c0f17173SEdward Tomasz Napierala 	case 441: {
2337c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2338c0f17173SEdward Tomasz Napierala 		break;
2339c0f17173SEdward Tomasz Napierala 	}
2340c0f17173SEdward Tomasz Napierala 	/* linux_mount_setattr */
2341c0f17173SEdward Tomasz Napierala 	case 442: {
2342c0f17173SEdward Tomasz Napierala 		*n_args = 0;
2343c0f17173SEdward Tomasz Napierala 		break;
2344c0f17173SEdward Tomasz Napierala 	}
23455f2336efSEd Maste 	default:
23465f2336efSEd Maste 		*n_args = 0;
23475f2336efSEd Maste 		break;
23485f2336efSEd Maste 	};
23495f2336efSEd Maste }
23505f2336efSEd Maste static void
23515f2336efSEd Maste systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
23525f2336efSEd Maste {
23535f2336efSEd Maste 	const char *p = NULL;
23545f2336efSEd Maste 	switch (sysnum) {
23555f2336efSEd Maste #define	nosys	linux_nosys
23565f2336efSEd Maste 	/* linux_setxattr */
23575f2336efSEd Maste 	case 5:
2358a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
2359a39cdcd7SEdward Tomasz Napierala 		case 0:
2360a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2361a39cdcd7SEdward Tomasz Napierala 			break;
2362a39cdcd7SEdward Tomasz Napierala 		case 1:
2363a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2364a39cdcd7SEdward Tomasz Napierala 			break;
2365a39cdcd7SEdward Tomasz Napierala 		case 2:
2366a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2367a39cdcd7SEdward Tomasz Napierala 			break;
2368a39cdcd7SEdward Tomasz Napierala 		case 3:
2369a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
2370a39cdcd7SEdward Tomasz Napierala 			break;
2371a39cdcd7SEdward Tomasz Napierala 		case 4:
2372a39cdcd7SEdward Tomasz Napierala 			p = "l_int";
2373a39cdcd7SEdward Tomasz Napierala 			break;
2374a39cdcd7SEdward Tomasz Napierala 		default:
2375a39cdcd7SEdward Tomasz Napierala 			break;
2376a39cdcd7SEdward Tomasz Napierala 		};
23775f2336efSEd Maste 		break;
23785f2336efSEd Maste 	/* linux_lsetxattr */
23795f2336efSEd Maste 	case 6:
2380a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
2381a39cdcd7SEdward Tomasz Napierala 		case 0:
2382a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2383a39cdcd7SEdward Tomasz Napierala 			break;
2384a39cdcd7SEdward Tomasz Napierala 		case 1:
2385a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2386a39cdcd7SEdward Tomasz Napierala 			break;
2387a39cdcd7SEdward Tomasz Napierala 		case 2:
2388a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2389a39cdcd7SEdward Tomasz Napierala 			break;
2390a39cdcd7SEdward Tomasz Napierala 		case 3:
2391a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
2392a39cdcd7SEdward Tomasz Napierala 			break;
2393a39cdcd7SEdward Tomasz Napierala 		case 4:
2394a39cdcd7SEdward Tomasz Napierala 			p = "l_int";
2395a39cdcd7SEdward Tomasz Napierala 			break;
2396a39cdcd7SEdward Tomasz Napierala 		default:
2397a39cdcd7SEdward Tomasz Napierala 			break;
2398a39cdcd7SEdward Tomasz Napierala 		};
23995f2336efSEd Maste 		break;
24005f2336efSEd Maste 	/* linux_fsetxattr */
24015f2336efSEd Maste 	case 7:
2402a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
2403a39cdcd7SEdward Tomasz Napierala 		case 0:
2404a39cdcd7SEdward Tomasz Napierala 			p = "l_int";
2405a39cdcd7SEdward Tomasz Napierala 			break;
2406a39cdcd7SEdward Tomasz Napierala 		case 1:
2407a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2408a39cdcd7SEdward Tomasz Napierala 			break;
2409a39cdcd7SEdward Tomasz Napierala 		case 2:
2410a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2411a39cdcd7SEdward Tomasz Napierala 			break;
2412a39cdcd7SEdward Tomasz Napierala 		case 3:
2413a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
2414a39cdcd7SEdward Tomasz Napierala 			break;
2415a39cdcd7SEdward Tomasz Napierala 		case 4:
2416a39cdcd7SEdward Tomasz Napierala 			p = "l_int";
2417a39cdcd7SEdward Tomasz Napierala 			break;
2418a39cdcd7SEdward Tomasz Napierala 		default:
2419a39cdcd7SEdward Tomasz Napierala 			break;
2420a39cdcd7SEdward Tomasz Napierala 		};
24215f2336efSEd Maste 		break;
24225f2336efSEd Maste 	/* linux_getxattr */
24235f2336efSEd Maste 	case 8:
2424a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
2425a39cdcd7SEdward Tomasz Napierala 		case 0:
2426a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2427a39cdcd7SEdward Tomasz Napierala 			break;
2428a39cdcd7SEdward Tomasz Napierala 		case 1:
2429a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2430a39cdcd7SEdward Tomasz Napierala 			break;
2431a39cdcd7SEdward Tomasz Napierala 		case 2:
2432a39cdcd7SEdward Tomasz Napierala 			p = "userland char *";
2433a39cdcd7SEdward Tomasz Napierala 			break;
2434a39cdcd7SEdward Tomasz Napierala 		case 3:
2435a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
2436a39cdcd7SEdward Tomasz Napierala 			break;
2437a39cdcd7SEdward Tomasz Napierala 		default:
2438a39cdcd7SEdward Tomasz Napierala 			break;
2439a39cdcd7SEdward Tomasz Napierala 		};
24405f2336efSEd Maste 		break;
24415f2336efSEd Maste 	/* linux_lgetxattr */
24425f2336efSEd Maste 	case 9:
2443a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
2444a39cdcd7SEdward Tomasz Napierala 		case 0:
2445a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2446a39cdcd7SEdward Tomasz Napierala 			break;
2447a39cdcd7SEdward Tomasz Napierala 		case 1:
2448a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2449a39cdcd7SEdward Tomasz Napierala 			break;
2450a39cdcd7SEdward Tomasz Napierala 		case 2:
2451a39cdcd7SEdward Tomasz Napierala 			p = "userland char *";
2452a39cdcd7SEdward Tomasz Napierala 			break;
2453a39cdcd7SEdward Tomasz Napierala 		case 3:
2454a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
2455a39cdcd7SEdward Tomasz Napierala 			break;
2456a39cdcd7SEdward Tomasz Napierala 		default:
2457a39cdcd7SEdward Tomasz Napierala 			break;
2458a39cdcd7SEdward Tomasz Napierala 		};
24595f2336efSEd Maste 		break;
24605f2336efSEd Maste 	/* linux_fgetxattr */
24615f2336efSEd Maste 	case 10:
2462a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
2463a39cdcd7SEdward Tomasz Napierala 		case 0:
2464a39cdcd7SEdward Tomasz Napierala 			p = "l_int";
2465a39cdcd7SEdward Tomasz Napierala 			break;
2466a39cdcd7SEdward Tomasz Napierala 		case 1:
2467a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2468a39cdcd7SEdward Tomasz Napierala 			break;
2469a39cdcd7SEdward Tomasz Napierala 		case 2:
2470a39cdcd7SEdward Tomasz Napierala 			p = "userland char *";
2471a39cdcd7SEdward Tomasz Napierala 			break;
2472a39cdcd7SEdward Tomasz Napierala 		case 3:
2473a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
2474a39cdcd7SEdward Tomasz Napierala 			break;
2475a39cdcd7SEdward Tomasz Napierala 		default:
2476a39cdcd7SEdward Tomasz Napierala 			break;
2477a39cdcd7SEdward Tomasz Napierala 		};
24785f2336efSEd Maste 		break;
24795f2336efSEd Maste 	/* linux_listxattr */
24805f2336efSEd Maste 	case 11:
2481a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
2482a39cdcd7SEdward Tomasz Napierala 		case 0:
2483a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
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:
2489a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
2490a39cdcd7SEdward Tomasz Napierala 			break;
2491a39cdcd7SEdward Tomasz Napierala 		default:
2492a39cdcd7SEdward Tomasz Napierala 			break;
2493a39cdcd7SEdward Tomasz Napierala 		};
24945f2336efSEd Maste 		break;
24955f2336efSEd Maste 	/* linux_llistxattr */
24965f2336efSEd Maste 	case 12:
2497a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
2498a39cdcd7SEdward Tomasz Napierala 		case 0:
2499a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2500a39cdcd7SEdward Tomasz Napierala 			break;
2501a39cdcd7SEdward Tomasz Napierala 		case 1:
2502a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2503a39cdcd7SEdward Tomasz Napierala 			break;
2504a39cdcd7SEdward Tomasz Napierala 		case 2:
2505a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
2506a39cdcd7SEdward Tomasz Napierala 			break;
2507a39cdcd7SEdward Tomasz Napierala 		default:
2508a39cdcd7SEdward Tomasz Napierala 			break;
2509a39cdcd7SEdward Tomasz Napierala 		};
25105f2336efSEd Maste 		break;
25115f2336efSEd Maste 	/* linux_flistxattr */
25125f2336efSEd Maste 	case 13:
2513a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
2514a39cdcd7SEdward Tomasz Napierala 		case 0:
2515a39cdcd7SEdward Tomasz Napierala 			p = "l_int";
2516a39cdcd7SEdward Tomasz Napierala 			break;
2517a39cdcd7SEdward Tomasz Napierala 		case 1:
2518a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2519a39cdcd7SEdward Tomasz Napierala 			break;
2520a39cdcd7SEdward Tomasz Napierala 		case 2:
2521a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
2522a39cdcd7SEdward Tomasz Napierala 			break;
2523a39cdcd7SEdward Tomasz Napierala 		default:
2524a39cdcd7SEdward Tomasz Napierala 			break;
2525a39cdcd7SEdward Tomasz Napierala 		};
25265f2336efSEd Maste 		break;
25275f2336efSEd Maste 	/* linux_removexattr */
25285f2336efSEd Maste 	case 14:
2529a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
2530a39cdcd7SEdward Tomasz Napierala 		case 0:
2531a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2532a39cdcd7SEdward Tomasz Napierala 			break;
2533a39cdcd7SEdward Tomasz Napierala 		case 1:
2534a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2535a39cdcd7SEdward Tomasz Napierala 			break;
2536a39cdcd7SEdward Tomasz Napierala 		default:
2537a39cdcd7SEdward Tomasz Napierala 			break;
2538a39cdcd7SEdward Tomasz Napierala 		};
25395f2336efSEd Maste 		break;
25405f2336efSEd Maste 	/* linux_lremovexattr */
25415f2336efSEd Maste 	case 15:
2542a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
2543a39cdcd7SEdward Tomasz Napierala 		case 0:
2544a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2545a39cdcd7SEdward Tomasz Napierala 			break;
2546a39cdcd7SEdward Tomasz Napierala 		case 1:
2547a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2548a39cdcd7SEdward Tomasz Napierala 			break;
2549a39cdcd7SEdward Tomasz Napierala 		default:
2550a39cdcd7SEdward Tomasz Napierala 			break;
2551a39cdcd7SEdward Tomasz Napierala 		};
25525f2336efSEd Maste 		break;
25535f2336efSEd Maste 	/* linux_fremovexattr */
25545f2336efSEd Maste 	case 16:
2555a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
2556a39cdcd7SEdward Tomasz Napierala 		case 0:
2557a39cdcd7SEdward Tomasz Napierala 			p = "l_int";
2558a39cdcd7SEdward Tomasz Napierala 			break;
2559a39cdcd7SEdward Tomasz Napierala 		case 1:
2560a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
2561a39cdcd7SEdward Tomasz Napierala 			break;
2562a39cdcd7SEdward Tomasz Napierala 		default:
2563a39cdcd7SEdward Tomasz Napierala 			break;
2564a39cdcd7SEdward Tomasz Napierala 		};
25655f2336efSEd Maste 		break;
25665f2336efSEd Maste 	/* linux_getcwd */
25675f2336efSEd Maste 	case 17:
25685f2336efSEd Maste 		switch (ndx) {
25695f2336efSEd Maste 		case 0:
25705f2336efSEd Maste 			p = "userland char *";
25715f2336efSEd Maste 			break;
25725f2336efSEd Maste 		case 1:
25735f2336efSEd Maste 			p = "l_ulong";
25745f2336efSEd Maste 			break;
25755f2336efSEd Maste 		default:
25765f2336efSEd Maste 			break;
25775f2336efSEd Maste 		};
25785f2336efSEd Maste 		break;
25795f2336efSEd Maste 	/* linux_lookup_dcookie */
25805f2336efSEd Maste 	case 18:
25815f2336efSEd Maste 		break;
25825f2336efSEd Maste 	/* linux_eventfd2 */
25835f2336efSEd Maste 	case 19:
25845f2336efSEd Maste 		switch (ndx) {
25855f2336efSEd Maste 		case 0:
25865f2336efSEd Maste 			p = "l_uint";
25875f2336efSEd Maste 			break;
25885f2336efSEd Maste 		case 1:
25895f2336efSEd Maste 			p = "l_int";
25905f2336efSEd Maste 			break;
25915f2336efSEd Maste 		default:
25925f2336efSEd Maste 			break;
25935f2336efSEd Maste 		};
25945f2336efSEd Maste 		break;
25955f2336efSEd Maste 	/* linux_epoll_create1 */
25965f2336efSEd Maste 	case 20:
25975f2336efSEd Maste 		switch (ndx) {
25985f2336efSEd Maste 		case 0:
25995f2336efSEd Maste 			p = "l_int";
26005f2336efSEd Maste 			break;
26015f2336efSEd Maste 		default:
26025f2336efSEd Maste 			break;
26035f2336efSEd Maste 		};
26045f2336efSEd Maste 		break;
26055f2336efSEd Maste 	/* linux_epoll_ctl */
26065f2336efSEd Maste 	case 21:
26075f2336efSEd Maste 		switch (ndx) {
26085f2336efSEd Maste 		case 0:
26095f2336efSEd Maste 			p = "l_int";
26105f2336efSEd Maste 			break;
26115f2336efSEd Maste 		case 1:
26125f2336efSEd Maste 			p = "l_int";
26135f2336efSEd Maste 			break;
26145f2336efSEd Maste 		case 2:
26155f2336efSEd Maste 			p = "l_int";
26165f2336efSEd Maste 			break;
26175f2336efSEd Maste 		case 3:
26185f2336efSEd Maste 			p = "userland struct epoll_event *";
26195f2336efSEd Maste 			break;
26205f2336efSEd Maste 		default:
26215f2336efSEd Maste 			break;
26225f2336efSEd Maste 		};
26235f2336efSEd Maste 		break;
26245f2336efSEd Maste 	/* linux_epoll_pwait */
26255f2336efSEd Maste 	case 22:
26265f2336efSEd Maste 		switch (ndx) {
26275f2336efSEd Maste 		case 0:
26285f2336efSEd Maste 			p = "l_int";
26295f2336efSEd Maste 			break;
26305f2336efSEd Maste 		case 1:
26315f2336efSEd Maste 			p = "userland struct epoll_event *";
26325f2336efSEd Maste 			break;
26335f2336efSEd Maste 		case 2:
26345f2336efSEd Maste 			p = "l_int";
26355f2336efSEd Maste 			break;
26365f2336efSEd Maste 		case 3:
26375f2336efSEd Maste 			p = "l_int";
26385f2336efSEd Maste 			break;
26395f2336efSEd Maste 		case 4:
26405f2336efSEd Maste 			p = "userland l_sigset_t *";
26415f2336efSEd Maste 			break;
26425f2336efSEd Maste 		case 5:
26435f2336efSEd Maste 			p = "l_size_t";
26445f2336efSEd Maste 			break;
26455f2336efSEd Maste 		default:
26465f2336efSEd Maste 			break;
26475f2336efSEd Maste 		};
26485f2336efSEd Maste 		break;
2649c4db0baaSEd Maste 	/* dup */
2650c4db0baaSEd Maste 	case 23:
2651c4db0baaSEd Maste 		switch (ndx) {
2652c4db0baaSEd Maste 		case 0:
2653c4db0baaSEd Maste 			p = "u_int";
2654c4db0baaSEd Maste 			break;
2655c4db0baaSEd Maste 		default:
2656c4db0baaSEd Maste 			break;
2657c4db0baaSEd Maste 		};
2658c4db0baaSEd Maste 		break;
26595f2336efSEd Maste 	/* linux_dup3 */
26605f2336efSEd Maste 	case 24:
26615f2336efSEd Maste 		switch (ndx) {
26625f2336efSEd Maste 		case 0:
26635f2336efSEd Maste 			p = "l_int";
26645f2336efSEd Maste 			break;
26655f2336efSEd Maste 		case 1:
26665f2336efSEd Maste 			p = "l_int";
26675f2336efSEd Maste 			break;
26685f2336efSEd Maste 		case 2:
26695f2336efSEd Maste 			p = "l_int";
26705f2336efSEd Maste 			break;
26715f2336efSEd Maste 		default:
26725f2336efSEd Maste 			break;
26735f2336efSEd Maste 		};
26745f2336efSEd Maste 		break;
26755f2336efSEd Maste 	/* linux_fcntl */
26765f2336efSEd Maste 	case 25:
26775f2336efSEd Maste 		switch (ndx) {
26785f2336efSEd Maste 		case 0:
26795f2336efSEd Maste 			p = "l_uint";
26805f2336efSEd Maste 			break;
26815f2336efSEd Maste 		case 1:
26825f2336efSEd Maste 			p = "l_uint";
26835f2336efSEd Maste 			break;
26845f2336efSEd Maste 		case 2:
26855f2336efSEd Maste 			p = "l_ulong";
26865f2336efSEd Maste 			break;
26875f2336efSEd Maste 		default:
26885f2336efSEd Maste 			break;
26895f2336efSEd Maste 		};
26905f2336efSEd Maste 		break;
26915f2336efSEd Maste 	/* linux_inotify_init1 */
26925f2336efSEd Maste 	case 26:
26935f2336efSEd Maste 		switch (ndx) {
26945f2336efSEd Maste 		case 0:
26955f2336efSEd Maste 			p = "l_int";
26965f2336efSEd Maste 			break;
26975f2336efSEd Maste 		default:
26985f2336efSEd Maste 			break;
26995f2336efSEd Maste 		};
27005f2336efSEd Maste 		break;
27015f2336efSEd Maste 	/* linux_inotify_add_watch */
27025f2336efSEd Maste 	case 27:
27035f2336efSEd Maste 		break;
27045f2336efSEd Maste 	/* linux_inotify_rm_watch */
27055f2336efSEd Maste 	case 28:
27065f2336efSEd Maste 		break;
27075f2336efSEd Maste 	/* linux_ioctl */
27085f2336efSEd Maste 	case 29:
27095f2336efSEd Maste 		switch (ndx) {
27105f2336efSEd Maste 		case 0:
27115f2336efSEd Maste 			p = "l_uint";
27125f2336efSEd Maste 			break;
27135f2336efSEd Maste 		case 1:
27145f2336efSEd Maste 			p = "l_uint";
27155f2336efSEd Maste 			break;
27165f2336efSEd Maste 		case 2:
2717a39cdcd7SEdward Tomasz Napierala 			p = "l_ulong";
27185f2336efSEd Maste 			break;
27195f2336efSEd Maste 		default:
27205f2336efSEd Maste 			break;
27215f2336efSEd Maste 		};
27225f2336efSEd Maste 		break;
27235f2336efSEd Maste 	/* linux_ioprio_set */
27245f2336efSEd Maste 	case 30:
27255f2336efSEd Maste 		break;
27265f2336efSEd Maste 	/* linux_ioprio_get */
27275f2336efSEd Maste 	case 31:
27285f2336efSEd Maste 		break;
27295f2336efSEd Maste 	/* flock */
27305f2336efSEd Maste 	case 32:
27315f2336efSEd Maste 		switch (ndx) {
27325f2336efSEd Maste 		case 0:
27335f2336efSEd Maste 			p = "int";
27345f2336efSEd Maste 			break;
27355f2336efSEd Maste 		case 1:
27365f2336efSEd Maste 			p = "int";
27375f2336efSEd Maste 			break;
27385f2336efSEd Maste 		default:
27395f2336efSEd Maste 			break;
27405f2336efSEd Maste 		};
27415f2336efSEd Maste 		break;
27425f2336efSEd Maste 	/* linux_mknodat */
27435f2336efSEd Maste 	case 33:
27445f2336efSEd Maste 		switch (ndx) {
27455f2336efSEd Maste 		case 0:
27465f2336efSEd Maste 			p = "l_int";
27475f2336efSEd Maste 			break;
27485f2336efSEd Maste 		case 1:
27495f2336efSEd Maste 			p = "userland const char *";
27505f2336efSEd Maste 			break;
27515f2336efSEd Maste 		case 2:
27525f2336efSEd Maste 			p = "l_int";
27535f2336efSEd Maste 			break;
27545f2336efSEd Maste 		case 3:
27555f2336efSEd Maste 			p = "l_uint";
27565f2336efSEd Maste 			break;
27575f2336efSEd Maste 		default:
27585f2336efSEd Maste 			break;
27595f2336efSEd Maste 		};
27605f2336efSEd Maste 		break;
27615f2336efSEd Maste 	/* linux_mkdirat */
27625f2336efSEd Maste 	case 34:
27635f2336efSEd Maste 		switch (ndx) {
27645f2336efSEd Maste 		case 0:
27655f2336efSEd Maste 			p = "l_int";
27665f2336efSEd Maste 			break;
27675f2336efSEd Maste 		case 1:
27685f2336efSEd Maste 			p = "userland const char *";
27695f2336efSEd Maste 			break;
27705f2336efSEd Maste 		case 2:
2771a39cdcd7SEdward Tomasz Napierala 			p = "l_mode_t";
27725f2336efSEd Maste 			break;
27735f2336efSEd Maste 		default:
27745f2336efSEd Maste 			break;
27755f2336efSEd Maste 		};
27765f2336efSEd Maste 		break;
27775f2336efSEd Maste 	/* linux_unlinkat */
27785f2336efSEd Maste 	case 35:
27795f2336efSEd Maste 		switch (ndx) {
27805f2336efSEd Maste 		case 0:
27815f2336efSEd Maste 			p = "l_int";
27825f2336efSEd Maste 			break;
27835f2336efSEd Maste 		case 1:
27845f2336efSEd Maste 			p = "userland const char *";
27855f2336efSEd Maste 			break;
27865f2336efSEd Maste 		case 2:
27875f2336efSEd Maste 			p = "l_int";
27885f2336efSEd Maste 			break;
27895f2336efSEd Maste 		default:
27905f2336efSEd Maste 			break;
27915f2336efSEd Maste 		};
27925f2336efSEd Maste 		break;
27935f2336efSEd Maste 	/* linux_symlinkat */
27945f2336efSEd Maste 	case 36:
27955f2336efSEd Maste 		switch (ndx) {
27965f2336efSEd Maste 		case 0:
27975f2336efSEd Maste 			p = "userland const char *";
27985f2336efSEd Maste 			break;
27995f2336efSEd Maste 		case 1:
28005f2336efSEd Maste 			p = "l_int";
28015f2336efSEd Maste 			break;
28025f2336efSEd Maste 		case 2:
28035f2336efSEd Maste 			p = "userland const char *";
28045f2336efSEd Maste 			break;
28055f2336efSEd Maste 		default:
28065f2336efSEd Maste 			break;
28075f2336efSEd Maste 		};
28085f2336efSEd Maste 		break;
28095f2336efSEd Maste 	/* linux_linkat */
28105f2336efSEd Maste 	case 37:
28115f2336efSEd Maste 		switch (ndx) {
28125f2336efSEd Maste 		case 0:
28135f2336efSEd Maste 			p = "l_int";
28145f2336efSEd Maste 			break;
28155f2336efSEd Maste 		case 1:
28165f2336efSEd Maste 			p = "userland const char *";
28175f2336efSEd Maste 			break;
28185f2336efSEd Maste 		case 2:
28195f2336efSEd Maste 			p = "l_int";
28205f2336efSEd Maste 			break;
28215f2336efSEd Maste 		case 3:
28225f2336efSEd Maste 			p = "userland const char *";
28235f2336efSEd Maste 			break;
28245f2336efSEd Maste 		case 4:
28255f2336efSEd Maste 			p = "l_int";
28265f2336efSEd Maste 			break;
28275f2336efSEd Maste 		default:
28285f2336efSEd Maste 			break;
28295f2336efSEd Maste 		};
28305f2336efSEd Maste 		break;
28315f2336efSEd Maste 	/* linux_renameat */
28325f2336efSEd Maste 	case 38:
28335f2336efSEd Maste 		switch (ndx) {
28345f2336efSEd Maste 		case 0:
28355f2336efSEd Maste 			p = "l_int";
28365f2336efSEd Maste 			break;
28375f2336efSEd Maste 		case 1:
28385f2336efSEd Maste 			p = "userland const char *";
28395f2336efSEd Maste 			break;
28405f2336efSEd Maste 		case 2:
28415f2336efSEd Maste 			p = "l_int";
28425f2336efSEd Maste 			break;
28435f2336efSEd Maste 		case 3:
28445f2336efSEd Maste 			p = "userland const char *";
28455f2336efSEd Maste 			break;
28465f2336efSEd Maste 		default:
28475f2336efSEd Maste 			break;
28485f2336efSEd Maste 		};
28495f2336efSEd Maste 		break;
28505f2336efSEd Maste 	/* linux_mount */
28515f2336efSEd Maste 	case 40:
28525f2336efSEd Maste 		switch (ndx) {
28535f2336efSEd Maste 		case 0:
28545f2336efSEd Maste 			p = "userland char *";
28555f2336efSEd Maste 			break;
28565f2336efSEd Maste 		case 1:
28575f2336efSEd Maste 			p = "userland char *";
28585f2336efSEd Maste 			break;
28595f2336efSEd Maste 		case 2:
28605f2336efSEd Maste 			p = "userland char *";
28615f2336efSEd Maste 			break;
28625f2336efSEd Maste 		case 3:
28635f2336efSEd Maste 			p = "l_ulong";
28645f2336efSEd Maste 			break;
28655f2336efSEd Maste 		case 4:
28665f2336efSEd Maste 			p = "userland void *";
28675f2336efSEd Maste 			break;
28685f2336efSEd Maste 		default:
28695f2336efSEd Maste 			break;
28705f2336efSEd Maste 		};
28715f2336efSEd Maste 		break;
28725f2336efSEd Maste 	/* linux_pivot_root */
28735f2336efSEd Maste 	case 41:
28745f2336efSEd Maste 		break;
28755f2336efSEd Maste 	/* linux_statfs */
28765f2336efSEd Maste 	case 43:
28775f2336efSEd Maste 		switch (ndx) {
28785f2336efSEd Maste 		case 0:
28795f2336efSEd Maste 			p = "userland char *";
28805f2336efSEd Maste 			break;
28815f2336efSEd Maste 		case 1:
28825f2336efSEd Maste 			p = "userland struct l_statfs_buf *";
28835f2336efSEd Maste 			break;
28845f2336efSEd Maste 		default:
28855f2336efSEd Maste 			break;
28865f2336efSEd Maste 		};
28875f2336efSEd Maste 		break;
28885f2336efSEd Maste 	/* linux_fstatfs */
28895f2336efSEd Maste 	case 44:
28905f2336efSEd Maste 		switch (ndx) {
28915f2336efSEd Maste 		case 0:
28925f2336efSEd Maste 			p = "l_uint";
28935f2336efSEd Maste 			break;
28945f2336efSEd Maste 		case 1:
28955f2336efSEd Maste 			p = "userland struct l_statfs_buf *";
28965f2336efSEd Maste 			break;
28975f2336efSEd Maste 		default:
28985f2336efSEd Maste 			break;
28995f2336efSEd Maste 		};
29005f2336efSEd Maste 		break;
29015f2336efSEd Maste 	/* linux_truncate */
29025f2336efSEd Maste 	case 45:
29035f2336efSEd Maste 		switch (ndx) {
29045f2336efSEd Maste 		case 0:
29055f2336efSEd Maste 			p = "userland char *";
29065f2336efSEd Maste 			break;
29075f2336efSEd Maste 		case 1:
29085f2336efSEd Maste 			p = "l_ulong";
29095f2336efSEd Maste 			break;
29105f2336efSEd Maste 		default:
29115f2336efSEd Maste 			break;
29125f2336efSEd Maste 		};
29135f2336efSEd Maste 		break;
29145f2336efSEd Maste 	/* linux_ftruncate */
29155f2336efSEd Maste 	case 46:
29165f2336efSEd Maste 		switch (ndx) {
29175f2336efSEd Maste 		case 0:
29185f2336efSEd Maste 			p = "l_int";
29195f2336efSEd Maste 			break;
29205f2336efSEd Maste 		case 1:
29215f2336efSEd Maste 			p = "l_long";
29225f2336efSEd Maste 			break;
29235f2336efSEd Maste 		default:
29245f2336efSEd Maste 			break;
29255f2336efSEd Maste 		};
29265f2336efSEd Maste 		break;
29275f2336efSEd Maste 	/* linux_fallocate */
29285f2336efSEd Maste 	case 47:
29295f2336efSEd Maste 		switch (ndx) {
29305f2336efSEd Maste 		case 0:
29315f2336efSEd Maste 			p = "l_int";
29325f2336efSEd Maste 			break;
29335f2336efSEd Maste 		case 1:
29345f2336efSEd Maste 			p = "l_int";
29355f2336efSEd Maste 			break;
29365f2336efSEd Maste 		case 2:
29375f2336efSEd Maste 			p = "l_loff_t";
29385f2336efSEd Maste 			break;
29395f2336efSEd Maste 		case 3:
29405f2336efSEd Maste 			p = "l_loff_t";
29415f2336efSEd Maste 			break;
29425f2336efSEd Maste 		default:
29435f2336efSEd Maste 			break;
29445f2336efSEd Maste 		};
29455f2336efSEd Maste 		break;
29465f2336efSEd Maste 	/* linux_faccessat */
29475f2336efSEd Maste 	case 48:
29485f2336efSEd Maste 		switch (ndx) {
29495f2336efSEd Maste 		case 0:
29505f2336efSEd Maste 			p = "l_int";
29515f2336efSEd Maste 			break;
29525f2336efSEd Maste 		case 1:
29535f2336efSEd Maste 			p = "userland const char *";
29545f2336efSEd Maste 			break;
29555f2336efSEd Maste 		case 2:
29565f2336efSEd Maste 			p = "l_int";
29575f2336efSEd Maste 			break;
29585f2336efSEd Maste 		default:
29595f2336efSEd Maste 			break;
29605f2336efSEd Maste 		};
29615f2336efSEd Maste 		break;
29625f2336efSEd Maste 	/* linux_chdir */
29635f2336efSEd Maste 	case 49:
29645f2336efSEd Maste 		switch (ndx) {
29655f2336efSEd Maste 		case 0:
29665f2336efSEd Maste 			p = "userland char *";
29675f2336efSEd Maste 			break;
29685f2336efSEd Maste 		default:
29695f2336efSEd Maste 			break;
29705f2336efSEd Maste 		};
29715f2336efSEd Maste 		break;
29725f2336efSEd Maste 	/* fchdir */
29735f2336efSEd Maste 	case 50:
29745f2336efSEd Maste 		switch (ndx) {
29755f2336efSEd Maste 		case 0:
29765f2336efSEd Maste 			p = "int";
29775f2336efSEd Maste 			break;
29785f2336efSEd Maste 		default:
29795f2336efSEd Maste 			break;
29805f2336efSEd Maste 		};
29815f2336efSEd Maste 		break;
29825f2336efSEd Maste 	/* chroot */
29835f2336efSEd Maste 	case 51:
29845f2336efSEd Maste 		switch (ndx) {
29855f2336efSEd Maste 		case 0:
29865f2336efSEd Maste 			p = "userland char *";
29875f2336efSEd Maste 			break;
29885f2336efSEd Maste 		default:
29895f2336efSEd Maste 			break;
29905f2336efSEd Maste 		};
29915f2336efSEd Maste 		break;
29925f2336efSEd Maste 	/* fchmod */
29935f2336efSEd Maste 	case 52:
29945f2336efSEd Maste 		switch (ndx) {
29955f2336efSEd Maste 		case 0:
29965f2336efSEd Maste 			p = "int";
29975f2336efSEd Maste 			break;
29985f2336efSEd Maste 		case 1:
29995f2336efSEd Maste 			p = "int";
30005f2336efSEd Maste 			break;
30015f2336efSEd Maste 		default:
30025f2336efSEd Maste 			break;
30035f2336efSEd Maste 		};
30045f2336efSEd Maste 		break;
30055f2336efSEd Maste 	/* linux_fchmodat */
30065f2336efSEd Maste 	case 53:
30075f2336efSEd Maste 		switch (ndx) {
30085f2336efSEd Maste 		case 0:
30095f2336efSEd Maste 			p = "l_int";
30105f2336efSEd Maste 			break;
30115f2336efSEd Maste 		case 1:
30125f2336efSEd Maste 			p = "userland const char *";
30135f2336efSEd Maste 			break;
30145f2336efSEd Maste 		case 2:
30155f2336efSEd Maste 			p = "l_mode_t";
30165f2336efSEd Maste 			break;
30175f2336efSEd Maste 		default:
30185f2336efSEd Maste 			break;
30195f2336efSEd Maste 		};
30205f2336efSEd Maste 		break;
30215f2336efSEd Maste 	/* linux_fchownat */
30225f2336efSEd Maste 	case 54:
30235f2336efSEd Maste 		switch (ndx) {
30245f2336efSEd Maste 		case 0:
30255f2336efSEd Maste 			p = "l_int";
30265f2336efSEd Maste 			break;
30275f2336efSEd Maste 		case 1:
30285f2336efSEd Maste 			p = "userland const char *";
30295f2336efSEd Maste 			break;
30305f2336efSEd Maste 		case 2:
30315f2336efSEd Maste 			p = "l_uid_t";
30325f2336efSEd Maste 			break;
30335f2336efSEd Maste 		case 3:
30345f2336efSEd Maste 			p = "l_gid_t";
30355f2336efSEd Maste 			break;
30365f2336efSEd Maste 		case 4:
30375f2336efSEd Maste 			p = "l_int";
30385f2336efSEd Maste 			break;
30395f2336efSEd Maste 		default:
30405f2336efSEd Maste 			break;
30415f2336efSEd Maste 		};
30425f2336efSEd Maste 		break;
30435f2336efSEd Maste 	/* fchown */
30445f2336efSEd Maste 	case 55:
30455f2336efSEd Maste 		switch (ndx) {
30465f2336efSEd Maste 		case 0:
30475f2336efSEd Maste 			p = "int";
30485f2336efSEd Maste 			break;
30495f2336efSEd Maste 		case 1:
30505f2336efSEd Maste 			p = "int";
30515f2336efSEd Maste 			break;
30525f2336efSEd Maste 		case 2:
30535f2336efSEd Maste 			p = "int";
30545f2336efSEd Maste 			break;
30555f2336efSEd Maste 		default:
30565f2336efSEd Maste 			break;
30575f2336efSEd Maste 		};
30585f2336efSEd Maste 		break;
30595f2336efSEd Maste 	/* linux_openat */
30605f2336efSEd Maste 	case 56:
30615f2336efSEd Maste 		switch (ndx) {
30625f2336efSEd Maste 		case 0:
30635f2336efSEd Maste 			p = "l_int";
30645f2336efSEd Maste 			break;
30655f2336efSEd Maste 		case 1:
30665f2336efSEd Maste 			p = "userland const char *";
30675f2336efSEd Maste 			break;
30685f2336efSEd Maste 		case 2:
30695f2336efSEd Maste 			p = "l_int";
30705f2336efSEd Maste 			break;
30715f2336efSEd Maste 		case 3:
3072a39cdcd7SEdward Tomasz Napierala 			p = "l_mode_t";
30735f2336efSEd Maste 			break;
30745f2336efSEd Maste 		default:
30755f2336efSEd Maste 			break;
30765f2336efSEd Maste 		};
30775f2336efSEd Maste 		break;
30785f2336efSEd Maste 	/* close */
30795f2336efSEd Maste 	case 57:
30805f2336efSEd Maste 		switch (ndx) {
30815f2336efSEd Maste 		case 0:
30825f2336efSEd Maste 			p = "int";
30835f2336efSEd Maste 			break;
30845f2336efSEd Maste 		default:
30855f2336efSEd Maste 			break;
30865f2336efSEd Maste 		};
30875f2336efSEd Maste 		break;
30885f2336efSEd Maste 	/* linux_vhangup */
30895f2336efSEd Maste 	case 58:
30905f2336efSEd Maste 		break;
30915f2336efSEd Maste 	/* linux_pipe2 */
30925f2336efSEd Maste 	case 59:
30935f2336efSEd Maste 		switch (ndx) {
30945f2336efSEd Maste 		case 0:
30955f2336efSEd Maste 			p = "userland l_int *";
30965f2336efSEd Maste 			break;
30975f2336efSEd Maste 		case 1:
30985f2336efSEd Maste 			p = "l_int";
30995f2336efSEd Maste 			break;
31005f2336efSEd Maste 		default:
31015f2336efSEd Maste 			break;
31025f2336efSEd Maste 		};
31035f2336efSEd Maste 		break;
31045f2336efSEd Maste 	/* linux_getdents64 */
31055f2336efSEd Maste 	case 61:
31065f2336efSEd Maste 		switch (ndx) {
31075f2336efSEd Maste 		case 0:
31085f2336efSEd Maste 			p = "l_uint";
31095f2336efSEd Maste 			break;
31105f2336efSEd Maste 		case 1:
31115f2336efSEd Maste 			p = "userland void *";
31125f2336efSEd Maste 			break;
31135f2336efSEd Maste 		case 2:
31145f2336efSEd Maste 			p = "l_uint";
31155f2336efSEd Maste 			break;
31165f2336efSEd Maste 		default:
31175f2336efSEd Maste 			break;
31185f2336efSEd Maste 		};
31195f2336efSEd Maste 		break;
31205f2336efSEd Maste 	/* linux_lseek */
31215f2336efSEd Maste 	case 62:
31225f2336efSEd Maste 		switch (ndx) {
31235f2336efSEd Maste 		case 0:
31245f2336efSEd Maste 			p = "l_uint";
31255f2336efSEd Maste 			break;
31265f2336efSEd Maste 		case 1:
31275f2336efSEd Maste 			p = "l_off_t";
31285f2336efSEd Maste 			break;
31295f2336efSEd Maste 		case 2:
31305f2336efSEd Maste 			p = "l_int";
31315f2336efSEd Maste 			break;
31325f2336efSEd Maste 		default:
31335f2336efSEd Maste 			break;
31345f2336efSEd Maste 		};
31355f2336efSEd Maste 		break;
31365f2336efSEd Maste 	/* read */
31375f2336efSEd Maste 	case 63:
31385f2336efSEd Maste 		switch (ndx) {
31395f2336efSEd Maste 		case 0:
31405f2336efSEd Maste 			p = "int";
31415f2336efSEd Maste 			break;
31425f2336efSEd Maste 		case 1:
31435f2336efSEd Maste 			p = "userland char *";
31445f2336efSEd Maste 			break;
31455f2336efSEd Maste 		case 2:
3146a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
31475f2336efSEd Maste 			break;
31485f2336efSEd Maste 		default:
31495f2336efSEd Maste 			break;
31505f2336efSEd Maste 		};
31515f2336efSEd Maste 		break;
31525f2336efSEd Maste 	/* write */
31535f2336efSEd Maste 	case 64:
31545f2336efSEd Maste 		switch (ndx) {
31555f2336efSEd Maste 		case 0:
31565f2336efSEd Maste 			p = "int";
31575f2336efSEd Maste 			break;
31585f2336efSEd Maste 		case 1:
31595f2336efSEd Maste 			p = "userland char *";
31605f2336efSEd Maste 			break;
31615f2336efSEd Maste 		case 2:
3162a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
31635f2336efSEd Maste 			break;
31645f2336efSEd Maste 		default:
31655f2336efSEd Maste 			break;
31665f2336efSEd Maste 		};
31675f2336efSEd Maste 		break;
31685f2336efSEd Maste 	/* readv */
31695f2336efSEd Maste 	case 65:
31705f2336efSEd Maste 		switch (ndx) {
31715f2336efSEd Maste 		case 0:
31725f2336efSEd Maste 			p = "int";
31735f2336efSEd Maste 			break;
31745f2336efSEd Maste 		case 1:
31755f2336efSEd Maste 			p = "userland struct iovec *";
31765f2336efSEd Maste 			break;
31775f2336efSEd Maste 		case 2:
31785f2336efSEd Maste 			p = "u_int";
31795f2336efSEd Maste 			break;
31805f2336efSEd Maste 		default:
31815f2336efSEd Maste 			break;
31825f2336efSEd Maste 		};
31835f2336efSEd Maste 		break;
31845f2336efSEd Maste 	/* writev */
31855f2336efSEd Maste 	case 66:
31865f2336efSEd Maste 		switch (ndx) {
31875f2336efSEd Maste 		case 0:
31885f2336efSEd Maste 			p = "int";
31895f2336efSEd Maste 			break;
31905f2336efSEd Maste 		case 1:
31915f2336efSEd Maste 			p = "userland struct iovec *";
31925f2336efSEd Maste 			break;
31935f2336efSEd Maste 		case 2:
31945f2336efSEd Maste 			p = "u_int";
31955f2336efSEd Maste 			break;
31965f2336efSEd Maste 		default:
31975f2336efSEd Maste 			break;
31985f2336efSEd Maste 		};
31995f2336efSEd Maste 		break;
32005f2336efSEd Maste 	/* linux_pread */
32015f2336efSEd Maste 	case 67:
32025f2336efSEd Maste 		switch (ndx) {
32035f2336efSEd Maste 		case 0:
32045f2336efSEd Maste 			p = "l_uint";
32055f2336efSEd Maste 			break;
32065f2336efSEd Maste 		case 1:
32075f2336efSEd Maste 			p = "userland char *";
32085f2336efSEd Maste 			break;
32095f2336efSEd Maste 		case 2:
32105f2336efSEd Maste 			p = "l_size_t";
32115f2336efSEd Maste 			break;
32125f2336efSEd Maste 		case 3:
32135f2336efSEd Maste 			p = "l_loff_t";
32145f2336efSEd Maste 			break;
32155f2336efSEd Maste 		default:
32165f2336efSEd Maste 			break;
32175f2336efSEd Maste 		};
32185f2336efSEd Maste 		break;
32195f2336efSEd Maste 	/* linux_pwrite */
32205f2336efSEd Maste 	case 68:
32215f2336efSEd Maste 		switch (ndx) {
32225f2336efSEd Maste 		case 0:
32235f2336efSEd Maste 			p = "l_uint";
32245f2336efSEd Maste 			break;
32255f2336efSEd Maste 		case 1:
32265f2336efSEd Maste 			p = "userland char *";
32275f2336efSEd Maste 			break;
32285f2336efSEd Maste 		case 2:
32295f2336efSEd Maste 			p = "l_size_t";
32305f2336efSEd Maste 			break;
32315f2336efSEd Maste 		case 3:
32325f2336efSEd Maste 			p = "l_loff_t";
32335f2336efSEd Maste 			break;
32345f2336efSEd Maste 		default:
32355f2336efSEd Maste 			break;
32365f2336efSEd Maste 		};
32375f2336efSEd Maste 		break;
32385f2336efSEd Maste 	/* linux_preadv */
32395f2336efSEd Maste 	case 69:
32405f2336efSEd Maste 		switch (ndx) {
32415f2336efSEd Maste 		case 0:
32425f2336efSEd Maste 			p = "l_ulong";
32435f2336efSEd Maste 			break;
32445f2336efSEd Maste 		case 1:
32455f2336efSEd Maste 			p = "userland struct iovec *";
32465f2336efSEd Maste 			break;
32475f2336efSEd Maste 		case 2:
32485f2336efSEd Maste 			p = "l_ulong";
32495f2336efSEd Maste 			break;
32505f2336efSEd Maste 		case 3:
32515f2336efSEd Maste 			p = "l_ulong";
32525f2336efSEd Maste 			break;
32535f2336efSEd Maste 		case 4:
32545f2336efSEd Maste 			p = "l_ulong";
32555f2336efSEd Maste 			break;
32565f2336efSEd Maste 		default:
32575f2336efSEd Maste 			break;
32585f2336efSEd Maste 		};
32595f2336efSEd Maste 		break;
32605f2336efSEd Maste 	/* linux_pwritev */
32615f2336efSEd Maste 	case 70:
32625f2336efSEd Maste 		switch (ndx) {
32635f2336efSEd Maste 		case 0:
32645f2336efSEd Maste 			p = "l_ulong";
32655f2336efSEd Maste 			break;
32665f2336efSEd Maste 		case 1:
32675f2336efSEd Maste 			p = "userland struct iovec *";
32685f2336efSEd Maste 			break;
32695f2336efSEd Maste 		case 2:
32705f2336efSEd Maste 			p = "l_ulong";
32715f2336efSEd Maste 			break;
32725f2336efSEd Maste 		case 3:
32735f2336efSEd Maste 			p = "l_ulong";
32745f2336efSEd Maste 			break;
32755f2336efSEd Maste 		case 4:
32765f2336efSEd Maste 			p = "l_ulong";
32775f2336efSEd Maste 			break;
32785f2336efSEd Maste 		default:
32795f2336efSEd Maste 			break;
32805f2336efSEd Maste 		};
32815f2336efSEd Maste 		break;
32825f2336efSEd Maste 	/* linux_sendfile */
32835f2336efSEd Maste 	case 71:
32845f2336efSEd Maste 		switch (ndx) {
32855f2336efSEd Maste 		case 0:
32865f2336efSEd Maste 			p = "l_int";
32875f2336efSEd Maste 			break;
32885f2336efSEd Maste 		case 1:
32895f2336efSEd Maste 			p = "l_int";
32905f2336efSEd Maste 			break;
32915f2336efSEd Maste 		case 2:
3292a39cdcd7SEdward Tomasz Napierala 			p = "userland l_off_t *";
32935f2336efSEd Maste 			break;
32945f2336efSEd Maste 		case 3:
32955f2336efSEd Maste 			p = "l_size_t";
32965f2336efSEd Maste 			break;
32975f2336efSEd Maste 		default:
32985f2336efSEd Maste 			break;
32995f2336efSEd Maste 		};
33005f2336efSEd Maste 		break;
33015f2336efSEd Maste 	/* linux_pselect6 */
33025f2336efSEd Maste 	case 72:
33035f2336efSEd Maste 		switch (ndx) {
33045f2336efSEd Maste 		case 0:
33055f2336efSEd Maste 			p = "l_int";
33065f2336efSEd Maste 			break;
33075f2336efSEd Maste 		case 1:
33085f2336efSEd Maste 			p = "userland l_fd_set *";
33095f2336efSEd Maste 			break;
33105f2336efSEd Maste 		case 2:
33115f2336efSEd Maste 			p = "userland l_fd_set *";
33125f2336efSEd Maste 			break;
33135f2336efSEd Maste 		case 3:
33145f2336efSEd Maste 			p = "userland l_fd_set *";
33155f2336efSEd Maste 			break;
33165f2336efSEd Maste 		case 4:
33175f2336efSEd Maste 			p = "userland struct l_timespec *";
33185f2336efSEd Maste 			break;
33195f2336efSEd Maste 		case 5:
33205f2336efSEd Maste 			p = "userland l_uintptr_t *";
33215f2336efSEd Maste 			break;
33225f2336efSEd Maste 		default:
33235f2336efSEd Maste 			break;
33245f2336efSEd Maste 		};
33255f2336efSEd Maste 		break;
33265f2336efSEd Maste 	/* linux_ppoll */
33275f2336efSEd Maste 	case 73:
33285f2336efSEd Maste 		switch (ndx) {
33295f2336efSEd Maste 		case 0:
33305f2336efSEd Maste 			p = "userland struct pollfd *";
33315f2336efSEd Maste 			break;
33325f2336efSEd Maste 		case 1:
3333a39cdcd7SEdward Tomasz Napierala 			p = "l_uint";
33345f2336efSEd Maste 			break;
33355f2336efSEd Maste 		case 2:
33365f2336efSEd Maste 			p = "userland struct l_timespec *";
33375f2336efSEd Maste 			break;
33385f2336efSEd Maste 		case 3:
33395f2336efSEd Maste 			p = "userland l_sigset_t *";
33405f2336efSEd Maste 			break;
33415f2336efSEd Maste 		case 4:
33425f2336efSEd Maste 			p = "l_size_t";
33435f2336efSEd Maste 			break;
33445f2336efSEd Maste 		default:
33455f2336efSEd Maste 			break;
33465f2336efSEd Maste 		};
33475f2336efSEd Maste 		break;
33485f2336efSEd Maste 	/* linux_signalfd4 */
33495f2336efSEd Maste 	case 74:
33505f2336efSEd Maste 		break;
33515f2336efSEd Maste 	/* linux_vmsplice */
33525f2336efSEd Maste 	case 75:
33535f2336efSEd Maste 		break;
33545f2336efSEd Maste 	/* linux_splice */
33555f2336efSEd Maste 	case 76:
33563e9a2142SEdward Tomasz Napierala 		switch (ndx) {
33573e9a2142SEdward Tomasz Napierala 		case 0:
33583e9a2142SEdward Tomasz Napierala 			p = "int";
33593e9a2142SEdward Tomasz Napierala 			break;
33603e9a2142SEdward Tomasz Napierala 		case 1:
33613e9a2142SEdward Tomasz Napierala 			p = "userland l_loff_t *";
33623e9a2142SEdward Tomasz Napierala 			break;
33633e9a2142SEdward Tomasz Napierala 		case 2:
33643e9a2142SEdward Tomasz Napierala 			p = "int";
33653e9a2142SEdward Tomasz Napierala 			break;
33663e9a2142SEdward Tomasz Napierala 		case 3:
33673e9a2142SEdward Tomasz Napierala 			p = "userland l_loff_t *";
33683e9a2142SEdward Tomasz Napierala 			break;
33693e9a2142SEdward Tomasz Napierala 		case 4:
33703e9a2142SEdward Tomasz Napierala 			p = "l_size_t";
33713e9a2142SEdward Tomasz Napierala 			break;
33723e9a2142SEdward Tomasz Napierala 		case 5:
33733e9a2142SEdward Tomasz Napierala 			p = "l_uint";
33743e9a2142SEdward Tomasz Napierala 			break;
33753e9a2142SEdward Tomasz Napierala 		default:
33763e9a2142SEdward Tomasz Napierala 			break;
33773e9a2142SEdward Tomasz Napierala 		};
33785f2336efSEd Maste 		break;
33795f2336efSEd Maste 	/* linux_tee */
33805f2336efSEd Maste 	case 77:
33815f2336efSEd Maste 		break;
33825f2336efSEd Maste 	/* linux_readlinkat */
33835f2336efSEd Maste 	case 78:
33845f2336efSEd Maste 		switch (ndx) {
33855f2336efSEd Maste 		case 0:
33865f2336efSEd Maste 			p = "l_int";
33875f2336efSEd Maste 			break;
33885f2336efSEd Maste 		case 1:
33895f2336efSEd Maste 			p = "userland const char *";
33905f2336efSEd Maste 			break;
33915f2336efSEd Maste 		case 2:
33925f2336efSEd Maste 			p = "userland char *";
33935f2336efSEd Maste 			break;
33945f2336efSEd Maste 		case 3:
33955f2336efSEd Maste 			p = "l_int";
33965f2336efSEd Maste 			break;
33975f2336efSEd Maste 		default:
33985f2336efSEd Maste 			break;
33995f2336efSEd Maste 		};
34005f2336efSEd Maste 		break;
34015f2336efSEd Maste 	/* linux_newfstatat */
34025f2336efSEd Maste 	case 79:
34035f2336efSEd Maste 		switch (ndx) {
34045f2336efSEd Maste 		case 0:
34055f2336efSEd Maste 			p = "l_int";
34065f2336efSEd Maste 			break;
34075f2336efSEd Maste 		case 1:
34085f2336efSEd Maste 			p = "userland char *";
34095f2336efSEd Maste 			break;
34105f2336efSEd Maste 		case 2:
34115f2336efSEd Maste 			p = "userland struct l_stat64 *";
34125f2336efSEd Maste 			break;
34135f2336efSEd Maste 		case 3:
34145f2336efSEd Maste 			p = "l_int";
34155f2336efSEd Maste 			break;
34165f2336efSEd Maste 		default:
34175f2336efSEd Maste 			break;
34185f2336efSEd Maste 		};
34195f2336efSEd Maste 		break;
34205f2336efSEd Maste 	/* linux_newfstat */
34215f2336efSEd Maste 	case 80:
34225f2336efSEd Maste 		switch (ndx) {
34235f2336efSEd Maste 		case 0:
34245f2336efSEd Maste 			p = "l_uint";
34255f2336efSEd Maste 			break;
34265f2336efSEd Maste 		case 1:
34275f2336efSEd Maste 			p = "userland struct l_newstat *";
34285f2336efSEd Maste 			break;
34295f2336efSEd Maste 		default:
34305f2336efSEd Maste 			break;
34315f2336efSEd Maste 		};
34325f2336efSEd Maste 		break;
34335f2336efSEd Maste 	/* fsync */
34345f2336efSEd Maste 	case 82:
34355f2336efSEd Maste 		switch (ndx) {
34365f2336efSEd Maste 		case 0:
34375f2336efSEd Maste 			p = "int";
34385f2336efSEd Maste 			break;
34395f2336efSEd Maste 		default:
34405f2336efSEd Maste 			break;
34415f2336efSEd Maste 		};
34425f2336efSEd Maste 		break;
34435f2336efSEd Maste 	/* linux_fdatasync */
34445f2336efSEd Maste 	case 83:
34455f2336efSEd Maste 		switch (ndx) {
34465f2336efSEd Maste 		case 0:
34475f2336efSEd Maste 			p = "l_uint";
34485f2336efSEd Maste 			break;
34495f2336efSEd Maste 		default:
34505f2336efSEd Maste 			break;
34515f2336efSEd Maste 		};
34525f2336efSEd Maste 		break;
34535f2336efSEd Maste 	/* linux_sync_file_range */
34545f2336efSEd Maste 	case 84:
34550cde2b32SEdward Tomasz Napierala 		switch (ndx) {
34560cde2b32SEdward Tomasz Napierala 		case 0:
34570cde2b32SEdward Tomasz Napierala 			p = "l_int";
34580cde2b32SEdward Tomasz Napierala 			break;
34590cde2b32SEdward Tomasz Napierala 		case 1:
34600cde2b32SEdward Tomasz Napierala 			p = "l_loff_t";
34610cde2b32SEdward Tomasz Napierala 			break;
34620cde2b32SEdward Tomasz Napierala 		case 2:
34630cde2b32SEdward Tomasz Napierala 			p = "l_loff_t";
34640cde2b32SEdward Tomasz Napierala 			break;
34650cde2b32SEdward Tomasz Napierala 		case 3:
3466a39cdcd7SEdward Tomasz Napierala 			p = "l_uint";
34670cde2b32SEdward Tomasz Napierala 			break;
34680cde2b32SEdward Tomasz Napierala 		default:
34690cde2b32SEdward Tomasz Napierala 			break;
34700cde2b32SEdward Tomasz Napierala 		};
34715f2336efSEd Maste 		break;
34725f2336efSEd Maste 	/* linux_timerfd_create */
34735f2336efSEd Maste 	case 85:
34745f2336efSEd Maste 		switch (ndx) {
34755f2336efSEd Maste 		case 0:
34765f2336efSEd Maste 			p = "l_int";
34775f2336efSEd Maste 			break;
34785f2336efSEd Maste 		case 1:
34795f2336efSEd Maste 			p = "l_int";
34805f2336efSEd Maste 			break;
34815f2336efSEd Maste 		default:
34825f2336efSEd Maste 			break;
34835f2336efSEd Maste 		};
34845f2336efSEd Maste 		break;
34855f2336efSEd Maste 	/* linux_timerfd_settime */
34865f2336efSEd Maste 	case 86:
34875f2336efSEd Maste 		switch (ndx) {
34885f2336efSEd Maste 		case 0:
34895f2336efSEd Maste 			p = "l_int";
34905f2336efSEd Maste 			break;
34915f2336efSEd Maste 		case 1:
34925f2336efSEd Maste 			p = "l_int";
34935f2336efSEd Maste 			break;
34945f2336efSEd Maste 		case 2:
34955f2336efSEd Maste 			p = "userland const struct l_itimerspec *";
34965f2336efSEd Maste 			break;
34975f2336efSEd Maste 		case 3:
34985f2336efSEd Maste 			p = "userland struct l_itimerspec *";
34995f2336efSEd Maste 			break;
35005f2336efSEd Maste 		default:
35015f2336efSEd Maste 			break;
35025f2336efSEd Maste 		};
35035f2336efSEd Maste 		break;
35045f2336efSEd Maste 	/* linux_timerfd_gettime */
35055f2336efSEd Maste 	case 87:
35065f2336efSEd Maste 		switch (ndx) {
35075f2336efSEd Maste 		case 0:
35085f2336efSEd Maste 			p = "l_int";
35095f2336efSEd Maste 			break;
35105f2336efSEd Maste 		case 1:
35115f2336efSEd Maste 			p = "userland struct l_itimerspec *";
35125f2336efSEd Maste 			break;
35135f2336efSEd Maste 		default:
35145f2336efSEd Maste 			break;
35155f2336efSEd Maste 		};
35165f2336efSEd Maste 		break;
35175f2336efSEd Maste 	/* linux_utimensat */
35185f2336efSEd Maste 	case 88:
35195f2336efSEd Maste 		switch (ndx) {
35205f2336efSEd Maste 		case 0:
35215f2336efSEd Maste 			p = "l_int";
35225f2336efSEd Maste 			break;
35235f2336efSEd Maste 		case 1:
35245f2336efSEd Maste 			p = "userland const char *";
35255f2336efSEd Maste 			break;
35265f2336efSEd Maste 		case 2:
35275f2336efSEd Maste 			p = "userland const struct l_timespec *";
35285f2336efSEd Maste 			break;
35295f2336efSEd Maste 		case 3:
35305f2336efSEd Maste 			p = "l_int";
35315f2336efSEd Maste 			break;
35325f2336efSEd Maste 		default:
35335f2336efSEd Maste 			break;
35345f2336efSEd Maste 		};
35355f2336efSEd Maste 		break;
35365f2336efSEd Maste 	/* acct */
35375f2336efSEd Maste 	case 89:
35385f2336efSEd Maste 		switch (ndx) {
35395f2336efSEd Maste 		case 0:
35405f2336efSEd Maste 			p = "userland char *";
35415f2336efSEd Maste 			break;
35425f2336efSEd Maste 		default:
35435f2336efSEd Maste 			break;
35445f2336efSEd Maste 		};
35455f2336efSEd Maste 		break;
35465f2336efSEd Maste 	/* linux_capget */
35475f2336efSEd Maste 	case 90:
35485f2336efSEd Maste 		switch (ndx) {
35495f2336efSEd Maste 		case 0:
35505f2336efSEd Maste 			p = "userland struct l_user_cap_header *";
35515f2336efSEd Maste 			break;
35525f2336efSEd Maste 		case 1:
35535f2336efSEd Maste 			p = "userland struct l_user_cap_data *";
35545f2336efSEd Maste 			break;
35555f2336efSEd Maste 		default:
35565f2336efSEd Maste 			break;
35575f2336efSEd Maste 		};
35585f2336efSEd Maste 		break;
35595f2336efSEd Maste 	/* linux_capset */
35605f2336efSEd Maste 	case 91:
35615f2336efSEd Maste 		switch (ndx) {
35625f2336efSEd Maste 		case 0:
35635f2336efSEd Maste 			p = "userland struct l_user_cap_header *";
35645f2336efSEd Maste 			break;
35655f2336efSEd Maste 		case 1:
35665f2336efSEd Maste 			p = "userland struct l_user_cap_data *";
35675f2336efSEd Maste 			break;
35685f2336efSEd Maste 		default:
35695f2336efSEd Maste 			break;
35705f2336efSEd Maste 		};
35715f2336efSEd Maste 		break;
35725f2336efSEd Maste 	/* linux_personality */
35735f2336efSEd Maste 	case 92:
35745f2336efSEd Maste 		switch (ndx) {
35755f2336efSEd Maste 		case 0:
35765f2336efSEd Maste 			p = "l_uint";
35775f2336efSEd Maste 			break;
35785f2336efSEd Maste 		default:
35795f2336efSEd Maste 			break;
35805f2336efSEd Maste 		};
35815f2336efSEd Maste 		break;
35825f2336efSEd Maste 	/* linux_exit */
35835f2336efSEd Maste 	case 93:
35845f2336efSEd Maste 		switch (ndx) {
35855f2336efSEd Maste 		case 0:
3586a39cdcd7SEdward Tomasz Napierala 			p = "u_int";
35875f2336efSEd Maste 			break;
35885f2336efSEd Maste 		default:
35895f2336efSEd Maste 			break;
35905f2336efSEd Maste 		};
35915f2336efSEd Maste 		break;
35925f2336efSEd Maste 	/* linux_exit_group */
35935f2336efSEd Maste 	case 94:
35945f2336efSEd Maste 		switch (ndx) {
35955f2336efSEd Maste 		case 0:
3596a39cdcd7SEdward Tomasz Napierala 			p = "l_int";
35975f2336efSEd Maste 			break;
35985f2336efSEd Maste 		default:
35995f2336efSEd Maste 			break;
36005f2336efSEd Maste 		};
36015f2336efSEd Maste 		break;
36025f2336efSEd Maste 	/* linux_waitid */
36035f2336efSEd Maste 	case 95:
36045f2336efSEd Maste 		switch (ndx) {
36055f2336efSEd Maste 		case 0:
36065f2336efSEd Maste 			p = "l_int";
36075f2336efSEd Maste 			break;
36085f2336efSEd Maste 		case 1:
36095f2336efSEd Maste 			p = "l_pid_t";
36105f2336efSEd Maste 			break;
36115f2336efSEd Maste 		case 2:
36125f2336efSEd Maste 			p = "userland l_siginfo_t *";
36135f2336efSEd Maste 			break;
36145f2336efSEd Maste 		case 3:
36155f2336efSEd Maste 			p = "l_int";
36165f2336efSEd Maste 			break;
36175f2336efSEd Maste 		case 4:
36185f2336efSEd Maste 			p = "userland struct rusage *";
36195f2336efSEd Maste 			break;
36205f2336efSEd Maste 		default:
36215f2336efSEd Maste 			break;
36225f2336efSEd Maste 		};
36235f2336efSEd Maste 		break;
36245f2336efSEd Maste 	/* linux_set_tid_address */
36255f2336efSEd Maste 	case 96:
36265f2336efSEd Maste 		switch (ndx) {
36275f2336efSEd Maste 		case 0:
3628a39cdcd7SEdward Tomasz Napierala 			p = "userland l_int *";
36295f2336efSEd Maste 			break;
36305f2336efSEd Maste 		default:
36315f2336efSEd Maste 			break;
36325f2336efSEd Maste 		};
36335f2336efSEd Maste 		break;
36345f2336efSEd Maste 	/* linux_unshare */
36355f2336efSEd Maste 	case 97:
36365f2336efSEd Maste 		break;
36375f2336efSEd Maste 	/* linux_sys_futex */
36385f2336efSEd Maste 	case 98:
36395f2336efSEd Maste 		switch (ndx) {
36405f2336efSEd Maste 		case 0:
3641ee64d982SDmitry Chagin 			p = "userland uint32_t *";
36425f2336efSEd Maste 			break;
36435f2336efSEd Maste 		case 1:
3644ee64d982SDmitry Chagin 			p = "l_int";
36455f2336efSEd Maste 			break;
36465f2336efSEd Maste 		case 2:
3647ee64d982SDmitry Chagin 			p = "uint32_t";
36485f2336efSEd Maste 			break;
36495f2336efSEd Maste 		case 3:
36505f2336efSEd Maste 			p = "userland struct l_timespec *";
36515f2336efSEd Maste 			break;
36525f2336efSEd Maste 		case 4:
3653ee64d982SDmitry Chagin 			p = "userland uint32_t *";
36545f2336efSEd Maste 			break;
36555f2336efSEd Maste 		case 5:
3656ee64d982SDmitry Chagin 			p = "uint32_t";
36575f2336efSEd Maste 			break;
36585f2336efSEd Maste 		default:
36595f2336efSEd Maste 			break;
36605f2336efSEd Maste 		};
36615f2336efSEd Maste 		break;
36625f2336efSEd Maste 	/* linux_set_robust_list */
36635f2336efSEd Maste 	case 99:
36645f2336efSEd Maste 		switch (ndx) {
36655f2336efSEd Maste 		case 0:
36665f2336efSEd Maste 			p = "userland struct linux_robust_list_head *";
36675f2336efSEd Maste 			break;
36685f2336efSEd Maste 		case 1:
36695f2336efSEd Maste 			p = "l_size_t";
36705f2336efSEd Maste 			break;
36715f2336efSEd Maste 		default:
36725f2336efSEd Maste 			break;
36735f2336efSEd Maste 		};
36745f2336efSEd Maste 		break;
36755f2336efSEd Maste 	/* linux_get_robust_list */
36765f2336efSEd Maste 	case 100:
36775f2336efSEd Maste 		switch (ndx) {
36785f2336efSEd Maste 		case 0:
36795f2336efSEd Maste 			p = "l_int";
36805f2336efSEd Maste 			break;
36815f2336efSEd Maste 		case 1:
36825f2336efSEd Maste 			p = "userland struct linux_robust_list_head **";
36835f2336efSEd Maste 			break;
36845f2336efSEd Maste 		case 2:
36855f2336efSEd Maste 			p = "userland l_size_t *";
36865f2336efSEd Maste 			break;
36875f2336efSEd Maste 		default:
36885f2336efSEd Maste 			break;
36895f2336efSEd Maste 		};
36905f2336efSEd Maste 		break;
36915f2336efSEd Maste 	/* linux_nanosleep */
36925f2336efSEd Maste 	case 101:
36935f2336efSEd Maste 		switch (ndx) {
36945f2336efSEd Maste 		case 0:
36955f2336efSEd Maste 			p = "userland const struct l_timespec *";
36965f2336efSEd Maste 			break;
36975f2336efSEd Maste 		case 1:
36985f2336efSEd Maste 			p = "userland struct l_timespec *";
36995f2336efSEd Maste 			break;
37005f2336efSEd Maste 		default:
37015f2336efSEd Maste 			break;
37025f2336efSEd Maste 		};
37035f2336efSEd Maste 		break;
37045f2336efSEd Maste 	/* linux_getitimer */
37055f2336efSEd Maste 	case 102:
37065f2336efSEd Maste 		switch (ndx) {
37075f2336efSEd Maste 		case 0:
37085f2336efSEd Maste 			p = "l_int";
37095f2336efSEd Maste 			break;
37105f2336efSEd Maste 		case 1:
37115f2336efSEd Maste 			p = "userland struct l_itimerval *";
37125f2336efSEd Maste 			break;
37135f2336efSEd Maste 		default:
37145f2336efSEd Maste 			break;
37155f2336efSEd Maste 		};
37165f2336efSEd Maste 		break;
37175f2336efSEd Maste 	/* linux_setitimer */
37185f2336efSEd Maste 	case 103:
37195f2336efSEd Maste 		switch (ndx) {
37205f2336efSEd Maste 		case 0:
37215f2336efSEd Maste 			p = "l_int";
37225f2336efSEd Maste 			break;
37235f2336efSEd Maste 		case 1:
37245f2336efSEd Maste 			p = "userland struct l_itimerval *";
37255f2336efSEd Maste 			break;
37265f2336efSEd Maste 		case 2:
37275f2336efSEd Maste 			p = "userland struct l_itimerval *";
37285f2336efSEd Maste 			break;
37295f2336efSEd Maste 		default:
37305f2336efSEd Maste 			break;
37315f2336efSEd Maste 		};
37325f2336efSEd Maste 		break;
37335f2336efSEd Maste 	/* linux_kexec_load */
37345f2336efSEd Maste 	case 104:
37355f2336efSEd Maste 		break;
37365f2336efSEd Maste 	/* linux_init_module */
37375f2336efSEd Maste 	case 105:
37385f2336efSEd Maste 		break;
37395f2336efSEd Maste 	/* linux_delete_module */
37405f2336efSEd Maste 	case 106:
37415f2336efSEd Maste 		break;
37425f2336efSEd Maste 	/* linux_timer_create */
37435f2336efSEd Maste 	case 107:
37445f2336efSEd Maste 		switch (ndx) {
37455f2336efSEd Maste 		case 0:
37465f2336efSEd Maste 			p = "clockid_t";
37475f2336efSEd Maste 			break;
37485f2336efSEd Maste 		case 1:
37495f2336efSEd Maste 			p = "userland struct sigevent *";
37505f2336efSEd Maste 			break;
37515f2336efSEd Maste 		case 2:
37525f2336efSEd Maste 			p = "userland l_timer_t *";
37535f2336efSEd Maste 			break;
37545f2336efSEd Maste 		default:
37555f2336efSEd Maste 			break;
37565f2336efSEd Maste 		};
37575f2336efSEd Maste 		break;
37585f2336efSEd Maste 	/* linux_timer_gettime */
37595f2336efSEd Maste 	case 108:
37605f2336efSEd Maste 		switch (ndx) {
37615f2336efSEd Maste 		case 0:
37625f2336efSEd Maste 			p = "l_timer_t";
37635f2336efSEd Maste 			break;
37645f2336efSEd Maste 		case 1:
37655f2336efSEd Maste 			p = "userland struct itimerspec *";
37665f2336efSEd Maste 			break;
37675f2336efSEd Maste 		default:
37685f2336efSEd Maste 			break;
37695f2336efSEd Maste 		};
37705f2336efSEd Maste 		break;
37715f2336efSEd Maste 	/* linux_timer_getoverrun */
37725f2336efSEd Maste 	case 109:
37735f2336efSEd Maste 		switch (ndx) {
37745f2336efSEd Maste 		case 0:
37755f2336efSEd Maste 			p = "l_timer_t";
37765f2336efSEd Maste 			break;
37775f2336efSEd Maste 		default:
37785f2336efSEd Maste 			break;
37795f2336efSEd Maste 		};
37805f2336efSEd Maste 		break;
37815f2336efSEd Maste 	/* linux_timer_settime */
37825f2336efSEd Maste 	case 110:
37835f2336efSEd Maste 		switch (ndx) {
37845f2336efSEd Maste 		case 0:
37855f2336efSEd Maste 			p = "l_timer_t";
37865f2336efSEd Maste 			break;
37875f2336efSEd Maste 		case 1:
37885f2336efSEd Maste 			p = "l_int";
37895f2336efSEd Maste 			break;
37905f2336efSEd Maste 		case 2:
37915f2336efSEd Maste 			p = "userland const struct itimerspec *";
37925f2336efSEd Maste 			break;
37935f2336efSEd Maste 		case 3:
37945f2336efSEd Maste 			p = "userland struct itimerspec *";
37955f2336efSEd Maste 			break;
37965f2336efSEd Maste 		default:
37975f2336efSEd Maste 			break;
37985f2336efSEd Maste 		};
37995f2336efSEd Maste 		break;
38005f2336efSEd Maste 	/* linux_timer_delete */
38015f2336efSEd Maste 	case 111:
38025f2336efSEd Maste 		switch (ndx) {
38035f2336efSEd Maste 		case 0:
38045f2336efSEd Maste 			p = "l_timer_t";
38055f2336efSEd Maste 			break;
38065f2336efSEd Maste 		default:
38075f2336efSEd Maste 			break;
38085f2336efSEd Maste 		};
38095f2336efSEd Maste 		break;
38105f2336efSEd Maste 	/* linux_clock_settime */
38115f2336efSEd Maste 	case 112:
38125f2336efSEd Maste 		switch (ndx) {
38135f2336efSEd Maste 		case 0:
38145f2336efSEd Maste 			p = "clockid_t";
38155f2336efSEd Maste 			break;
38165f2336efSEd Maste 		case 1:
38175f2336efSEd Maste 			p = "userland struct l_timespec *";
38185f2336efSEd Maste 			break;
38195f2336efSEd Maste 		default:
38205f2336efSEd Maste 			break;
38215f2336efSEd Maste 		};
38225f2336efSEd Maste 		break;
38235f2336efSEd Maste 	/* linux_clock_gettime */
38245f2336efSEd Maste 	case 113:
38255f2336efSEd Maste 		switch (ndx) {
38265f2336efSEd Maste 		case 0:
38275f2336efSEd Maste 			p = "clockid_t";
38285f2336efSEd Maste 			break;
38295f2336efSEd Maste 		case 1:
38305f2336efSEd Maste 			p = "userland struct l_timespec *";
38315f2336efSEd Maste 			break;
38325f2336efSEd Maste 		default:
38335f2336efSEd Maste 			break;
38345f2336efSEd Maste 		};
38355f2336efSEd Maste 		break;
38365f2336efSEd Maste 	/* linux_clock_getres */
38375f2336efSEd Maste 	case 114:
38385f2336efSEd Maste 		switch (ndx) {
38395f2336efSEd Maste 		case 0:
38405f2336efSEd Maste 			p = "clockid_t";
38415f2336efSEd Maste 			break;
38425f2336efSEd Maste 		case 1:
38435f2336efSEd Maste 			p = "userland struct l_timespec *";
38445f2336efSEd Maste 			break;
38455f2336efSEd Maste 		default:
38465f2336efSEd Maste 			break;
38475f2336efSEd Maste 		};
38485f2336efSEd Maste 		break;
38495f2336efSEd Maste 	/* linux_clock_nanosleep */
38505f2336efSEd Maste 	case 115:
38515f2336efSEd Maste 		switch (ndx) {
38525f2336efSEd Maste 		case 0:
38535f2336efSEd Maste 			p = "clockid_t";
38545f2336efSEd Maste 			break;
38555f2336efSEd Maste 		case 1:
3856a39cdcd7SEdward Tomasz Napierala 			p = "l_int";
38575f2336efSEd Maste 			break;
38585f2336efSEd Maste 		case 2:
38595f2336efSEd Maste 			p = "userland struct l_timespec *";
38605f2336efSEd Maste 			break;
38615f2336efSEd Maste 		case 3:
38625f2336efSEd Maste 			p = "userland struct l_timespec *";
38635f2336efSEd Maste 			break;
38645f2336efSEd Maste 		default:
38655f2336efSEd Maste 			break;
38665f2336efSEd Maste 		};
38675f2336efSEd Maste 		break;
38685f2336efSEd Maste 	/* linux_syslog */
38695f2336efSEd Maste 	case 116:
38705f2336efSEd Maste 		switch (ndx) {
38715f2336efSEd Maste 		case 0:
38725f2336efSEd Maste 			p = "l_int";
38735f2336efSEd Maste 			break;
38745f2336efSEd Maste 		case 1:
38755f2336efSEd Maste 			p = "userland char *";
38765f2336efSEd Maste 			break;
38775f2336efSEd Maste 		case 2:
38785f2336efSEd Maste 			p = "l_int";
38795f2336efSEd Maste 			break;
38805f2336efSEd Maste 		default:
38815f2336efSEd Maste 			break;
38825f2336efSEd Maste 		};
38835f2336efSEd Maste 		break;
38845f2336efSEd Maste 	/* linux_ptrace */
38855f2336efSEd Maste 	case 117:
38865f2336efSEd Maste 		switch (ndx) {
38875f2336efSEd Maste 		case 0:
38885f2336efSEd Maste 			p = "l_long";
38895f2336efSEd Maste 			break;
38905f2336efSEd Maste 		case 1:
38915f2336efSEd Maste 			p = "l_long";
38925f2336efSEd Maste 			break;
38935f2336efSEd Maste 		case 2:
38945f2336efSEd Maste 			p = "l_ulong";
38955f2336efSEd Maste 			break;
38965f2336efSEd Maste 		case 3:
38975f2336efSEd Maste 			p = "l_ulong";
38985f2336efSEd Maste 			break;
38995f2336efSEd Maste 		default:
39005f2336efSEd Maste 			break;
39015f2336efSEd Maste 		};
39025f2336efSEd Maste 		break;
39035f2336efSEd Maste 	/* linux_sched_setparam */
39045f2336efSEd Maste 	case 118:
39055f2336efSEd Maste 		switch (ndx) {
39065f2336efSEd Maste 		case 0:
39075f2336efSEd Maste 			p = "l_pid_t";
39085f2336efSEd Maste 			break;
39095f2336efSEd Maste 		case 1:
39105f2336efSEd Maste 			p = "userland struct sched_param *";
39115f2336efSEd Maste 			break;
39125f2336efSEd Maste 		default:
39135f2336efSEd Maste 			break;
39145f2336efSEd Maste 		};
39155f2336efSEd Maste 		break;
39165f2336efSEd Maste 	/* linux_sched_setscheduler */
39175f2336efSEd Maste 	case 119:
39185f2336efSEd Maste 		switch (ndx) {
39195f2336efSEd Maste 		case 0:
39205f2336efSEd Maste 			p = "l_pid_t";
39215f2336efSEd Maste 			break;
39225f2336efSEd Maste 		case 1:
39235f2336efSEd Maste 			p = "l_int";
39245f2336efSEd Maste 			break;
39255f2336efSEd Maste 		case 2:
39265f2336efSEd Maste 			p = "userland struct sched_param *";
39275f2336efSEd Maste 			break;
39285f2336efSEd Maste 		default:
39295f2336efSEd Maste 			break;
39305f2336efSEd Maste 		};
39315f2336efSEd Maste 		break;
39325f2336efSEd Maste 	/* linux_sched_getscheduler */
39335f2336efSEd Maste 	case 120:
39345f2336efSEd Maste 		switch (ndx) {
39355f2336efSEd Maste 		case 0:
39365f2336efSEd Maste 			p = "l_pid_t";
39375f2336efSEd Maste 			break;
39385f2336efSEd Maste 		default:
39395f2336efSEd Maste 			break;
39405f2336efSEd Maste 		};
39415f2336efSEd Maste 		break;
39425f2336efSEd Maste 	/* linux_sched_getparam */
39435f2336efSEd Maste 	case 121:
39445f2336efSEd Maste 		switch (ndx) {
39455f2336efSEd Maste 		case 0:
39465f2336efSEd Maste 			p = "l_pid_t";
39475f2336efSEd Maste 			break;
39485f2336efSEd Maste 		case 1:
39495f2336efSEd Maste 			p = "userland struct sched_param *";
39505f2336efSEd Maste 			break;
39515f2336efSEd Maste 		default:
39525f2336efSEd Maste 			break;
39535f2336efSEd Maste 		};
39545f2336efSEd Maste 		break;
39555f2336efSEd Maste 	/* linux_sched_setaffinity */
39565f2336efSEd Maste 	case 122:
39575f2336efSEd Maste 		switch (ndx) {
39585f2336efSEd Maste 		case 0:
39595f2336efSEd Maste 			p = "l_pid_t";
39605f2336efSEd Maste 			break;
39615f2336efSEd Maste 		case 1:
39625f2336efSEd Maste 			p = "l_uint";
39635f2336efSEd Maste 			break;
39645f2336efSEd Maste 		case 2:
39655f2336efSEd Maste 			p = "userland l_ulong *";
39665f2336efSEd Maste 			break;
39675f2336efSEd Maste 		default:
39685f2336efSEd Maste 			break;
39695f2336efSEd Maste 		};
39705f2336efSEd Maste 		break;
39715f2336efSEd Maste 	/* linux_sched_getaffinity */
39725f2336efSEd Maste 	case 123:
39735f2336efSEd Maste 		switch (ndx) {
39745f2336efSEd Maste 		case 0:
39755f2336efSEd Maste 			p = "l_pid_t";
39765f2336efSEd Maste 			break;
39775f2336efSEd Maste 		case 1:
39785f2336efSEd Maste 			p = "l_uint";
39795f2336efSEd Maste 			break;
39805f2336efSEd Maste 		case 2:
39815f2336efSEd Maste 			p = "userland l_ulong *";
39825f2336efSEd Maste 			break;
39835f2336efSEd Maste 		default:
39845f2336efSEd Maste 			break;
39855f2336efSEd Maste 		};
39865f2336efSEd Maste 		break;
39875f2336efSEd Maste 	/* sched_yield */
39885f2336efSEd Maste 	case 124:
39895f2336efSEd Maste 		break;
39905f2336efSEd Maste 	/* linux_sched_get_priority_max */
39915f2336efSEd Maste 	case 125:
39925f2336efSEd Maste 		switch (ndx) {
39935f2336efSEd Maste 		case 0:
39945f2336efSEd Maste 			p = "l_int";
39955f2336efSEd Maste 			break;
39965f2336efSEd Maste 		default:
39975f2336efSEd Maste 			break;
39985f2336efSEd Maste 		};
39995f2336efSEd Maste 		break;
40005f2336efSEd Maste 	/* linux_sched_get_priority_min */
40015f2336efSEd Maste 	case 126:
40025f2336efSEd Maste 		switch (ndx) {
40035f2336efSEd Maste 		case 0:
40045f2336efSEd Maste 			p = "l_int";
40055f2336efSEd Maste 			break;
40065f2336efSEd Maste 		default:
40075f2336efSEd Maste 			break;
40085f2336efSEd Maste 		};
40095f2336efSEd Maste 		break;
40105f2336efSEd Maste 	/* linux_sched_rr_get_interval */
40115f2336efSEd Maste 	case 127:
40125f2336efSEd Maste 		switch (ndx) {
40135f2336efSEd Maste 		case 0:
40145f2336efSEd Maste 			p = "l_pid_t";
40155f2336efSEd Maste 			break;
40165f2336efSEd Maste 		case 1:
40175f2336efSEd Maste 			p = "userland struct l_timespec *";
40185f2336efSEd Maste 			break;
40195f2336efSEd Maste 		default:
40205f2336efSEd Maste 			break;
40215f2336efSEd Maste 		};
40225f2336efSEd Maste 		break;
40235f2336efSEd Maste 	/* linux_kill */
40245f2336efSEd Maste 	case 129:
40255f2336efSEd Maste 		switch (ndx) {
40265f2336efSEd Maste 		case 0:
4027a39cdcd7SEdward Tomasz Napierala 			p = "l_pid_t";
40285f2336efSEd Maste 			break;
40295f2336efSEd Maste 		case 1:
40305f2336efSEd Maste 			p = "l_int";
40315f2336efSEd Maste 			break;
40325f2336efSEd Maste 		default:
40335f2336efSEd Maste 			break;
40345f2336efSEd Maste 		};
40355f2336efSEd Maste 		break;
40365f2336efSEd Maste 	/* linux_tkill */
40375f2336efSEd Maste 	case 130:
40385f2336efSEd Maste 		switch (ndx) {
40395f2336efSEd Maste 		case 0:
4040a39cdcd7SEdward Tomasz Napierala 			p = "l_pid_t";
40415f2336efSEd Maste 			break;
40425f2336efSEd Maste 		case 1:
40435f2336efSEd Maste 			p = "l_int";
40445f2336efSEd Maste 			break;
40455f2336efSEd Maste 		default:
40465f2336efSEd Maste 			break;
40475f2336efSEd Maste 		};
40485f2336efSEd Maste 		break;
40495f2336efSEd Maste 	/* linux_tgkill */
40505f2336efSEd Maste 	case 131:
40515f2336efSEd Maste 		switch (ndx) {
40525f2336efSEd Maste 		case 0:
4053a39cdcd7SEdward Tomasz Napierala 			p = "l_pid_t";
40545f2336efSEd Maste 			break;
40555f2336efSEd Maste 		case 1:
4056a39cdcd7SEdward Tomasz Napierala 			p = "l_pid_t";
40575f2336efSEd Maste 			break;
40585f2336efSEd Maste 		case 2:
40595f2336efSEd Maste 			p = "l_int";
40605f2336efSEd Maste 			break;
40615f2336efSEd Maste 		default:
40625f2336efSEd Maste 			break;
40635f2336efSEd Maste 		};
40645f2336efSEd Maste 		break;
40655f2336efSEd Maste 	/* linux_sigaltstack */
40665f2336efSEd Maste 	case 132:
40675f2336efSEd Maste 		switch (ndx) {
40685f2336efSEd Maste 		case 0:
40695f2336efSEd Maste 			p = "userland l_stack_t *";
40705f2336efSEd Maste 			break;
40715f2336efSEd Maste 		case 1:
40725f2336efSEd Maste 			p = "userland l_stack_t *";
40735f2336efSEd Maste 			break;
40745f2336efSEd Maste 		default:
40755f2336efSEd Maste 			break;
40765f2336efSEd Maste 		};
40775f2336efSEd Maste 		break;
40785f2336efSEd Maste 	/* linux_rt_sigsuspend */
40795f2336efSEd Maste 	case 133:
40805f2336efSEd Maste 		switch (ndx) {
40815f2336efSEd Maste 		case 0:
40825f2336efSEd Maste 			p = "userland l_sigset_t *";
40835f2336efSEd Maste 			break;
40845f2336efSEd Maste 		case 1:
40855f2336efSEd Maste 			p = "l_size_t";
40865f2336efSEd Maste 			break;
40875f2336efSEd Maste 		default:
40885f2336efSEd Maste 			break;
40895f2336efSEd Maste 		};
40905f2336efSEd Maste 		break;
40915f2336efSEd Maste 	/* linux_rt_sigaction */
40925f2336efSEd Maste 	case 134:
40935f2336efSEd Maste 		switch (ndx) {
40945f2336efSEd Maste 		case 0:
40955f2336efSEd Maste 			p = "l_int";
40965f2336efSEd Maste 			break;
40975f2336efSEd Maste 		case 1:
40985f2336efSEd Maste 			p = "userland l_sigaction_t *";
40995f2336efSEd Maste 			break;
41005f2336efSEd Maste 		case 2:
41015f2336efSEd Maste 			p = "userland l_sigaction_t *";
41025f2336efSEd Maste 			break;
41035f2336efSEd Maste 		case 3:
41045f2336efSEd Maste 			p = "l_size_t";
41055f2336efSEd Maste 			break;
41065f2336efSEd Maste 		default:
41075f2336efSEd Maste 			break;
41085f2336efSEd Maste 		};
41095f2336efSEd Maste 		break;
41105f2336efSEd Maste 	/* linux_rt_sigprocmask */
41115f2336efSEd Maste 	case 135:
41125f2336efSEd Maste 		switch (ndx) {
41135f2336efSEd Maste 		case 0:
41145f2336efSEd Maste 			p = "l_int";
41155f2336efSEd Maste 			break;
41165f2336efSEd Maste 		case 1:
41175f2336efSEd Maste 			p = "userland l_sigset_t *";
41185f2336efSEd Maste 			break;
41195f2336efSEd Maste 		case 2:
41205f2336efSEd Maste 			p = "userland l_sigset_t *";
41215f2336efSEd Maste 			break;
41225f2336efSEd Maste 		case 3:
41235f2336efSEd Maste 			p = "l_size_t";
41245f2336efSEd Maste 			break;
41255f2336efSEd Maste 		default:
41265f2336efSEd Maste 			break;
41275f2336efSEd Maste 		};
41285f2336efSEd Maste 		break;
41295f2336efSEd Maste 	/* linux_rt_sigpending */
41305f2336efSEd Maste 	case 136:
41315f2336efSEd Maste 		switch (ndx) {
41325f2336efSEd Maste 		case 0:
41335f2336efSEd Maste 			p = "userland l_sigset_t *";
41345f2336efSEd Maste 			break;
41355f2336efSEd Maste 		case 1:
41365f2336efSEd Maste 			p = "l_size_t";
41375f2336efSEd Maste 			break;
41385f2336efSEd Maste 		default:
41395f2336efSEd Maste 			break;
41405f2336efSEd Maste 		};
41415f2336efSEd Maste 		break;
41425f2336efSEd Maste 	/* linux_rt_sigtimedwait */
41435f2336efSEd Maste 	case 137:
41445f2336efSEd Maste 		switch (ndx) {
41455f2336efSEd Maste 		case 0:
41465f2336efSEd Maste 			p = "userland l_sigset_t *";
41475f2336efSEd Maste 			break;
41485f2336efSEd Maste 		case 1:
41495f2336efSEd Maste 			p = "userland l_siginfo_t *";
41505f2336efSEd Maste 			break;
41515f2336efSEd Maste 		case 2:
4152e29ea22fSDmitry Chagin 			p = "userland struct l_timespec *";
41535f2336efSEd Maste 			break;
41545f2336efSEd Maste 		case 3:
41555f2336efSEd Maste 			p = "l_size_t";
41565f2336efSEd Maste 			break;
41575f2336efSEd Maste 		default:
41585f2336efSEd Maste 			break;
41595f2336efSEd Maste 		};
41605f2336efSEd Maste 		break;
41615f2336efSEd Maste 	/* linux_rt_sigqueueinfo */
41625f2336efSEd Maste 	case 138:
41635f2336efSEd Maste 		switch (ndx) {
41645f2336efSEd Maste 		case 0:
41655f2336efSEd Maste 			p = "l_pid_t";
41665f2336efSEd Maste 			break;
41675f2336efSEd Maste 		case 1:
41685f2336efSEd Maste 			p = "l_int";
41695f2336efSEd Maste 			break;
41705f2336efSEd Maste 		case 2:
41715f2336efSEd Maste 			p = "userland l_siginfo_t *";
41725f2336efSEd Maste 			break;
41735f2336efSEd Maste 		default:
41745f2336efSEd Maste 			break;
41755f2336efSEd Maste 		};
41765f2336efSEd Maste 		break;
41775f2336efSEd Maste 	/* linux_rt_sigreturn */
41785f2336efSEd Maste 	case 139:
41795f2336efSEd Maste 		break;
41805f2336efSEd Maste 	/* setpriority */
41815f2336efSEd Maste 	case 140:
41825f2336efSEd Maste 		switch (ndx) {
41835f2336efSEd Maste 		case 0:
41845f2336efSEd Maste 			p = "int";
41855f2336efSEd Maste 			break;
41865f2336efSEd Maste 		case 1:
41875f2336efSEd Maste 			p = "int";
41885f2336efSEd Maste 			break;
41895f2336efSEd Maste 		case 2:
41905f2336efSEd Maste 			p = "int";
41915f2336efSEd Maste 			break;
41925f2336efSEd Maste 		default:
41935f2336efSEd Maste 			break;
41945f2336efSEd Maste 		};
41955f2336efSEd Maste 		break;
41965f2336efSEd Maste 	/* linux_getpriority */
41975f2336efSEd Maste 	case 141:
41985f2336efSEd Maste 		switch (ndx) {
41995f2336efSEd Maste 		case 0:
42005f2336efSEd Maste 			p = "l_int";
42015f2336efSEd Maste 			break;
42025f2336efSEd Maste 		case 1:
42035f2336efSEd Maste 			p = "l_int";
42045f2336efSEd Maste 			break;
42055f2336efSEd Maste 		default:
42065f2336efSEd Maste 			break;
42075f2336efSEd Maste 		};
42085f2336efSEd Maste 		break;
42095f2336efSEd Maste 	/* linux_reboot */
42105f2336efSEd Maste 	case 142:
42115f2336efSEd Maste 		switch (ndx) {
42125f2336efSEd Maste 		case 0:
42135f2336efSEd Maste 			p = "l_int";
42145f2336efSEd Maste 			break;
42155f2336efSEd Maste 		case 1:
42165f2336efSEd Maste 			p = "l_int";
42175f2336efSEd Maste 			break;
42185f2336efSEd Maste 		case 2:
42195f2336efSEd Maste 			p = "l_uint";
42205f2336efSEd Maste 			break;
42215f2336efSEd Maste 		case 3:
42225f2336efSEd Maste 			p = "userland void *";
42235f2336efSEd Maste 			break;
42245f2336efSEd Maste 		default:
42255f2336efSEd Maste 			break;
42265f2336efSEd Maste 		};
42275f2336efSEd Maste 		break;
42285f2336efSEd Maste 	/* setregid */
42295f2336efSEd Maste 	case 143:
42305f2336efSEd Maste 		switch (ndx) {
42315f2336efSEd Maste 		case 0:
42325f2336efSEd Maste 			p = "gid_t";
42335f2336efSEd Maste 			break;
42345f2336efSEd Maste 		case 1:
42355f2336efSEd Maste 			p = "gid_t";
42365f2336efSEd Maste 			break;
42375f2336efSEd Maste 		default:
42385f2336efSEd Maste 			break;
42395f2336efSEd Maste 		};
42405f2336efSEd Maste 		break;
42415f2336efSEd Maste 	/* setgid */
42425f2336efSEd Maste 	case 144:
42435f2336efSEd Maste 		switch (ndx) {
42445f2336efSEd Maste 		case 0:
42455f2336efSEd Maste 			p = "gid_t";
42465f2336efSEd Maste 			break;
42475f2336efSEd Maste 		default:
42485f2336efSEd Maste 			break;
42495f2336efSEd Maste 		};
42505f2336efSEd Maste 		break;
42515f2336efSEd Maste 	/* setreuid */
42525f2336efSEd Maste 	case 145:
42535f2336efSEd Maste 		switch (ndx) {
42545f2336efSEd Maste 		case 0:
42555f2336efSEd Maste 			p = "uid_t";
42565f2336efSEd Maste 			break;
42575f2336efSEd Maste 		case 1:
42585f2336efSEd Maste 			p = "uid_t";
42595f2336efSEd Maste 			break;
42605f2336efSEd Maste 		default:
42615f2336efSEd Maste 			break;
42625f2336efSEd Maste 		};
42635f2336efSEd Maste 		break;
42645f2336efSEd Maste 	/* setuid */
42655f2336efSEd Maste 	case 146:
42665f2336efSEd Maste 		switch (ndx) {
42675f2336efSEd Maste 		case 0:
42685f2336efSEd Maste 			p = "uid_t";
42695f2336efSEd Maste 			break;
42705f2336efSEd Maste 		default:
42715f2336efSEd Maste 			break;
42725f2336efSEd Maste 		};
42735f2336efSEd Maste 		break;
42745f2336efSEd Maste 	/* setresuid */
42755f2336efSEd Maste 	case 147:
42765f2336efSEd Maste 		switch (ndx) {
42775f2336efSEd Maste 		case 0:
42785f2336efSEd Maste 			p = "uid_t";
42795f2336efSEd Maste 			break;
42805f2336efSEd Maste 		case 1:
42815f2336efSEd Maste 			p = "uid_t";
42825f2336efSEd Maste 			break;
42835f2336efSEd Maste 		case 2:
42845f2336efSEd Maste 			p = "uid_t";
42855f2336efSEd Maste 			break;
42865f2336efSEd Maste 		default:
42875f2336efSEd Maste 			break;
42885f2336efSEd Maste 		};
42895f2336efSEd Maste 		break;
42905f2336efSEd Maste 	/* getresuid */
42915f2336efSEd Maste 	case 148:
42925f2336efSEd Maste 		switch (ndx) {
42935f2336efSEd Maste 		case 0:
42945f2336efSEd Maste 			p = "userland uid_t *";
42955f2336efSEd Maste 			break;
42965f2336efSEd Maste 		case 1:
42975f2336efSEd Maste 			p = "userland uid_t *";
42985f2336efSEd Maste 			break;
42995f2336efSEd Maste 		case 2:
43005f2336efSEd Maste 			p = "userland uid_t *";
43015f2336efSEd Maste 			break;
43025f2336efSEd Maste 		default:
43035f2336efSEd Maste 			break;
43045f2336efSEd Maste 		};
43055f2336efSEd Maste 		break;
43065f2336efSEd Maste 	/* setresgid */
43075f2336efSEd Maste 	case 149:
43085f2336efSEd Maste 		switch (ndx) {
43095f2336efSEd Maste 		case 0:
43105f2336efSEd Maste 			p = "gid_t";
43115f2336efSEd Maste 			break;
43125f2336efSEd Maste 		case 1:
43135f2336efSEd Maste 			p = "gid_t";
43145f2336efSEd Maste 			break;
43155f2336efSEd Maste 		case 2:
43165f2336efSEd Maste 			p = "gid_t";
43175f2336efSEd Maste 			break;
43185f2336efSEd Maste 		default:
43195f2336efSEd Maste 			break;
43205f2336efSEd Maste 		};
43215f2336efSEd Maste 		break;
43225f2336efSEd Maste 	/* getresgid */
43235f2336efSEd Maste 	case 150:
43245f2336efSEd Maste 		switch (ndx) {
43255f2336efSEd Maste 		case 0:
43265f2336efSEd Maste 			p = "userland gid_t *";
43275f2336efSEd Maste 			break;
43285f2336efSEd Maste 		case 1:
43295f2336efSEd Maste 			p = "userland gid_t *";
43305f2336efSEd Maste 			break;
43315f2336efSEd Maste 		case 2:
43325f2336efSEd Maste 			p = "userland gid_t *";
43335f2336efSEd Maste 			break;
43345f2336efSEd Maste 		default:
43355f2336efSEd Maste 			break;
43365f2336efSEd Maste 		};
43375f2336efSEd Maste 		break;
43385f2336efSEd Maste 	/* linux_setfsuid */
43395f2336efSEd Maste 	case 151:
43405f2336efSEd Maste 		switch (ndx) {
43415f2336efSEd Maste 		case 0:
43425f2336efSEd Maste 			p = "l_uid_t";
43435f2336efSEd Maste 			break;
43445f2336efSEd Maste 		default:
43455f2336efSEd Maste 			break;
43465f2336efSEd Maste 		};
43475f2336efSEd Maste 		break;
43485f2336efSEd Maste 	/* linux_setfsgid */
43495f2336efSEd Maste 	case 152:
43505f2336efSEd Maste 		switch (ndx) {
43515f2336efSEd Maste 		case 0:
43525f2336efSEd Maste 			p = "l_gid_t";
43535f2336efSEd Maste 			break;
43545f2336efSEd Maste 		default:
43555f2336efSEd Maste 			break;
43565f2336efSEd Maste 		};
43575f2336efSEd Maste 		break;
43585f2336efSEd Maste 	/* linux_times */
43595f2336efSEd Maste 	case 153:
43605f2336efSEd Maste 		switch (ndx) {
43615f2336efSEd Maste 		case 0:
43625f2336efSEd Maste 			p = "userland struct l_times_argv *";
43635f2336efSEd Maste 			break;
43645f2336efSEd Maste 		default:
43655f2336efSEd Maste 			break;
43665f2336efSEd Maste 		};
43675f2336efSEd Maste 		break;
43685f2336efSEd Maste 	/* setpgid */
43695f2336efSEd Maste 	case 154:
43705f2336efSEd Maste 		switch (ndx) {
43715f2336efSEd Maste 		case 0:
43725f2336efSEd Maste 			p = "int";
43735f2336efSEd Maste 			break;
43745f2336efSEd Maste 		case 1:
43755f2336efSEd Maste 			p = "int";
43765f2336efSEd Maste 			break;
43775f2336efSEd Maste 		default:
43785f2336efSEd Maste 			break;
43795f2336efSEd Maste 		};
43805f2336efSEd Maste 		break;
43815f2336efSEd Maste 	/* getpgid */
43825f2336efSEd Maste 	case 155:
43835f2336efSEd Maste 		switch (ndx) {
43845f2336efSEd Maste 		case 0:
43855f2336efSEd Maste 			p = "int";
43865f2336efSEd Maste 			break;
43875f2336efSEd Maste 		default:
43885f2336efSEd Maste 			break;
43895f2336efSEd Maste 		};
43905f2336efSEd Maste 		break;
43915f2336efSEd Maste 	/* linux_getsid */
43925f2336efSEd Maste 	case 156:
43935f2336efSEd Maste 		switch (ndx) {
43945f2336efSEd Maste 		case 0:
43955f2336efSEd Maste 			p = "l_pid_t";
43965f2336efSEd Maste 			break;
43975f2336efSEd Maste 		default:
43985f2336efSEd Maste 			break;
43995f2336efSEd Maste 		};
44005f2336efSEd Maste 		break;
44015f2336efSEd Maste 	/* setsid */
44025f2336efSEd Maste 	case 157:
44035f2336efSEd Maste 		break;
44045f2336efSEd Maste 	/* linux_getgroups */
44055f2336efSEd Maste 	case 158:
44065f2336efSEd Maste 		switch (ndx) {
44075f2336efSEd Maste 		case 0:
44085f2336efSEd Maste 			p = "l_int";
44095f2336efSEd Maste 			break;
44105f2336efSEd Maste 		case 1:
44115f2336efSEd Maste 			p = "userland l_gid_t *";
44125f2336efSEd Maste 			break;
44135f2336efSEd Maste 		default:
44145f2336efSEd Maste 			break;
44155f2336efSEd Maste 		};
44165f2336efSEd Maste 		break;
44175f2336efSEd Maste 	/* linux_setgroups */
44185f2336efSEd Maste 	case 159:
44195f2336efSEd Maste 		switch (ndx) {
44205f2336efSEd Maste 		case 0:
44215f2336efSEd Maste 			p = "l_int";
44225f2336efSEd Maste 			break;
44235f2336efSEd Maste 		case 1:
44245f2336efSEd Maste 			p = "userland l_gid_t *";
44255f2336efSEd Maste 			break;
44265f2336efSEd Maste 		default:
44275f2336efSEd Maste 			break;
44285f2336efSEd Maste 		};
44295f2336efSEd Maste 		break;
44305f2336efSEd Maste 	/* linux_newuname */
44315f2336efSEd Maste 	case 160:
44325f2336efSEd Maste 		switch (ndx) {
44335f2336efSEd Maste 		case 0:
44345f2336efSEd Maste 			p = "userland struct l_new_utsname *";
44355f2336efSEd Maste 			break;
44365f2336efSEd Maste 		default:
44375f2336efSEd Maste 			break;
44385f2336efSEd Maste 		};
44395f2336efSEd Maste 		break;
44405f2336efSEd Maste 	/* linux_sethostname */
44415f2336efSEd Maste 	case 161:
44425f2336efSEd Maste 		switch (ndx) {
44435f2336efSEd Maste 		case 0:
44445f2336efSEd Maste 			p = "userland char *";
44455f2336efSEd Maste 			break;
44465f2336efSEd Maste 		case 1:
44475f2336efSEd Maste 			p = "l_uint";
44485f2336efSEd Maste 			break;
44495f2336efSEd Maste 		default:
44505f2336efSEd Maste 			break;
44515f2336efSEd Maste 		};
44525f2336efSEd Maste 		break;
44535f2336efSEd Maste 	/* linux_setdomainname */
44545f2336efSEd Maste 	case 162:
44555f2336efSEd Maste 		switch (ndx) {
44565f2336efSEd Maste 		case 0:
44575f2336efSEd Maste 			p = "userland char *";
44585f2336efSEd Maste 			break;
44595f2336efSEd Maste 		case 1:
44605f2336efSEd Maste 			p = "l_int";
44615f2336efSEd Maste 			break;
44625f2336efSEd Maste 		default:
44635f2336efSEd Maste 			break;
44645f2336efSEd Maste 		};
44655f2336efSEd Maste 		break;
44665f2336efSEd Maste 	/* linux_getrlimit */
44675f2336efSEd Maste 	case 163:
44685f2336efSEd Maste 		switch (ndx) {
44695f2336efSEd Maste 		case 0:
44705f2336efSEd Maste 			p = "l_uint";
44715f2336efSEd Maste 			break;
44725f2336efSEd Maste 		case 1:
44735f2336efSEd Maste 			p = "userland struct l_rlimit *";
44745f2336efSEd Maste 			break;
44755f2336efSEd Maste 		default:
44765f2336efSEd Maste 			break;
44775f2336efSEd Maste 		};
44785f2336efSEd Maste 		break;
44795f2336efSEd Maste 	/* linux_setrlimit */
44805f2336efSEd Maste 	case 164:
44815f2336efSEd Maste 		switch (ndx) {
44825f2336efSEd Maste 		case 0:
44835f2336efSEd Maste 			p = "l_uint";
44845f2336efSEd Maste 			break;
44855f2336efSEd Maste 		case 1:
44865f2336efSEd Maste 			p = "userland struct l_rlimit *";
44875f2336efSEd Maste 			break;
44885f2336efSEd Maste 		default:
44895f2336efSEd Maste 			break;
44905f2336efSEd Maste 		};
44915f2336efSEd Maste 		break;
44925f2336efSEd Maste 	/* getrusage */
44935f2336efSEd Maste 	case 165:
44945f2336efSEd Maste 		switch (ndx) {
44955f2336efSEd Maste 		case 0:
44965f2336efSEd Maste 			p = "int";
44975f2336efSEd Maste 			break;
44985f2336efSEd Maste 		case 1:
44995f2336efSEd Maste 			p = "userland struct rusage *";
45005f2336efSEd Maste 			break;
45015f2336efSEd Maste 		default:
45025f2336efSEd Maste 			break;
45035f2336efSEd Maste 		};
45045f2336efSEd Maste 		break;
45055f2336efSEd Maste 	/* umask */
45065f2336efSEd Maste 	case 166:
45075f2336efSEd Maste 		switch (ndx) {
45085f2336efSEd Maste 		case 0:
45095f2336efSEd Maste 			p = "int";
45105f2336efSEd Maste 			break;
45115f2336efSEd Maste 		default:
45125f2336efSEd Maste 			break;
45135f2336efSEd Maste 		};
45145f2336efSEd Maste 		break;
45155f2336efSEd Maste 	/* linux_prctl */
45165f2336efSEd Maste 	case 167:
45175f2336efSEd Maste 		switch (ndx) {
45185f2336efSEd Maste 		case 0:
45195f2336efSEd Maste 			p = "l_int";
45205f2336efSEd Maste 			break;
45215f2336efSEd Maste 		case 1:
45225f2336efSEd Maste 			p = "l_uintptr_t";
45235f2336efSEd Maste 			break;
45245f2336efSEd Maste 		case 2:
45255f2336efSEd Maste 			p = "l_uintptr_t";
45265f2336efSEd Maste 			break;
45275f2336efSEd Maste 		case 3:
45285f2336efSEd Maste 			p = "l_uintptr_t";
45295f2336efSEd Maste 			break;
45305f2336efSEd Maste 		case 4:
45315f2336efSEd Maste 			p = "l_uintptr_t";
45325f2336efSEd Maste 			break;
45335f2336efSEd Maste 		default:
45345f2336efSEd Maste 			break;
45355f2336efSEd Maste 		};
45365f2336efSEd Maste 		break;
45375f2336efSEd Maste 	/* linux_getcpu */
45385f2336efSEd Maste 	case 168:
45395f2336efSEd Maste 		switch (ndx) {
45405f2336efSEd Maste 		case 0:
45415f2336efSEd Maste 			p = "userland l_uint *";
45425f2336efSEd Maste 			break;
45435f2336efSEd Maste 		case 1:
45445f2336efSEd Maste 			p = "userland l_uint *";
45455f2336efSEd Maste 			break;
45465f2336efSEd Maste 		case 2:
45475f2336efSEd Maste 			p = "userland void *";
45485f2336efSEd Maste 			break;
45495f2336efSEd Maste 		default:
45505f2336efSEd Maste 			break;
45515f2336efSEd Maste 		};
45525f2336efSEd Maste 		break;
45535f2336efSEd Maste 	/* gettimeofday */
45545f2336efSEd Maste 	case 169:
45555f2336efSEd Maste 		switch (ndx) {
45565f2336efSEd Maste 		case 0:
45575f2336efSEd Maste 			p = "userland struct l_timeval *";
45585f2336efSEd Maste 			break;
45595f2336efSEd Maste 		case 1:
45605f2336efSEd Maste 			p = "userland struct timezone *";
45615f2336efSEd Maste 			break;
45625f2336efSEd Maste 		default:
45635f2336efSEd Maste 			break;
45645f2336efSEd Maste 		};
45655f2336efSEd Maste 		break;
45665f2336efSEd Maste 	/* settimeofday */
45675f2336efSEd Maste 	case 170:
45685f2336efSEd Maste 		switch (ndx) {
45695f2336efSEd Maste 		case 0:
45705f2336efSEd Maste 			p = "userland struct l_timeval *";
45715f2336efSEd Maste 			break;
45725f2336efSEd Maste 		case 1:
45735f2336efSEd Maste 			p = "userland struct timezone *";
45745f2336efSEd Maste 			break;
45755f2336efSEd Maste 		default:
45765f2336efSEd Maste 			break;
45775f2336efSEd Maste 		};
45785f2336efSEd Maste 		break;
45795f2336efSEd Maste 	/* linux_adjtimex */
45805f2336efSEd Maste 	case 171:
45815f2336efSEd Maste 		break;
45825f2336efSEd Maste 	/* linux_getpid */
45835f2336efSEd Maste 	case 172:
45845f2336efSEd Maste 		break;
45855f2336efSEd Maste 	/* linux_getppid */
45865f2336efSEd Maste 	case 173:
45875f2336efSEd Maste 		break;
45885f2336efSEd Maste 	/* linux_getuid */
45895f2336efSEd Maste 	case 174:
45905f2336efSEd Maste 		break;
45915f2336efSEd Maste 	/* geteuid */
45925f2336efSEd Maste 	case 175:
45935f2336efSEd Maste 		break;
45945f2336efSEd Maste 	/* linux_getgid */
45955f2336efSEd Maste 	case 176:
45965f2336efSEd Maste 		break;
45975f2336efSEd Maste 	/* getegid */
45985f2336efSEd Maste 	case 177:
45995f2336efSEd Maste 		break;
46005f2336efSEd Maste 	/* linux_gettid */
46015f2336efSEd Maste 	case 178:
46025f2336efSEd Maste 		break;
46035f2336efSEd Maste 	/* linux_sysinfo */
46045f2336efSEd Maste 	case 179:
46055f2336efSEd Maste 		switch (ndx) {
46065f2336efSEd Maste 		case 0:
46075f2336efSEd Maste 			p = "userland struct l_sysinfo *";
46085f2336efSEd Maste 			break;
46095f2336efSEd Maste 		default:
46105f2336efSEd Maste 			break;
46115f2336efSEd Maste 		};
46125f2336efSEd Maste 		break;
46135f2336efSEd Maste 	/* linux_mq_open */
46145f2336efSEd Maste 	case 180:
4615a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
4616a39cdcd7SEdward Tomasz Napierala 		case 0:
4617a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
4618a39cdcd7SEdward Tomasz Napierala 			break;
4619a39cdcd7SEdward Tomasz Napierala 		case 1:
4620a39cdcd7SEdward Tomasz Napierala 			p = "l_int";
4621a39cdcd7SEdward Tomasz Napierala 			break;
4622a39cdcd7SEdward Tomasz Napierala 		case 2:
4623a39cdcd7SEdward Tomasz Napierala 			p = "l_mode_t";
4624a39cdcd7SEdward Tomasz Napierala 			break;
4625a39cdcd7SEdward Tomasz Napierala 		case 3:
4626a39cdcd7SEdward Tomasz Napierala 			p = "userland struct mq_attr *";
4627a39cdcd7SEdward Tomasz Napierala 			break;
4628a39cdcd7SEdward Tomasz Napierala 		default:
4629a39cdcd7SEdward Tomasz Napierala 			break;
4630a39cdcd7SEdward Tomasz Napierala 		};
46315f2336efSEd Maste 		break;
46325f2336efSEd Maste 	/* linux_mq_unlink */
46335f2336efSEd Maste 	case 181:
4634a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
4635a39cdcd7SEdward Tomasz Napierala 		case 0:
4636a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
4637a39cdcd7SEdward Tomasz Napierala 			break;
4638a39cdcd7SEdward Tomasz Napierala 		default:
4639a39cdcd7SEdward Tomasz Napierala 			break;
4640a39cdcd7SEdward Tomasz Napierala 		};
46415f2336efSEd Maste 		break;
46425f2336efSEd Maste 	/* linux_mq_timedsend */
46435f2336efSEd Maste 	case 182:
4644a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
4645a39cdcd7SEdward Tomasz Napierala 		case 0:
4646a39cdcd7SEdward Tomasz Napierala 			p = "l_mqd_t";
4647a39cdcd7SEdward Tomasz Napierala 			break;
4648a39cdcd7SEdward Tomasz Napierala 		case 1:
4649a39cdcd7SEdward Tomasz Napierala 			p = "userland const char *";
4650a39cdcd7SEdward Tomasz Napierala 			break;
4651a39cdcd7SEdward Tomasz Napierala 		case 2:
4652a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
4653a39cdcd7SEdward Tomasz Napierala 			break;
4654a39cdcd7SEdward Tomasz Napierala 		case 3:
4655a39cdcd7SEdward Tomasz Napierala 			p = "l_uint";
4656a39cdcd7SEdward Tomasz Napierala 			break;
4657a39cdcd7SEdward Tomasz Napierala 		case 4:
4658a39cdcd7SEdward Tomasz Napierala 			p = "userland const struct l_timespec *";
4659a39cdcd7SEdward Tomasz Napierala 			break;
4660a39cdcd7SEdward Tomasz Napierala 		default:
4661a39cdcd7SEdward Tomasz Napierala 			break;
4662a39cdcd7SEdward Tomasz Napierala 		};
46635f2336efSEd Maste 		break;
46645f2336efSEd Maste 	/* linux_mq_timedreceive */
46655f2336efSEd Maste 	case 183:
4666a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
4667a39cdcd7SEdward Tomasz Napierala 		case 0:
4668a39cdcd7SEdward Tomasz Napierala 			p = "l_mqd_t";
4669a39cdcd7SEdward Tomasz Napierala 			break;
4670a39cdcd7SEdward Tomasz Napierala 		case 1:
4671a39cdcd7SEdward Tomasz Napierala 			p = "userland char *";
4672a39cdcd7SEdward Tomasz Napierala 			break;
4673a39cdcd7SEdward Tomasz Napierala 		case 2:
4674a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
4675a39cdcd7SEdward Tomasz Napierala 			break;
4676a39cdcd7SEdward Tomasz Napierala 		case 3:
4677a39cdcd7SEdward Tomasz Napierala 			p = "userland l_uint *";
4678a39cdcd7SEdward Tomasz Napierala 			break;
4679a39cdcd7SEdward Tomasz Napierala 		case 4:
4680a39cdcd7SEdward Tomasz Napierala 			p = "userland const struct l_timespec *";
4681a39cdcd7SEdward Tomasz Napierala 			break;
4682a39cdcd7SEdward Tomasz Napierala 		default:
4683a39cdcd7SEdward Tomasz Napierala 			break;
4684a39cdcd7SEdward Tomasz Napierala 		};
46855f2336efSEd Maste 		break;
46865f2336efSEd Maste 	/* linux_mq_notify */
46875f2336efSEd Maste 	case 184:
4688a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
4689a39cdcd7SEdward Tomasz Napierala 		case 0:
4690a39cdcd7SEdward Tomasz Napierala 			p = "l_mqd_t";
4691a39cdcd7SEdward Tomasz Napierala 			break;
4692a39cdcd7SEdward Tomasz Napierala 		case 1:
4693a39cdcd7SEdward Tomasz Napierala 			p = "userland const struct l_timespec *";
4694a39cdcd7SEdward Tomasz Napierala 			break;
4695a39cdcd7SEdward Tomasz Napierala 		default:
4696a39cdcd7SEdward Tomasz Napierala 			break;
4697a39cdcd7SEdward Tomasz Napierala 		};
46985f2336efSEd Maste 		break;
46995f2336efSEd Maste 	/* linux_mq_getsetattr */
47005f2336efSEd Maste 	case 185:
4701a39cdcd7SEdward Tomasz Napierala 		switch (ndx) {
4702a39cdcd7SEdward Tomasz Napierala 		case 0:
4703a39cdcd7SEdward Tomasz Napierala 			p = "l_mqd_t";
4704a39cdcd7SEdward Tomasz Napierala 			break;
4705a39cdcd7SEdward Tomasz Napierala 		case 1:
4706a39cdcd7SEdward Tomasz Napierala 			p = "userland const struct mq_attr *";
4707a39cdcd7SEdward Tomasz Napierala 			break;
4708a39cdcd7SEdward Tomasz Napierala 		case 2:
4709a39cdcd7SEdward Tomasz Napierala 			p = "userland struct mq_attr *";
4710a39cdcd7SEdward Tomasz Napierala 			break;
4711a39cdcd7SEdward Tomasz Napierala 		default:
4712a39cdcd7SEdward Tomasz Napierala 			break;
4713a39cdcd7SEdward Tomasz Napierala 		};
47145f2336efSEd Maste 		break;
47155f2336efSEd Maste 	/* linux_msgget */
47165f2336efSEd Maste 	case 186:
47175f2336efSEd Maste 		switch (ndx) {
47185f2336efSEd Maste 		case 0:
47195f2336efSEd Maste 			p = "l_key_t";
47205f2336efSEd Maste 			break;
47215f2336efSEd Maste 		case 1:
47225f2336efSEd Maste 			p = "l_int";
47235f2336efSEd Maste 			break;
47245f2336efSEd Maste 		default:
47255f2336efSEd Maste 			break;
47265f2336efSEd Maste 		};
47275f2336efSEd Maste 		break;
47285f2336efSEd Maste 	/* linux_msgctl */
47295f2336efSEd Maste 	case 187:
47305f2336efSEd Maste 		switch (ndx) {
47315f2336efSEd Maste 		case 0:
47325f2336efSEd Maste 			p = "l_int";
47335f2336efSEd Maste 			break;
47345f2336efSEd Maste 		case 1:
47355f2336efSEd Maste 			p = "l_int";
47365f2336efSEd Maste 			break;
47375f2336efSEd Maste 		case 2:
47385f2336efSEd Maste 			p = "userland struct l_msqid_ds *";
47395f2336efSEd Maste 			break;
47405f2336efSEd Maste 		default:
47415f2336efSEd Maste 			break;
47425f2336efSEd Maste 		};
47435f2336efSEd Maste 		break;
47445f2336efSEd Maste 	/* linux_msgrcv */
47455f2336efSEd Maste 	case 188:
47465f2336efSEd Maste 		switch (ndx) {
47475f2336efSEd Maste 		case 0:
47485f2336efSEd Maste 			p = "l_int";
47495f2336efSEd Maste 			break;
47505f2336efSEd Maste 		case 1:
47515f2336efSEd Maste 			p = "userland struct l_msgbuf *";
47525f2336efSEd Maste 			break;
47535f2336efSEd Maste 		case 2:
47545f2336efSEd Maste 			p = "l_size_t";
47555f2336efSEd Maste 			break;
47565f2336efSEd Maste 		case 3:
47575f2336efSEd Maste 			p = "l_long";
47585f2336efSEd Maste 			break;
47595f2336efSEd Maste 		case 4:
47605f2336efSEd Maste 			p = "l_int";
47615f2336efSEd Maste 			break;
47625f2336efSEd Maste 		default:
47635f2336efSEd Maste 			break;
47645f2336efSEd Maste 		};
47655f2336efSEd Maste 		break;
47665f2336efSEd Maste 	/* linux_msgsnd */
47675f2336efSEd Maste 	case 189:
47685f2336efSEd Maste 		switch (ndx) {
47695f2336efSEd Maste 		case 0:
47705f2336efSEd Maste 			p = "l_int";
47715f2336efSEd Maste 			break;
47725f2336efSEd Maste 		case 1:
47735f2336efSEd Maste 			p = "userland struct l_msgbuf *";
47745f2336efSEd Maste 			break;
47755f2336efSEd Maste 		case 2:
47765f2336efSEd Maste 			p = "l_size_t";
47775f2336efSEd Maste 			break;
47785f2336efSEd Maste 		case 3:
47795f2336efSEd Maste 			p = "l_int";
47805f2336efSEd Maste 			break;
47815f2336efSEd Maste 		default:
47825f2336efSEd Maste 			break;
47835f2336efSEd Maste 		};
47845f2336efSEd Maste 		break;
47855f2336efSEd Maste 	/* linux_semget */
47865f2336efSEd Maste 	case 190:
47875f2336efSEd Maste 		switch (ndx) {
47885f2336efSEd Maste 		case 0:
47895f2336efSEd Maste 			p = "l_key_t";
47905f2336efSEd Maste 			break;
47915f2336efSEd Maste 		case 1:
47925f2336efSEd Maste 			p = "l_int";
47935f2336efSEd Maste 			break;
47945f2336efSEd Maste 		case 2:
47955f2336efSEd Maste 			p = "l_int";
47965f2336efSEd Maste 			break;
47975f2336efSEd Maste 		default:
47985f2336efSEd Maste 			break;
47995f2336efSEd Maste 		};
48005f2336efSEd Maste 		break;
48015f2336efSEd Maste 	/* linux_semctl */
48025f2336efSEd Maste 	case 191:
48035f2336efSEd Maste 		switch (ndx) {
48045f2336efSEd Maste 		case 0:
48055f2336efSEd Maste 			p = "l_int";
48065f2336efSEd Maste 			break;
48075f2336efSEd Maste 		case 1:
48085f2336efSEd Maste 			p = "l_int";
48095f2336efSEd Maste 			break;
48105f2336efSEd Maste 		case 2:
48115f2336efSEd Maste 			p = "l_int";
48125f2336efSEd Maste 			break;
48135f2336efSEd Maste 		case 3:
48145f2336efSEd Maste 			p = "union l_semun";
48155f2336efSEd Maste 			break;
48165f2336efSEd Maste 		default:
48175f2336efSEd Maste 			break;
48185f2336efSEd Maste 		};
48195f2336efSEd Maste 		break;
48205f2336efSEd Maste 	/* linux_semtimedop */
48215f2336efSEd Maste 	case 192:
48225f2336efSEd Maste 		break;
48235f2336efSEd Maste 	/* linux_semop */
48245f2336efSEd Maste 	case 193:
48255f2336efSEd Maste 		switch (ndx) {
48265f2336efSEd Maste 		case 0:
48275f2336efSEd Maste 			p = "l_int";
48285f2336efSEd Maste 			break;
48295f2336efSEd Maste 		case 1:
48305f2336efSEd Maste 			p = "userland struct l_sembuf *";
48315f2336efSEd Maste 			break;
48325f2336efSEd Maste 		case 2:
48335f2336efSEd Maste 			p = "l_uint";
48345f2336efSEd Maste 			break;
48355f2336efSEd Maste 		default:
48365f2336efSEd Maste 			break;
48375f2336efSEd Maste 		};
48385f2336efSEd Maste 		break;
48395f2336efSEd Maste 	/* linux_shmget */
48405f2336efSEd Maste 	case 194:
48415f2336efSEd Maste 		switch (ndx) {
48425f2336efSEd Maste 		case 0:
48435f2336efSEd Maste 			p = "l_key_t";
48445f2336efSEd Maste 			break;
48455f2336efSEd Maste 		case 1:
48465f2336efSEd Maste 			p = "l_size_t";
48475f2336efSEd Maste 			break;
48485f2336efSEd Maste 		case 2:
48495f2336efSEd Maste 			p = "l_int";
48505f2336efSEd Maste 			break;
48515f2336efSEd Maste 		default:
48525f2336efSEd Maste 			break;
48535f2336efSEd Maste 		};
48545f2336efSEd Maste 		break;
48555f2336efSEd Maste 	/* linux_shmctl */
48565f2336efSEd Maste 	case 195:
48575f2336efSEd Maste 		switch (ndx) {
48585f2336efSEd Maste 		case 0:
48595f2336efSEd Maste 			p = "l_int";
48605f2336efSEd Maste 			break;
48615f2336efSEd Maste 		case 1:
48625f2336efSEd Maste 			p = "l_int";
48635f2336efSEd Maste 			break;
48645f2336efSEd Maste 		case 2:
48655f2336efSEd Maste 			p = "userland struct l_shmid_ds *";
48665f2336efSEd Maste 			break;
48675f2336efSEd Maste 		default:
48685f2336efSEd Maste 			break;
48695f2336efSEd Maste 		};
48705f2336efSEd Maste 		break;
48715f2336efSEd Maste 	/* linux_shmat */
48725f2336efSEd Maste 	case 196:
48735f2336efSEd Maste 		switch (ndx) {
48745f2336efSEd Maste 		case 0:
48755f2336efSEd Maste 			p = "l_int";
48765f2336efSEd Maste 			break;
48775f2336efSEd Maste 		case 1:
48785f2336efSEd Maste 			p = "userland char *";
48795f2336efSEd Maste 			break;
48805f2336efSEd Maste 		case 2:
48815f2336efSEd Maste 			p = "l_int";
48825f2336efSEd Maste 			break;
48835f2336efSEd Maste 		default:
48845f2336efSEd Maste 			break;
48855f2336efSEd Maste 		};
48865f2336efSEd Maste 		break;
48875f2336efSEd Maste 	/* linux_shmdt */
48885f2336efSEd Maste 	case 197:
48895f2336efSEd Maste 		switch (ndx) {
48905f2336efSEd Maste 		case 0:
48915f2336efSEd Maste 			p = "userland char *";
48925f2336efSEd Maste 			break;
48935f2336efSEd Maste 		default:
48945f2336efSEd Maste 			break;
48955f2336efSEd Maste 		};
48965f2336efSEd Maste 		break;
48975f2336efSEd Maste 	/* linux_socket */
48985f2336efSEd Maste 	case 198:
48995f2336efSEd Maste 		switch (ndx) {
49005f2336efSEd Maste 		case 0:
49015f2336efSEd Maste 			p = "l_int";
49025f2336efSEd Maste 			break;
49035f2336efSEd Maste 		case 1:
49045f2336efSEd Maste 			p = "l_int";
49055f2336efSEd Maste 			break;
49065f2336efSEd Maste 		case 2:
49075f2336efSEd Maste 			p = "l_int";
49085f2336efSEd Maste 			break;
49095f2336efSEd Maste 		default:
49105f2336efSEd Maste 			break;
49115f2336efSEd Maste 		};
49125f2336efSEd Maste 		break;
49135f2336efSEd Maste 	/* linux_socketpair */
49145f2336efSEd Maste 	case 199:
49155f2336efSEd Maste 		switch (ndx) {
49165f2336efSEd Maste 		case 0:
49175f2336efSEd Maste 			p = "l_int";
49185f2336efSEd Maste 			break;
49195f2336efSEd Maste 		case 1:
49205f2336efSEd Maste 			p = "l_int";
49215f2336efSEd Maste 			break;
49225f2336efSEd Maste 		case 2:
49235f2336efSEd Maste 			p = "l_int";
49245f2336efSEd Maste 			break;
49255f2336efSEd Maste 		case 3:
49265f2336efSEd Maste 			p = "l_uintptr_t";
49275f2336efSEd Maste 			break;
49285f2336efSEd Maste 		default:
49295f2336efSEd Maste 			break;
49305f2336efSEd Maste 		};
49315f2336efSEd Maste 		break;
49325f2336efSEd Maste 	/* linux_bind */
49335f2336efSEd Maste 	case 200:
49345f2336efSEd Maste 		switch (ndx) {
49355f2336efSEd Maste 		case 0:
49365f2336efSEd Maste 			p = "l_int";
49375f2336efSEd Maste 			break;
49385f2336efSEd Maste 		case 1:
49395f2336efSEd Maste 			p = "l_uintptr_t";
49405f2336efSEd Maste 			break;
49415f2336efSEd Maste 		case 2:
49425f2336efSEd Maste 			p = "l_int";
49435f2336efSEd Maste 			break;
49445f2336efSEd Maste 		default:
49455f2336efSEd Maste 			break;
49465f2336efSEd Maste 		};
49475f2336efSEd Maste 		break;
49485f2336efSEd Maste 	/* linux_listen */
49495f2336efSEd Maste 	case 201:
49505f2336efSEd Maste 		switch (ndx) {
49515f2336efSEd Maste 		case 0:
49525f2336efSEd Maste 			p = "l_int";
49535f2336efSEd Maste 			break;
49545f2336efSEd Maste 		case 1:
49555f2336efSEd Maste 			p = "l_int";
49565f2336efSEd Maste 			break;
49575f2336efSEd Maste 		default:
49585f2336efSEd Maste 			break;
49595f2336efSEd Maste 		};
49605f2336efSEd Maste 		break;
49615f2336efSEd Maste 	/* linux_accept */
49625f2336efSEd Maste 	case 202:
49635f2336efSEd Maste 		switch (ndx) {
49645f2336efSEd Maste 		case 0:
49655f2336efSEd Maste 			p = "l_int";
49665f2336efSEd Maste 			break;
49675f2336efSEd Maste 		case 1:
49685f2336efSEd Maste 			p = "l_uintptr_t";
49695f2336efSEd Maste 			break;
49705f2336efSEd Maste 		case 2:
49715f2336efSEd Maste 			p = "l_uintptr_t";
49725f2336efSEd Maste 			break;
49735f2336efSEd Maste 		default:
49745f2336efSEd Maste 			break;
49755f2336efSEd Maste 		};
49765f2336efSEd Maste 		break;
49775f2336efSEd Maste 	/* linux_connect */
49785f2336efSEd Maste 	case 203:
49795f2336efSEd Maste 		switch (ndx) {
49805f2336efSEd Maste 		case 0:
49815f2336efSEd Maste 			p = "l_int";
49825f2336efSEd Maste 			break;
49835f2336efSEd Maste 		case 1:
49845f2336efSEd Maste 			p = "l_uintptr_t";
49855f2336efSEd Maste 			break;
49865f2336efSEd Maste 		case 2:
49875f2336efSEd Maste 			p = "l_int";
49885f2336efSEd Maste 			break;
49895f2336efSEd Maste 		default:
49905f2336efSEd Maste 			break;
49915f2336efSEd Maste 		};
49925f2336efSEd Maste 		break;
49935f2336efSEd Maste 	/* linux_getsockname */
49945f2336efSEd Maste 	case 204:
49955f2336efSEd Maste 		switch (ndx) {
49965f2336efSEd Maste 		case 0:
49975f2336efSEd Maste 			p = "l_int";
49985f2336efSEd Maste 			break;
49995f2336efSEd Maste 		case 1:
50005f2336efSEd Maste 			p = "l_uintptr_t";
50015f2336efSEd Maste 			break;
50025f2336efSEd Maste 		case 2:
50035f2336efSEd Maste 			p = "l_uintptr_t";
50045f2336efSEd Maste 			break;
50055f2336efSEd Maste 		default:
50065f2336efSEd Maste 			break;
50075f2336efSEd Maste 		};
50085f2336efSEd Maste 		break;
50095f2336efSEd Maste 	/* linux_getpeername */
50105f2336efSEd Maste 	case 205:
50115f2336efSEd Maste 		switch (ndx) {
50125f2336efSEd Maste 		case 0:
50135f2336efSEd Maste 			p = "l_int";
50145f2336efSEd Maste 			break;
50155f2336efSEd Maste 		case 1:
50165f2336efSEd Maste 			p = "l_uintptr_t";
50175f2336efSEd Maste 			break;
50185f2336efSEd Maste 		case 2:
50195f2336efSEd Maste 			p = "l_uintptr_t";
50205f2336efSEd Maste 			break;
50215f2336efSEd Maste 		default:
50225f2336efSEd Maste 			break;
50235f2336efSEd Maste 		};
50245f2336efSEd Maste 		break;
50255f2336efSEd Maste 	/* linux_sendto */
50265f2336efSEd Maste 	case 206:
50275f2336efSEd Maste 		switch (ndx) {
50285f2336efSEd Maste 		case 0:
50295f2336efSEd Maste 			p = "l_int";
50305f2336efSEd Maste 			break;
50315f2336efSEd Maste 		case 1:
50325f2336efSEd Maste 			p = "l_uintptr_t";
50335f2336efSEd Maste 			break;
50345f2336efSEd Maste 		case 2:
5035a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
50365f2336efSEd Maste 			break;
50375f2336efSEd Maste 		case 3:
5038a39cdcd7SEdward Tomasz Napierala 			p = "l_uint";
50395f2336efSEd Maste 			break;
50405f2336efSEd Maste 		case 4:
50415f2336efSEd Maste 			p = "l_uintptr_t";
50425f2336efSEd Maste 			break;
50435f2336efSEd Maste 		case 5:
50445f2336efSEd Maste 			p = "l_int";
50455f2336efSEd Maste 			break;
50465f2336efSEd Maste 		default:
50475f2336efSEd Maste 			break;
50485f2336efSEd Maste 		};
50495f2336efSEd Maste 		break;
50505f2336efSEd Maste 	/* linux_recvfrom */
50515f2336efSEd Maste 	case 207:
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_size_t";
50615f2336efSEd Maste 			break;
50625f2336efSEd Maste 		case 3:
5063a39cdcd7SEdward Tomasz Napierala 			p = "l_uint";
50645f2336efSEd Maste 			break;
50655f2336efSEd Maste 		case 4:
50665f2336efSEd Maste 			p = "l_uintptr_t";
50675f2336efSEd Maste 			break;
50685f2336efSEd Maste 		case 5:
50695f2336efSEd Maste 			p = "l_uintptr_t";
50705f2336efSEd Maste 			break;
50715f2336efSEd Maste 		default:
50725f2336efSEd Maste 			break;
50735f2336efSEd Maste 		};
50745f2336efSEd Maste 		break;
50755f2336efSEd Maste 	/* linux_setsockopt */
50765f2336efSEd Maste 	case 208:
50775f2336efSEd Maste 		switch (ndx) {
50785f2336efSEd Maste 		case 0:
50795f2336efSEd Maste 			p = "l_int";
50805f2336efSEd Maste 			break;
50815f2336efSEd Maste 		case 1:
50825f2336efSEd Maste 			p = "l_int";
50835f2336efSEd Maste 			break;
50845f2336efSEd Maste 		case 2:
50855f2336efSEd Maste 			p = "l_int";
50865f2336efSEd Maste 			break;
50875f2336efSEd Maste 		case 3:
50885f2336efSEd Maste 			p = "l_uintptr_t";
50895f2336efSEd Maste 			break;
50905f2336efSEd Maste 		case 4:
50915f2336efSEd Maste 			p = "l_int";
50925f2336efSEd Maste 			break;
50935f2336efSEd Maste 		default:
50945f2336efSEd Maste 			break;
50955f2336efSEd Maste 		};
50965f2336efSEd Maste 		break;
50975f2336efSEd Maste 	/* linux_getsockopt */
50985f2336efSEd Maste 	case 209:
50995f2336efSEd Maste 		switch (ndx) {
51005f2336efSEd Maste 		case 0:
51015f2336efSEd Maste 			p = "l_int";
51025f2336efSEd Maste 			break;
51035f2336efSEd Maste 		case 1:
51045f2336efSEd Maste 			p = "l_int";
51055f2336efSEd Maste 			break;
51065f2336efSEd Maste 		case 2:
51075f2336efSEd Maste 			p = "l_int";
51085f2336efSEd Maste 			break;
51095f2336efSEd Maste 		case 3:
51105f2336efSEd Maste 			p = "l_uintptr_t";
51115f2336efSEd Maste 			break;
51125f2336efSEd Maste 		case 4:
51135f2336efSEd Maste 			p = "l_uintptr_t";
51145f2336efSEd Maste 			break;
51155f2336efSEd Maste 		default:
51165f2336efSEd Maste 			break;
51175f2336efSEd Maste 		};
51185f2336efSEd Maste 		break;
51195f2336efSEd Maste 	/* linux_shutdown */
51205f2336efSEd Maste 	case 210:
51215f2336efSEd Maste 		switch (ndx) {
51225f2336efSEd Maste 		case 0:
51235f2336efSEd Maste 			p = "l_int";
51245f2336efSEd Maste 			break;
51255f2336efSEd Maste 		case 1:
51265f2336efSEd Maste 			p = "l_int";
51275f2336efSEd Maste 			break;
51285f2336efSEd Maste 		default:
51295f2336efSEd Maste 			break;
51305f2336efSEd Maste 		};
51315f2336efSEd Maste 		break;
51325f2336efSEd Maste 	/* linux_sendmsg */
51335f2336efSEd Maste 	case 211:
51345f2336efSEd Maste 		switch (ndx) {
51355f2336efSEd Maste 		case 0:
51365f2336efSEd Maste 			p = "l_int";
51375f2336efSEd Maste 			break;
51385f2336efSEd Maste 		case 1:
51395f2336efSEd Maste 			p = "l_uintptr_t";
51405f2336efSEd Maste 			break;
51415f2336efSEd Maste 		case 2:
5142a39cdcd7SEdward Tomasz Napierala 			p = "l_uint";
51435f2336efSEd Maste 			break;
51445f2336efSEd Maste 		default:
51455f2336efSEd Maste 			break;
51465f2336efSEd Maste 		};
51475f2336efSEd Maste 		break;
51485f2336efSEd Maste 	/* linux_recvmsg */
51495f2336efSEd Maste 	case 212:
51505f2336efSEd Maste 		switch (ndx) {
51515f2336efSEd Maste 		case 0:
51525f2336efSEd Maste 			p = "l_int";
51535f2336efSEd Maste 			break;
51545f2336efSEd Maste 		case 1:
51555f2336efSEd Maste 			p = "l_uintptr_t";
51565f2336efSEd Maste 			break;
51575f2336efSEd Maste 		case 2:
5158a39cdcd7SEdward Tomasz Napierala 			p = "l_uint";
51595f2336efSEd Maste 			break;
51605f2336efSEd Maste 		default:
51615f2336efSEd Maste 			break;
51625f2336efSEd Maste 		};
51635f2336efSEd Maste 		break;
51645f2336efSEd Maste 	/* linux_brk */
51655f2336efSEd Maste 	case 214:
51665f2336efSEd Maste 		switch (ndx) {
51675f2336efSEd Maste 		case 0:
51685f2336efSEd Maste 			p = "l_ulong";
51695f2336efSEd Maste 			break;
51705f2336efSEd Maste 		default:
51715f2336efSEd Maste 			break;
51725f2336efSEd Maste 		};
51735f2336efSEd Maste 		break;
51745f2336efSEd Maste 	/* munmap */
51755f2336efSEd Maste 	case 215:
51765f2336efSEd Maste 		switch (ndx) {
51775f2336efSEd Maste 		case 0:
5178a39cdcd7SEdward Tomasz Napierala 			p = "userland void *";
51795f2336efSEd Maste 			break;
51805f2336efSEd Maste 		case 1:
5181a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
51825f2336efSEd Maste 			break;
51835f2336efSEd Maste 		default:
51845f2336efSEd Maste 			break;
51855f2336efSEd Maste 		};
51865f2336efSEd Maste 		break;
51875f2336efSEd Maste 	/* linux_mremap */
51885f2336efSEd Maste 	case 216:
51895f2336efSEd Maste 		switch (ndx) {
51905f2336efSEd Maste 		case 0:
51915f2336efSEd Maste 			p = "l_ulong";
51925f2336efSEd Maste 			break;
51935f2336efSEd Maste 		case 1:
51945f2336efSEd Maste 			p = "l_ulong";
51955f2336efSEd Maste 			break;
51965f2336efSEd Maste 		case 2:
51975f2336efSEd Maste 			p = "l_ulong";
51985f2336efSEd Maste 			break;
51995f2336efSEd Maste 		case 3:
52005f2336efSEd Maste 			p = "l_ulong";
52015f2336efSEd Maste 			break;
52025f2336efSEd Maste 		case 4:
52035f2336efSEd Maste 			p = "l_ulong";
52045f2336efSEd Maste 			break;
52055f2336efSEd Maste 		default:
52065f2336efSEd Maste 			break;
52075f2336efSEd Maste 		};
52085f2336efSEd Maste 		break;
52095f2336efSEd Maste 	/* linux_add_key */
52105f2336efSEd Maste 	case 217:
52115f2336efSEd Maste 		break;
52125f2336efSEd Maste 	/* linux_request_key */
52135f2336efSEd Maste 	case 218:
52145f2336efSEd Maste 		break;
52155f2336efSEd Maste 	/* linux_keyctl */
52165f2336efSEd Maste 	case 219:
52175f2336efSEd Maste 		break;
52185f2336efSEd Maste 	/* linux_clone */
52195f2336efSEd Maste 	case 220:
52205f2336efSEd Maste 		switch (ndx) {
52215f2336efSEd Maste 		case 0:
5222a39cdcd7SEdward Tomasz Napierala 			p = "l_ulong";
52235f2336efSEd Maste 			break;
52245f2336efSEd Maste 		case 1:
5225*0c08f34fSDmitry Chagin 			p = "l_ulong";
52265f2336efSEd Maste 			break;
52275f2336efSEd Maste 		case 2:
5228*0c08f34fSDmitry Chagin 			p = "userland l_int *";
52295f2336efSEd Maste 			break;
52305f2336efSEd Maste 		case 3:
5231*0c08f34fSDmitry Chagin 			p = "l_ulong";
52325f2336efSEd Maste 			break;
52335f2336efSEd Maste 		case 4:
5234*0c08f34fSDmitry Chagin 			p = "userland l_int *";
52355f2336efSEd Maste 			break;
52365f2336efSEd Maste 		default:
52375f2336efSEd Maste 			break;
52385f2336efSEd Maste 		};
52395f2336efSEd Maste 		break;
52405f2336efSEd Maste 	/* linux_execve */
52415f2336efSEd Maste 	case 221:
52425f2336efSEd Maste 		switch (ndx) {
52435f2336efSEd Maste 		case 0:
52445f2336efSEd Maste 			p = "userland char *";
52455f2336efSEd Maste 			break;
52465f2336efSEd Maste 		case 1:
52475f2336efSEd Maste 			p = "userland char **";
52485f2336efSEd Maste 			break;
52495f2336efSEd Maste 		case 2:
52505f2336efSEd Maste 			p = "userland char **";
52515f2336efSEd Maste 			break;
52525f2336efSEd Maste 		default:
52535f2336efSEd Maste 			break;
52545f2336efSEd Maste 		};
52555f2336efSEd Maste 		break;
52565f2336efSEd Maste 	/* linux_mmap2 */
52575f2336efSEd Maste 	case 222:
52585f2336efSEd Maste 		switch (ndx) {
52595f2336efSEd Maste 		case 0:
52605f2336efSEd Maste 			p = "l_ulong";
52615f2336efSEd Maste 			break;
52625f2336efSEd Maste 		case 1:
52635f2336efSEd Maste 			p = "l_ulong";
52645f2336efSEd Maste 			break;
52655f2336efSEd Maste 		case 2:
52665f2336efSEd Maste 			p = "l_ulong";
52675f2336efSEd Maste 			break;
52685f2336efSEd Maste 		case 3:
52695f2336efSEd Maste 			p = "l_ulong";
52705f2336efSEd Maste 			break;
52715f2336efSEd Maste 		case 4:
52725f2336efSEd Maste 			p = "l_ulong";
52735f2336efSEd Maste 			break;
52745f2336efSEd Maste 		case 5:
52755f2336efSEd Maste 			p = "l_ulong";
52765f2336efSEd Maste 			break;
52775f2336efSEd Maste 		default:
52785f2336efSEd Maste 			break;
52795f2336efSEd Maste 		};
52805f2336efSEd Maste 		break;
52815f2336efSEd Maste 	/* linux_fadvise64 */
52825f2336efSEd Maste 	case 223:
52835f2336efSEd Maste 		switch (ndx) {
52845f2336efSEd Maste 		case 0:
52855f2336efSEd Maste 			p = "l_int";
52865f2336efSEd Maste 			break;
52875f2336efSEd Maste 		case 1:
52885f2336efSEd Maste 			p = "l_loff_t";
52895f2336efSEd Maste 			break;
52905f2336efSEd Maste 		case 2:
52915f2336efSEd Maste 			p = "l_size_t";
52925f2336efSEd Maste 			break;
52935f2336efSEd Maste 		case 3:
52945f2336efSEd Maste 			p = "l_int";
52955f2336efSEd Maste 			break;
52965f2336efSEd Maste 		default:
52975f2336efSEd Maste 			break;
52985f2336efSEd Maste 		};
52995f2336efSEd Maste 		break;
53005f2336efSEd Maste 	/* swapon */
53015f2336efSEd Maste 	case 224:
53025f2336efSEd Maste 		switch (ndx) {
53035f2336efSEd Maste 		case 0:
53045f2336efSEd Maste 			p = "userland char *";
53055f2336efSEd Maste 			break;
53065f2336efSEd Maste 		default:
53075f2336efSEd Maste 			break;
53085f2336efSEd Maste 		};
53095f2336efSEd Maste 		break;
53105f2336efSEd Maste 	/* linux_swapoff */
53115f2336efSEd Maste 	case 225:
53125f2336efSEd Maste 		break;
53135f2336efSEd Maste 	/* linux_mprotect */
53145f2336efSEd Maste 	case 226:
53155f2336efSEd Maste 		switch (ndx) {
53165f2336efSEd Maste 		case 0:
5317a39cdcd7SEdward Tomasz Napierala 			p = "l_ulong";
53185f2336efSEd Maste 			break;
53195f2336efSEd Maste 		case 1:
5320a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
53215f2336efSEd Maste 			break;
53225f2336efSEd Maste 		case 2:
5323a39cdcd7SEdward Tomasz Napierala 			p = "l_ulong";
53245f2336efSEd Maste 			break;
53255f2336efSEd Maste 		default:
53265f2336efSEd Maste 			break;
53275f2336efSEd Maste 		};
53285f2336efSEd Maste 		break;
53295f2336efSEd Maste 	/* linux_msync */
53305f2336efSEd Maste 	case 227:
53315f2336efSEd Maste 		switch (ndx) {
53325f2336efSEd Maste 		case 0:
53335f2336efSEd Maste 			p = "l_ulong";
53345f2336efSEd Maste 			break;
53355f2336efSEd Maste 		case 1:
53365f2336efSEd Maste 			p = "l_size_t";
53375f2336efSEd Maste 			break;
53385f2336efSEd Maste 		case 2:
53395f2336efSEd Maste 			p = "l_int";
53405f2336efSEd Maste 			break;
53415f2336efSEd Maste 		default:
53425f2336efSEd Maste 			break;
53435f2336efSEd Maste 		};
53445f2336efSEd Maste 		break;
53455f2336efSEd Maste 	/* mlock */
53465f2336efSEd Maste 	case 228:
53475f2336efSEd Maste 		switch (ndx) {
53485f2336efSEd Maste 		case 0:
53495f2336efSEd Maste 			p = "userland const void *";
53505f2336efSEd Maste 			break;
53515f2336efSEd Maste 		case 1:
53525f2336efSEd Maste 			p = "size_t";
53535f2336efSEd Maste 			break;
53545f2336efSEd Maste 		default:
53555f2336efSEd Maste 			break;
53565f2336efSEd Maste 		};
53575f2336efSEd Maste 		break;
53585f2336efSEd Maste 	/* munlock */
53595f2336efSEd Maste 	case 229:
53605f2336efSEd Maste 		switch (ndx) {
53615f2336efSEd Maste 		case 0:
53625f2336efSEd Maste 			p = "userland const void *";
53635f2336efSEd Maste 			break;
53645f2336efSEd Maste 		case 1:
53655f2336efSEd Maste 			p = "size_t";
53665f2336efSEd Maste 			break;
53675f2336efSEd Maste 		default:
53685f2336efSEd Maste 			break;
53695f2336efSEd Maste 		};
53705f2336efSEd Maste 		break;
53715f2336efSEd Maste 	/* mlockall */
53725f2336efSEd Maste 	case 230:
53735f2336efSEd Maste 		switch (ndx) {
53745f2336efSEd Maste 		case 0:
53755f2336efSEd Maste 			p = "int";
53765f2336efSEd Maste 			break;
53775f2336efSEd Maste 		default:
53785f2336efSEd Maste 			break;
53795f2336efSEd Maste 		};
53805f2336efSEd Maste 		break;
53815f2336efSEd Maste 	/* munlockall */
53825f2336efSEd Maste 	case 231:
53835f2336efSEd Maste 		break;
53845f2336efSEd Maste 	/* linux_mincore */
53855f2336efSEd Maste 	case 232:
53865f2336efSEd Maste 		switch (ndx) {
53875f2336efSEd Maste 		case 0:
53885f2336efSEd Maste 			p = "l_ulong";
53895f2336efSEd Maste 			break;
53905f2336efSEd Maste 		case 1:
53915f2336efSEd Maste 			p = "l_size_t";
53925f2336efSEd Maste 			break;
53935f2336efSEd Maste 		case 2:
53945f2336efSEd Maste 			p = "userland u_char *";
53955f2336efSEd Maste 			break;
53965f2336efSEd Maste 		default:
53975f2336efSEd Maste 			break;
53985f2336efSEd Maste 		};
53995f2336efSEd Maste 		break;
5400bafd96b8SEdward Tomasz Napierala 	/* linux_madvise */
54015f2336efSEd Maste 	case 233:
54025f2336efSEd Maste 		switch (ndx) {
54035f2336efSEd Maste 		case 0:
5404a39cdcd7SEdward Tomasz Napierala 			p = "l_ulong";
54055f2336efSEd Maste 			break;
54065f2336efSEd Maste 		case 1:
5407a39cdcd7SEdward Tomasz Napierala 			p = "l_size_t";
54085f2336efSEd Maste 			break;
54095f2336efSEd Maste 		case 2:
5410a39cdcd7SEdward Tomasz Napierala 			p = "l_int";
54115f2336efSEd Maste 			break;
54125f2336efSEd Maste 		default:
54135f2336efSEd Maste 			break;
54145f2336efSEd Maste 		};
54155f2336efSEd Maste 		break;
54165f2336efSEd Maste 	/* linux_remap_file_pages */
54175f2336efSEd Maste 	case 234:
54185f2336efSEd Maste 		break;
54195f2336efSEd Maste 	/* linux_mbind */
54205f2336efSEd Maste 	case 235:
54215f2336efSEd Maste 		break;
54225f2336efSEd Maste 	/* linux_get_mempolicy */
54235f2336efSEd Maste 	case 236:
54245f2336efSEd Maste 		break;
54255f2336efSEd Maste 	/* linux_set_mempolicy */
54265f2336efSEd Maste 	case 237:
54275f2336efSEd Maste 		break;
54285f2336efSEd Maste 	/* linux_migrate_pages */
54295f2336efSEd Maste 	case 238:
54305f2336efSEd Maste 		break;
54315f2336efSEd Maste 	/* linux_move_pages */
54325f2336efSEd Maste 	case 239:
54335f2336efSEd Maste 		break;
54345f2336efSEd Maste 	/* linux_rt_tgsigqueueinfo */
54355f2336efSEd Maste 	case 240:
54365f2336efSEd Maste 		switch (ndx) {
54375f2336efSEd Maste 		case 0:
54385f2336efSEd Maste 			p = "l_pid_t";
54395f2336efSEd Maste 			break;
54405f2336efSEd Maste 		case 1:
54415f2336efSEd Maste 			p = "l_pid_t";
54425f2336efSEd Maste 			break;
54435f2336efSEd Maste 		case 2:
54445f2336efSEd Maste 			p = "l_int";
54455f2336efSEd Maste 			break;
54465f2336efSEd Maste 		case 3:
54475f2336efSEd Maste 			p = "userland l_siginfo_t *";
54485f2336efSEd Maste 			break;
54495f2336efSEd Maste 		default:
54505f2336efSEd Maste 			break;
54515f2336efSEd Maste 		};
54525f2336efSEd Maste 		break;
54535f2336efSEd Maste 	/* linux_perf_event_open */
54545f2336efSEd Maste 	case 241:
54555f2336efSEd Maste 		break;
54565f2336efSEd Maste 	/* linux_accept4 */
54575f2336efSEd Maste 	case 242:
54585f2336efSEd Maste 		switch (ndx) {
54595f2336efSEd Maste 		case 0:
54605f2336efSEd Maste 			p = "l_int";
54615f2336efSEd Maste 			break;
54625f2336efSEd Maste 		case 1:
54635f2336efSEd Maste 			p = "l_uintptr_t";
54645f2336efSEd Maste 			break;
54655f2336efSEd Maste 		case 2:
54665f2336efSEd Maste 			p = "l_uintptr_t";
54675f2336efSEd Maste 			break;
54685f2336efSEd Maste 		case 3:
5469a39cdcd7SEdward Tomasz Napierala 			p = "l_int";
54705f2336efSEd Maste 			break;
54715f2336efSEd Maste 		default:
54725f2336efSEd Maste 			break;
54735f2336efSEd Maste 		};
54745f2336efSEd Maste 		break;
54755f2336efSEd Maste 	/* linux_recvmmsg */
54765f2336efSEd Maste 	case 243:
54775f2336efSEd Maste 		switch (ndx) {
54785f2336efSEd Maste 		case 0:
54795f2336efSEd Maste 			p = "l_int";
54805f2336efSEd Maste 			break;
54815f2336efSEd Maste 		case 1:
54825f2336efSEd Maste 			p = "userland struct l_mmsghdr *";
54835f2336efSEd Maste 			break;
54845f2336efSEd Maste 		case 2:
54855f2336efSEd Maste 			p = "l_uint";
54865f2336efSEd Maste 			break;
54875f2336efSEd Maste 		case 3:
54885f2336efSEd Maste 			p = "l_uint";
54895f2336efSEd Maste 			break;
54905f2336efSEd Maste 		case 4:
54915f2336efSEd Maste 			p = "userland struct l_timespec *";
54925f2336efSEd Maste 			break;
54935f2336efSEd Maste 		default:
54945f2336efSEd Maste 			break;
54955f2336efSEd Maste 		};
54965f2336efSEd Maste 		break;
54975f2336efSEd Maste 	/* linux_wait4 */
54985f2336efSEd Maste 	case 260:
54995f2336efSEd Maste 		switch (ndx) {
55005f2336efSEd Maste 		case 0:
55015f2336efSEd Maste 			p = "l_pid_t";
55025f2336efSEd Maste 			break;
55035f2336efSEd Maste 		case 1:
55045f2336efSEd Maste 			p = "userland l_int *";
55055f2336efSEd Maste 			break;
55065f2336efSEd Maste 		case 2:
55075f2336efSEd Maste 			p = "l_int";
55085f2336efSEd Maste 			break;
55095f2336efSEd Maste 		case 3:
55105f2336efSEd Maste 			p = "userland struct rusage *";
55115f2336efSEd Maste 			break;
55125f2336efSEd Maste 		default:
55135f2336efSEd Maste 			break;
55145f2336efSEd Maste 		};
55155f2336efSEd Maste 		break;
55165f2336efSEd Maste 	/* linux_prlimit64 */
55175f2336efSEd Maste 	case 261:
55185f2336efSEd Maste 		switch (ndx) {
55195f2336efSEd Maste 		case 0:
55205f2336efSEd Maste 			p = "l_pid_t";
55215f2336efSEd Maste 			break;
55225f2336efSEd Maste 		case 1:
55235f2336efSEd Maste 			p = "l_uint";
55245f2336efSEd Maste 			break;
55255f2336efSEd Maste 		case 2:
55265f2336efSEd Maste 			p = "userland struct rlimit *";
55275f2336efSEd Maste 			break;
55285f2336efSEd Maste 		case 3:
55295f2336efSEd Maste 			p = "userland struct rlimit *";
55305f2336efSEd Maste 			break;
55315f2336efSEd Maste 		default:
55325f2336efSEd Maste 			break;
55335f2336efSEd Maste 		};
55345f2336efSEd Maste 		break;
55355f2336efSEd Maste 	/* linux_fanotify_init */
55365f2336efSEd Maste 	case 262:
55375f2336efSEd Maste 		break;
55385f2336efSEd Maste 	/* linux_fanotify_mark */
55395f2336efSEd Maste 	case 263:
55405f2336efSEd Maste 		break;
55415f2336efSEd Maste 	/* linux_name_to_handle_at */
55425f2336efSEd Maste 	case 264:
554377eb9841SConrad Meyer 		switch (ndx) {
554477eb9841SConrad Meyer 		case 0:
554577eb9841SConrad Meyer 			p = "l_int";
554677eb9841SConrad Meyer 			break;
554777eb9841SConrad Meyer 		case 1:
554877eb9841SConrad Meyer 			p = "userland const char *";
554977eb9841SConrad Meyer 			break;
555077eb9841SConrad Meyer 		case 2:
555177eb9841SConrad Meyer 			p = "userland struct l_file_handle *";
555277eb9841SConrad Meyer 			break;
555377eb9841SConrad Meyer 		case 3:
555477eb9841SConrad Meyer 			p = "userland l_int *";
555577eb9841SConrad Meyer 			break;
555677eb9841SConrad Meyer 		case 4:
555777eb9841SConrad Meyer 			p = "l_int";
555877eb9841SConrad Meyer 			break;
555977eb9841SConrad Meyer 		default:
556077eb9841SConrad Meyer 			break;
556177eb9841SConrad Meyer 		};
55625f2336efSEd Maste 		break;
55635f2336efSEd Maste 	/* linux_open_by_handle_at */
55645f2336efSEd Maste 	case 265:
556577eb9841SConrad Meyer 		switch (ndx) {
556677eb9841SConrad Meyer 		case 0:
556777eb9841SConrad Meyer 			p = "l_int";
556877eb9841SConrad Meyer 			break;
556977eb9841SConrad Meyer 		case 1:
557077eb9841SConrad Meyer 			p = "userland struct l_file_handle *";
557177eb9841SConrad Meyer 			break;
557277eb9841SConrad Meyer 		case 2:
557377eb9841SConrad Meyer 			p = "l_int";
557477eb9841SConrad Meyer 			break;
557577eb9841SConrad Meyer 		default:
557677eb9841SConrad Meyer 			break;
557777eb9841SConrad Meyer 		};
55785f2336efSEd Maste 		break;
55795f2336efSEd Maste 	/* linux_clock_adjtime */
55805f2336efSEd Maste 	case 266:
55815f2336efSEd Maste 		break;
55825f2336efSEd Maste 	/* linux_syncfs */
55835f2336efSEd Maste 	case 267:
55845f2336efSEd Maste 		switch (ndx) {
55855f2336efSEd Maste 		case 0:
55865f2336efSEd Maste 			p = "l_int";
55875f2336efSEd Maste 			break;
55885f2336efSEd Maste 		default:
55895f2336efSEd Maste 			break;
55905f2336efSEd Maste 		};
55915f2336efSEd Maste 		break;
55925f2336efSEd Maste 	/* linux_setns */
55935f2336efSEd Maste 	case 268:
55945f2336efSEd Maste 		switch (ndx) {
55955f2336efSEd Maste 		case 0:
55965f2336efSEd Maste 			p = "l_int";
55975f2336efSEd Maste 			break;
55985f2336efSEd Maste 		case 1:
55995f2336efSEd Maste 			p = "l_int";
56005f2336efSEd Maste 			break;
56015f2336efSEd Maste 		default:
56025f2336efSEd Maste 			break;
56035f2336efSEd Maste 		};
56045f2336efSEd Maste 		break;
56055f2336efSEd Maste 	/* linux_sendmmsg */
56065f2336efSEd Maste 	case 269:
56075f2336efSEd Maste 		switch (ndx) {
56085f2336efSEd Maste 		case 0:
56095f2336efSEd Maste 			p = "l_int";
56105f2336efSEd Maste 			break;
56115f2336efSEd Maste 		case 1:
56125f2336efSEd Maste 			p = "userland struct l_mmsghdr *";
56135f2336efSEd Maste 			break;
56145f2336efSEd Maste 		case 2:
56155f2336efSEd Maste 			p = "l_uint";
56165f2336efSEd Maste 			break;
56175f2336efSEd Maste 		case 3:
56185f2336efSEd Maste 			p = "l_uint";
56195f2336efSEd Maste 			break;
56205f2336efSEd Maste 		default:
56215f2336efSEd Maste 			break;
56225f2336efSEd Maste 		};
56235f2336efSEd Maste 		break;
56245f2336efSEd Maste 	/* linux_process_vm_readv */
56255f2336efSEd Maste 	case 270:
56265f2336efSEd Maste 		switch (ndx) {
56275f2336efSEd Maste 		case 0:
56285f2336efSEd Maste 			p = "l_pid_t";
56295f2336efSEd Maste 			break;
56305f2336efSEd Maste 		case 1:
56315f2336efSEd Maste 			p = "userland const struct iovec *";
56325f2336efSEd Maste 			break;
56335f2336efSEd Maste 		case 2:
56345f2336efSEd Maste 			p = "l_ulong";
56355f2336efSEd Maste 			break;
56365f2336efSEd Maste 		case 3:
56375f2336efSEd Maste 			p = "userland const struct iovec *";
56385f2336efSEd Maste 			break;
56395f2336efSEd Maste 		case 4:
56405f2336efSEd Maste 			p = "l_ulong";
56415f2336efSEd Maste 			break;
56425f2336efSEd Maste 		case 5:
56435f2336efSEd Maste 			p = "l_ulong";
56445f2336efSEd Maste 			break;
56455f2336efSEd Maste 		default:
56465f2336efSEd Maste 			break;
56475f2336efSEd Maste 		};
56485f2336efSEd Maste 		break;
56495f2336efSEd Maste 	/* linux_process_vm_writev */
56505f2336efSEd Maste 	case 271:
56515f2336efSEd Maste 		switch (ndx) {
56525f2336efSEd Maste 		case 0:
56535f2336efSEd Maste 			p = "l_pid_t";
56545f2336efSEd Maste 			break;
56555f2336efSEd Maste 		case 1:
56565f2336efSEd Maste 			p = "userland const struct iovec *";
56575f2336efSEd Maste 			break;
56585f2336efSEd Maste 		case 2:
56595f2336efSEd Maste 			p = "l_ulong";
56605f2336efSEd Maste 			break;
56615f2336efSEd Maste 		case 3:
56625f2336efSEd Maste 			p = "userland const struct iovec *";
56635f2336efSEd Maste 			break;
56645f2336efSEd Maste 		case 4:
56655f2336efSEd Maste 			p = "l_ulong";
56665f2336efSEd Maste 			break;
56675f2336efSEd Maste 		case 5:
56685f2336efSEd Maste 			p = "l_ulong";
56695f2336efSEd Maste 			break;
56705f2336efSEd Maste 		default:
56715f2336efSEd Maste 			break;
56725f2336efSEd Maste 		};
56735f2336efSEd Maste 		break;
56745f2336efSEd Maste 	/* linux_kcmp */
56755f2336efSEd Maste 	case 272:
56765f2336efSEd Maste 		switch (ndx) {
56775f2336efSEd Maste 		case 0:
56785f2336efSEd Maste 			p = "l_pid_t";
56795f2336efSEd Maste 			break;
56805f2336efSEd Maste 		case 1:
56815f2336efSEd Maste 			p = "l_pid_t";
56825f2336efSEd Maste 			break;
56835f2336efSEd Maste 		case 2:
56845f2336efSEd Maste 			p = "l_int";
56855f2336efSEd Maste 			break;
56865f2336efSEd Maste 		case 3:
56875f2336efSEd Maste 			p = "l_ulong";
56885f2336efSEd Maste 			break;
56895f2336efSEd Maste 		case 4:
56905f2336efSEd Maste 			p = "l_ulong";
56915f2336efSEd Maste 			break;
56925f2336efSEd Maste 		default:
56935f2336efSEd Maste 			break;
56945f2336efSEd Maste 		};
56955f2336efSEd Maste 		break;
56965f2336efSEd Maste 	/* linux_finit_module */
56975f2336efSEd Maste 	case 273:
56985f2336efSEd Maste 		switch (ndx) {
56995f2336efSEd Maste 		case 0:
57005f2336efSEd Maste 			p = "l_int";
57015f2336efSEd Maste 			break;
57025f2336efSEd Maste 		case 1:
57035f2336efSEd Maste 			p = "userland const char *";
57045f2336efSEd Maste 			break;
57055f2336efSEd Maste 		case 2:
57065f2336efSEd Maste 			p = "l_int";
57075f2336efSEd Maste 			break;
57085f2336efSEd Maste 		default:
57095f2336efSEd Maste 			break;
57105f2336efSEd Maste 		};
57115f2336efSEd Maste 		break;
57125f2336efSEd Maste 	/* linux_sched_setattr */
57135f2336efSEd Maste 	case 274:
57145f2336efSEd Maste 		switch (ndx) {
57155f2336efSEd Maste 		case 0:
57165f2336efSEd Maste 			p = "l_pid_t";
57175f2336efSEd Maste 			break;
57185f2336efSEd Maste 		case 1:
57195f2336efSEd Maste 			p = "userland void *";
57205f2336efSEd Maste 			break;
57215f2336efSEd Maste 		case 2:
57225f2336efSEd Maste 			p = "l_uint";
57235f2336efSEd Maste 			break;
57245f2336efSEd Maste 		default:
57255f2336efSEd Maste 			break;
57265f2336efSEd Maste 		};
57275f2336efSEd Maste 		break;
57285f2336efSEd Maste 	/* linux_sched_getattr */
57295f2336efSEd Maste 	case 275:
57305f2336efSEd Maste 		switch (ndx) {
57315f2336efSEd Maste 		case 0:
57325f2336efSEd Maste 			p = "l_pid_t";
57335f2336efSEd Maste 			break;
57345f2336efSEd Maste 		case 1:
57355f2336efSEd Maste 			p = "userland void *";
57365f2336efSEd Maste 			break;
57375f2336efSEd Maste 		case 2:
57385f2336efSEd Maste 			p = "l_uint";
57395f2336efSEd Maste 			break;
57405f2336efSEd Maste 		case 3:
57415f2336efSEd Maste 			p = "l_uint";
57425f2336efSEd Maste 			break;
57435f2336efSEd Maste 		default:
57445f2336efSEd Maste 			break;
57455f2336efSEd Maste 		};
57465f2336efSEd Maste 		break;
57475f2336efSEd Maste 	/* linux_renameat2 */
57485f2336efSEd Maste 	case 276:
57495f2336efSEd Maste 		switch (ndx) {
57505f2336efSEd Maste 		case 0:
57515f2336efSEd Maste 			p = "l_int";
57525f2336efSEd Maste 			break;
57535f2336efSEd Maste 		case 1:
57545f2336efSEd Maste 			p = "userland const char *";
57555f2336efSEd Maste 			break;
57565f2336efSEd Maste 		case 2:
57575f2336efSEd Maste 			p = "l_int";
57585f2336efSEd Maste 			break;
57595f2336efSEd Maste 		case 3:
57605f2336efSEd Maste 			p = "userland const char *";
57615f2336efSEd Maste 			break;
57625f2336efSEd Maste 		case 4:
5763a39cdcd7SEdward Tomasz Napierala 			p = "l_uint";
57645f2336efSEd Maste 			break;
57655f2336efSEd Maste 		default:
57665f2336efSEd Maste 			break;
57675f2336efSEd Maste 		};
57685f2336efSEd Maste 		break;
57695f2336efSEd Maste 	/* linux_seccomp */
57705f2336efSEd Maste 	case 277:
57715f2336efSEd Maste 		switch (ndx) {
57725f2336efSEd Maste 		case 0:
57735f2336efSEd Maste 			p = "l_uint";
57745f2336efSEd Maste 			break;
57755f2336efSEd Maste 		case 1:
57765f2336efSEd Maste 			p = "l_uint";
57775f2336efSEd Maste 			break;
57785f2336efSEd Maste 		case 2:
57795f2336efSEd Maste 			p = "userland const char *";
57805f2336efSEd Maste 			break;
57815f2336efSEd Maste 		default:
57825f2336efSEd Maste 			break;
57835f2336efSEd Maste 		};
57845f2336efSEd Maste 		break;
57855f2336efSEd Maste 	/* linux_getrandom */
57865f2336efSEd Maste 	case 278:
57875f2336efSEd Maste 		switch (ndx) {
57885f2336efSEd Maste 		case 0:
57895f2336efSEd Maste 			p = "userland char *";
57905f2336efSEd Maste 			break;
57915f2336efSEd Maste 		case 1:
57925f2336efSEd Maste 			p = "l_size_t";
57935f2336efSEd Maste 			break;
57945f2336efSEd Maste 		case 2:
57955f2336efSEd Maste 			p = "l_uint";
57965f2336efSEd Maste 			break;
57975f2336efSEd Maste 		default:
57985f2336efSEd Maste 			break;
57995f2336efSEd Maste 		};
58005f2336efSEd Maste 		break;
58015f2336efSEd Maste 	/* linux_memfd_create */
58025f2336efSEd Maste 	case 279:
58035f2336efSEd Maste 		switch (ndx) {
58045f2336efSEd Maste 		case 0:
58055f2336efSEd Maste 			p = "userland const char *";
58065f2336efSEd Maste 			break;
58075f2336efSEd Maste 		case 1:
58085f2336efSEd Maste 			p = "l_uint";
58095f2336efSEd Maste 			break;
58105f2336efSEd Maste 		default:
58115f2336efSEd Maste 			break;
58125f2336efSEd Maste 		};
58135f2336efSEd Maste 		break;
58145f2336efSEd Maste 	/* linux_bpf */
58155f2336efSEd Maste 	case 280:
58165f2336efSEd Maste 		switch (ndx) {
58175f2336efSEd Maste 		case 0:
58185f2336efSEd Maste 			p = "l_int";
58195f2336efSEd Maste 			break;
58205f2336efSEd Maste 		case 1:
58215f2336efSEd Maste 			p = "userland void *";
58225f2336efSEd Maste 			break;
58235f2336efSEd Maste 		case 2:
58245f2336efSEd Maste 			p = "l_uint";
58255f2336efSEd Maste 			break;
58265f2336efSEd Maste 		default:
58275f2336efSEd Maste 			break;
58285f2336efSEd Maste 		};
58295f2336efSEd Maste 		break;
58305f2336efSEd Maste 	/* linux_execveat */
58315f2336efSEd Maste 	case 281:
58325f2336efSEd Maste 		switch (ndx) {
58335f2336efSEd Maste 		case 0:
58345f2336efSEd Maste 			p = "l_int";
58355f2336efSEd Maste 			break;
58365f2336efSEd Maste 		case 1:
58375f2336efSEd Maste 			p = "userland const char *";
58385f2336efSEd Maste 			break;
58395f2336efSEd Maste 		case 2:
58405f2336efSEd Maste 			p = "userland const char **";
58415f2336efSEd Maste 			break;
58425f2336efSEd Maste 		case 3:
58435f2336efSEd Maste 			p = "userland const char **";
58445f2336efSEd Maste 			break;
58455f2336efSEd Maste 		case 4:
58465f2336efSEd Maste 			p = "l_int";
58475f2336efSEd Maste 			break;
58485f2336efSEd Maste 		default:
58495f2336efSEd Maste 			break;
58505f2336efSEd Maste 		};
58515f2336efSEd Maste 		break;
58525f2336efSEd Maste 	/* linux_userfaultfd */
58535f2336efSEd Maste 	case 282:
58545f2336efSEd Maste 		switch (ndx) {
58555f2336efSEd Maste 		case 0:
58565f2336efSEd Maste 			p = "l_int";
58575f2336efSEd Maste 			break;
58585f2336efSEd Maste 		default:
58595f2336efSEd Maste 			break;
58605f2336efSEd Maste 		};
58615f2336efSEd Maste 		break;
58625f2336efSEd Maste 	/* linux_membarrier */
58635f2336efSEd Maste 	case 283:
58645f2336efSEd Maste 		switch (ndx) {
58655f2336efSEd Maste 		case 0:
58665f2336efSEd Maste 			p = "l_int";
58675f2336efSEd Maste 			break;
58685f2336efSEd Maste 		case 1:
58695f2336efSEd Maste 			p = "l_int";
58705f2336efSEd Maste 			break;
58715f2336efSEd Maste 		default:
58725f2336efSEd Maste 			break;
58735f2336efSEd Maste 		};
58745f2336efSEd Maste 		break;
58755f2336efSEd Maste 	/* linux_mlock2 */
58765f2336efSEd Maste 	case 284:
58775f2336efSEd Maste 		switch (ndx) {
58785f2336efSEd Maste 		case 0:
58795f2336efSEd Maste 			p = "l_ulong";
58805f2336efSEd Maste 			break;
58815f2336efSEd Maste 		case 1:
58825f2336efSEd Maste 			p = "l_size_t";
58835f2336efSEd Maste 			break;
58845f2336efSEd Maste 		case 2:
58855f2336efSEd Maste 			p = "l_int";
58865f2336efSEd Maste 			break;
58875f2336efSEd Maste 		default:
58885f2336efSEd Maste 			break;
58895f2336efSEd Maste 		};
58905f2336efSEd Maste 		break;
58915f2336efSEd Maste 	/* linux_copy_file_range */
58925f2336efSEd Maste 	case 285:
58935f2336efSEd Maste 		switch (ndx) {
58945f2336efSEd Maste 		case 0:
58955f2336efSEd Maste 			p = "l_int";
58965f2336efSEd Maste 			break;
58975f2336efSEd Maste 		case 1:
58985f2336efSEd Maste 			p = "userland l_loff_t *";
58995f2336efSEd Maste 			break;
59005f2336efSEd Maste 		case 2:
59015f2336efSEd Maste 			p = "l_int";
59025f2336efSEd Maste 			break;
59035f2336efSEd Maste 		case 3:
59045f2336efSEd Maste 			p = "userland l_loff_t *";
59055f2336efSEd Maste 			break;
59065f2336efSEd Maste 		case 4:
59075f2336efSEd Maste 			p = "l_size_t";
59085f2336efSEd Maste 			break;
59095f2336efSEd Maste 		case 5:
59105f2336efSEd Maste 			p = "l_uint";
59115f2336efSEd Maste 			break;
59125f2336efSEd Maste 		default:
59135f2336efSEd Maste 			break;
59145f2336efSEd Maste 		};
59155f2336efSEd Maste 		break;
59165f2336efSEd Maste 	/* linux_preadv2 */
59175f2336efSEd Maste 	case 286:
59185f2336efSEd Maste 		switch (ndx) {
59195f2336efSEd Maste 		case 0:
59205f2336efSEd Maste 			p = "l_ulong";
59215f2336efSEd Maste 			break;
59225f2336efSEd Maste 		case 1:
59235f2336efSEd Maste 			p = "userland const struct iovec *";
59245f2336efSEd Maste 			break;
59255f2336efSEd Maste 		case 2:
59265f2336efSEd Maste 			p = "l_ulong";
59275f2336efSEd Maste 			break;
59285f2336efSEd Maste 		case 3:
59295f2336efSEd Maste 			p = "l_ulong";
59305f2336efSEd Maste 			break;
59315f2336efSEd Maste 		case 4:
59325f2336efSEd Maste 			p = "l_ulong";
59335f2336efSEd Maste 			break;
59345f2336efSEd Maste 		case 5:
59355f2336efSEd Maste 			p = "l_int";
59365f2336efSEd Maste 			break;
59375f2336efSEd Maste 		default:
59385f2336efSEd Maste 			break;
59395f2336efSEd Maste 		};
59405f2336efSEd Maste 		break;
59415f2336efSEd Maste 	/* linux_pwritev2 */
59425f2336efSEd Maste 	case 287:
59435f2336efSEd Maste 		switch (ndx) {
59445f2336efSEd Maste 		case 0:
59455f2336efSEd Maste 			p = "l_ulong";
59465f2336efSEd Maste 			break;
59475f2336efSEd Maste 		case 1:
59485f2336efSEd Maste 			p = "userland const struct iovec *";
59495f2336efSEd Maste 			break;
59505f2336efSEd Maste 		case 2:
59515f2336efSEd Maste 			p = "l_ulong";
59525f2336efSEd Maste 			break;
59535f2336efSEd Maste 		case 3:
59545f2336efSEd Maste 			p = "l_ulong";
59555f2336efSEd Maste 			break;
59565f2336efSEd Maste 		case 4:
59575f2336efSEd Maste 			p = "l_ulong";
59585f2336efSEd Maste 			break;
59595f2336efSEd Maste 		case 5:
59605f2336efSEd Maste 			p = "l_int";
59615f2336efSEd Maste 			break;
59625f2336efSEd Maste 		default:
59635f2336efSEd Maste 			break;
59645f2336efSEd Maste 		};
59655f2336efSEd Maste 		break;
59665f2336efSEd Maste 	/* linux_pkey_mprotect */
59675f2336efSEd Maste 	case 288:
59685f2336efSEd Maste 		switch (ndx) {
59695f2336efSEd Maste 		case 0:
59705f2336efSEd Maste 			p = "l_ulong";
59715f2336efSEd Maste 			break;
59725f2336efSEd Maste 		case 1:
59735f2336efSEd Maste 			p = "l_size_t";
59745f2336efSEd Maste 			break;
59755f2336efSEd Maste 		case 2:
59765f2336efSEd Maste 			p = "l_ulong";
59775f2336efSEd Maste 			break;
59785f2336efSEd Maste 		case 3:
59795f2336efSEd Maste 			p = "l_int";
59805f2336efSEd Maste 			break;
59815f2336efSEd Maste 		default:
59825f2336efSEd Maste 			break;
59835f2336efSEd Maste 		};
59845f2336efSEd Maste 		break;
59855f2336efSEd Maste 	/* linux_pkey_alloc */
59865f2336efSEd Maste 	case 289:
59875f2336efSEd Maste 		switch (ndx) {
59885f2336efSEd Maste 		case 0:
59895f2336efSEd Maste 			p = "l_ulong";
59905f2336efSEd Maste 			break;
59915f2336efSEd Maste 		case 1:
59925f2336efSEd Maste 			p = "l_ulong";
59935f2336efSEd Maste 			break;
59945f2336efSEd Maste 		default:
59955f2336efSEd Maste 			break;
59965f2336efSEd Maste 		};
59975f2336efSEd Maste 		break;
59985f2336efSEd Maste 	/* linux_pkey_free */
59995f2336efSEd Maste 	case 290:
60005f2336efSEd Maste 		switch (ndx) {
60015f2336efSEd Maste 		case 0:
60025f2336efSEd Maste 			p = "l_int";
60035f2336efSEd Maste 			break;
60045f2336efSEd Maste 		default:
60055f2336efSEd Maste 			break;
60065f2336efSEd Maste 		};
60075f2336efSEd Maste 		break;
6008c0f17173SEdward Tomasz Napierala 	/* linux_statx */
6009c0f17173SEdward Tomasz Napierala 	case 291:
6010c0f17173SEdward Tomasz Napierala 		switch (ndx) {
6011c0f17173SEdward Tomasz Napierala 		case 0:
6012c0f17173SEdward Tomasz Napierala 			p = "l_int";
6013c0f17173SEdward Tomasz Napierala 			break;
6014c0f17173SEdward Tomasz Napierala 		case 1:
6015c0f17173SEdward Tomasz Napierala 			p = "userland const char *";
6016c0f17173SEdward Tomasz Napierala 			break;
6017c0f17173SEdward Tomasz Napierala 		case 2:
6018c0f17173SEdward Tomasz Napierala 			p = "l_uint";
6019c0f17173SEdward Tomasz Napierala 			break;
6020c0f17173SEdward Tomasz Napierala 		case 3:
6021c0f17173SEdward Tomasz Napierala 			p = "l_uint";
6022c0f17173SEdward Tomasz Napierala 			break;
6023c0f17173SEdward Tomasz Napierala 		case 4:
6024c0f17173SEdward Tomasz Napierala 			p = "userland void *";
6025c0f17173SEdward Tomasz Napierala 			break;
6026c0f17173SEdward Tomasz Napierala 		default:
6027c0f17173SEdward Tomasz Napierala 			break;
6028c0f17173SEdward Tomasz Napierala 		};
6029c0f17173SEdward Tomasz Napierala 		break;
6030c0f17173SEdward Tomasz Napierala 	/* linux_io_pgetevents */
6031c0f17173SEdward Tomasz Napierala 	case 292:
6032c0f17173SEdward Tomasz Napierala 		break;
6033c0f17173SEdward Tomasz Napierala 	/* linux_rseq */
6034c0f17173SEdward Tomasz Napierala 	case 293:
6035c0f17173SEdward Tomasz Napierala 		break;
6036c0f17173SEdward Tomasz Napierala 	/* linux_kexec_file_load */
6037c0f17173SEdward Tomasz Napierala 	case 294:
6038c0f17173SEdward Tomasz Napierala 		break;
6039c0f17173SEdward Tomasz Napierala 	/* linux_pidfd_send_signal */
6040c0f17173SEdward Tomasz Napierala 	case 424:
6041c0f17173SEdward Tomasz Napierala 		switch (ndx) {
6042c0f17173SEdward Tomasz Napierala 		case 0:
6043c0f17173SEdward Tomasz Napierala 			p = "l_int";
6044c0f17173SEdward Tomasz Napierala 			break;
6045c0f17173SEdward Tomasz Napierala 		case 1:
6046c0f17173SEdward Tomasz Napierala 			p = "l_int";
6047c0f17173SEdward Tomasz Napierala 			break;
6048c0f17173SEdward Tomasz Napierala 		case 2:
6049c0f17173SEdward Tomasz Napierala 			p = "userland l_siginfo_t *";
6050c0f17173SEdward Tomasz Napierala 			break;
6051c0f17173SEdward Tomasz Napierala 		case 3:
6052c0f17173SEdward Tomasz Napierala 			p = "l_uint";
6053c0f17173SEdward Tomasz Napierala 			break;
6054c0f17173SEdward Tomasz Napierala 		default:
6055c0f17173SEdward Tomasz Napierala 			break;
6056c0f17173SEdward Tomasz Napierala 		};
6057c0f17173SEdward Tomasz Napierala 		break;
6058c0f17173SEdward Tomasz Napierala 	/* linux_io_uring_setup */
6059c0f17173SEdward Tomasz Napierala 	case 425:
6060c0f17173SEdward Tomasz Napierala 		break;
6061c0f17173SEdward Tomasz Napierala 	/* linux_io_uring_enter */
6062c0f17173SEdward Tomasz Napierala 	case 426:
6063c0f17173SEdward Tomasz Napierala 		break;
6064c0f17173SEdward Tomasz Napierala 	/* linux_io_uring_register */
6065c0f17173SEdward Tomasz Napierala 	case 427:
6066c0f17173SEdward Tomasz Napierala 		break;
6067c0f17173SEdward Tomasz Napierala 	/* linux_open_tree */
6068c0f17173SEdward Tomasz Napierala 	case 428:
6069c0f17173SEdward Tomasz Napierala 		break;
6070c0f17173SEdward Tomasz Napierala 	/* linux_move_mount */
6071c0f17173SEdward Tomasz Napierala 	case 429:
6072c0f17173SEdward Tomasz Napierala 		break;
6073c0f17173SEdward Tomasz Napierala 	/* linux_fsopen */
6074c0f17173SEdward Tomasz Napierala 	case 430:
6075c0f17173SEdward Tomasz Napierala 		break;
6076c0f17173SEdward Tomasz Napierala 	/* linux_fsconfig */
6077c0f17173SEdward Tomasz Napierala 	case 431:
6078c0f17173SEdward Tomasz Napierala 		break;
6079c0f17173SEdward Tomasz Napierala 	/* linux_fsmount */
6080c0f17173SEdward Tomasz Napierala 	case 432:
6081c0f17173SEdward Tomasz Napierala 		break;
6082c0f17173SEdward Tomasz Napierala 	/* linux_fspick */
6083c0f17173SEdward Tomasz Napierala 	case 433:
6084c0f17173SEdward Tomasz Napierala 		break;
6085c0f17173SEdward Tomasz Napierala 	/* linux_pidfd_open */
6086c0f17173SEdward Tomasz Napierala 	case 434:
6087c0f17173SEdward Tomasz Napierala 		break;
6088c0f17173SEdward Tomasz Napierala 	/* linux_clone3 */
6089c0f17173SEdward Tomasz Napierala 	case 435:
6090c0f17173SEdward Tomasz Napierala 		break;
6091c0f17173SEdward Tomasz Napierala 	/* linux_close_range */
6092c0f17173SEdward Tomasz Napierala 	case 436:
6093c0f17173SEdward Tomasz Napierala 		break;
6094c0f17173SEdward Tomasz Napierala 	/* linux_openat2 */
6095c0f17173SEdward Tomasz Napierala 	case 437:
6096c0f17173SEdward Tomasz Napierala 		break;
6097c0f17173SEdward Tomasz Napierala 	/* linux_pidfd_getfd */
6098c0f17173SEdward Tomasz Napierala 	case 438:
6099c0f17173SEdward Tomasz Napierala 		break;
6100c0f17173SEdward Tomasz Napierala 	/* linux_faccessat2 */
6101c0f17173SEdward Tomasz Napierala 	case 439:
6102bee191e4SDmitry Chagin 		switch (ndx) {
6103bee191e4SDmitry Chagin 		case 0:
6104bee191e4SDmitry Chagin 			p = "l_int";
6105bee191e4SDmitry Chagin 			break;
6106bee191e4SDmitry Chagin 		case 1:
6107bee191e4SDmitry Chagin 			p = "userland const char *";
6108bee191e4SDmitry Chagin 			break;
6109bee191e4SDmitry Chagin 		case 2:
6110bee191e4SDmitry Chagin 			p = "l_int";
6111bee191e4SDmitry Chagin 			break;
6112bee191e4SDmitry Chagin 		case 3:
6113bee191e4SDmitry Chagin 			p = "l_int";
6114bee191e4SDmitry Chagin 			break;
6115bee191e4SDmitry Chagin 		default:
6116bee191e4SDmitry Chagin 			break;
6117bee191e4SDmitry Chagin 		};
6118c0f17173SEdward Tomasz Napierala 		break;
6119c0f17173SEdward Tomasz Napierala 	/* linux_process_madvise */
6120c0f17173SEdward Tomasz Napierala 	case 440:
6121c0f17173SEdward Tomasz Napierala 		break;
6122c0f17173SEdward Tomasz Napierala 	/* linux_epoll_pwait2 */
6123c0f17173SEdward Tomasz Napierala 	case 441:
6124c0f17173SEdward Tomasz Napierala 		break;
6125c0f17173SEdward Tomasz Napierala 	/* linux_mount_setattr */
6126c0f17173SEdward Tomasz Napierala 	case 442:
6127c0f17173SEdward Tomasz Napierala 		break;
61285f2336efSEd Maste 	default:
61295f2336efSEd Maste 		break;
61305f2336efSEd Maste 	};
61315f2336efSEd Maste 	if (p != NULL)
61325f2336efSEd Maste 		strlcpy(desc, p, descsz);
61335f2336efSEd Maste }
61345f2336efSEd Maste static void
61355f2336efSEd Maste systrace_return_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
61365f2336efSEd Maste {
61375f2336efSEd Maste 	const char *p = NULL;
61385f2336efSEd Maste 	switch (sysnum) {
61395f2336efSEd Maste #define	nosys	linux_nosys
61405f2336efSEd Maste 	/* linux_setxattr */
61415f2336efSEd Maste 	case 5:
6142a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
6143a39cdcd7SEdward Tomasz Napierala 			p = "int";
6144a39cdcd7SEdward Tomasz Napierala 		break;
61455f2336efSEd Maste 	/* linux_lsetxattr */
61465f2336efSEd Maste 	case 6:
6147a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
6148a39cdcd7SEdward Tomasz Napierala 			p = "int";
6149a39cdcd7SEdward Tomasz Napierala 		break;
61505f2336efSEd Maste 	/* linux_fsetxattr */
61515f2336efSEd Maste 	case 7:
6152a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
6153a39cdcd7SEdward Tomasz Napierala 			p = "int";
6154a39cdcd7SEdward Tomasz Napierala 		break;
61555f2336efSEd Maste 	/* linux_getxattr */
61565f2336efSEd Maste 	case 8:
6157a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
6158a39cdcd7SEdward Tomasz Napierala 			p = "int";
6159a39cdcd7SEdward Tomasz Napierala 		break;
61605f2336efSEd Maste 	/* linux_lgetxattr */
61615f2336efSEd Maste 	case 9:
6162a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
6163a39cdcd7SEdward Tomasz Napierala 			p = "int";
6164a39cdcd7SEdward Tomasz Napierala 		break;
61655f2336efSEd Maste 	/* linux_fgetxattr */
61665f2336efSEd Maste 	case 10:
6167a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
6168a39cdcd7SEdward Tomasz Napierala 			p = "int";
6169a39cdcd7SEdward Tomasz Napierala 		break;
61705f2336efSEd Maste 	/* linux_listxattr */
61715f2336efSEd Maste 	case 11:
6172a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
6173a39cdcd7SEdward Tomasz Napierala 			p = "int";
6174a39cdcd7SEdward Tomasz Napierala 		break;
61755f2336efSEd Maste 	/* linux_llistxattr */
61765f2336efSEd Maste 	case 12:
6177a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
6178a39cdcd7SEdward Tomasz Napierala 			p = "int";
6179a39cdcd7SEdward Tomasz Napierala 		break;
61805f2336efSEd Maste 	/* linux_flistxattr */
61815f2336efSEd Maste 	case 13:
6182a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
6183a39cdcd7SEdward Tomasz Napierala 			p = "int";
6184a39cdcd7SEdward Tomasz Napierala 		break;
61855f2336efSEd Maste 	/* linux_removexattr */
61865f2336efSEd Maste 	case 14:
6187a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
6188a39cdcd7SEdward Tomasz Napierala 			p = "int";
6189a39cdcd7SEdward Tomasz Napierala 		break;
61905f2336efSEd Maste 	/* linux_lremovexattr */
61915f2336efSEd Maste 	case 15:
6192a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
6193a39cdcd7SEdward Tomasz Napierala 			p = "int";
6194a39cdcd7SEdward Tomasz Napierala 		break;
61955f2336efSEd Maste 	/* linux_fremovexattr */
61965f2336efSEd Maste 	case 16:
6197a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
6198a39cdcd7SEdward Tomasz Napierala 			p = "int";
6199a39cdcd7SEdward Tomasz Napierala 		break;
62005f2336efSEd Maste 	/* linux_getcwd */
62015f2336efSEd Maste 	case 17:
62025f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
62035f2336efSEd Maste 			p = "int";
62045f2336efSEd Maste 		break;
62055f2336efSEd Maste 	/* linux_lookup_dcookie */
62065f2336efSEd Maste 	case 18:
62075f2336efSEd Maste 	/* linux_eventfd2 */
62085f2336efSEd Maste 	case 19:
62095f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
62105f2336efSEd Maste 			p = "int";
62115f2336efSEd Maste 		break;
62125f2336efSEd Maste 	/* linux_epoll_create1 */
62135f2336efSEd Maste 	case 20:
62145f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
62155f2336efSEd Maste 			p = "int";
62165f2336efSEd Maste 		break;
62175f2336efSEd Maste 	/* linux_epoll_ctl */
62185f2336efSEd Maste 	case 21:
62195f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
62205f2336efSEd Maste 			p = "int";
62215f2336efSEd Maste 		break;
62225f2336efSEd Maste 	/* linux_epoll_pwait */
62235f2336efSEd Maste 	case 22:
62245f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
62255f2336efSEd Maste 			p = "int";
62265f2336efSEd Maste 		break;
6227c4db0baaSEd Maste 	/* dup */
6228c4db0baaSEd Maste 	case 23:
6229c4db0baaSEd Maste 		if (ndx == 0 || ndx == 1)
6230c4db0baaSEd Maste 			p = "int";
6231c4db0baaSEd Maste 		break;
62325f2336efSEd Maste 	/* linux_dup3 */
62335f2336efSEd Maste 	case 24:
62345f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
62355f2336efSEd Maste 			p = "int";
62365f2336efSEd Maste 		break;
62375f2336efSEd Maste 	/* linux_fcntl */
62385f2336efSEd Maste 	case 25:
62395f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
62405f2336efSEd Maste 			p = "int";
62415f2336efSEd Maste 		break;
62425f2336efSEd Maste 	/* linux_inotify_init1 */
62435f2336efSEd Maste 	case 26:
62445f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
62455f2336efSEd Maste 			p = "int";
62465f2336efSEd Maste 		break;
62475f2336efSEd Maste 	/* linux_inotify_add_watch */
62485f2336efSEd Maste 	case 27:
62495f2336efSEd Maste 	/* linux_inotify_rm_watch */
62505f2336efSEd Maste 	case 28:
62515f2336efSEd Maste 	/* linux_ioctl */
62525f2336efSEd Maste 	case 29:
62535f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
62545f2336efSEd Maste 			p = "int";
62555f2336efSEd Maste 		break;
62565f2336efSEd Maste 	/* linux_ioprio_set */
62575f2336efSEd Maste 	case 30:
62585f2336efSEd Maste 	/* linux_ioprio_get */
62595f2336efSEd Maste 	case 31:
62605f2336efSEd Maste 	/* flock */
62615f2336efSEd Maste 	case 32:
62625f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
62635f2336efSEd Maste 			p = "int";
62645f2336efSEd Maste 		break;
62655f2336efSEd Maste 	/* linux_mknodat */
62665f2336efSEd Maste 	case 33:
62675f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
62685f2336efSEd Maste 			p = "int";
62695f2336efSEd Maste 		break;
62705f2336efSEd Maste 	/* linux_mkdirat */
62715f2336efSEd Maste 	case 34:
62725f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
62735f2336efSEd Maste 			p = "int";
62745f2336efSEd Maste 		break;
62755f2336efSEd Maste 	/* linux_unlinkat */
62765f2336efSEd Maste 	case 35:
62775f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
62785f2336efSEd Maste 			p = "int";
62795f2336efSEd Maste 		break;
62805f2336efSEd Maste 	/* linux_symlinkat */
62815f2336efSEd Maste 	case 36:
62825f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
62835f2336efSEd Maste 			p = "int";
62845f2336efSEd Maste 		break;
62855f2336efSEd Maste 	/* linux_linkat */
62865f2336efSEd Maste 	case 37:
62875f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
62885f2336efSEd Maste 			p = "int";
62895f2336efSEd Maste 		break;
62905f2336efSEd Maste 	/* linux_renameat */
62915f2336efSEd Maste 	case 38:
62925f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
62935f2336efSEd Maste 			p = "int";
62945f2336efSEd Maste 		break;
62955f2336efSEd Maste 	/* linux_mount */
62965f2336efSEd Maste 	case 40:
62975f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
62985f2336efSEd Maste 			p = "int";
62995f2336efSEd Maste 		break;
63005f2336efSEd Maste 	/* linux_pivot_root */
63015f2336efSEd Maste 	case 41:
63025f2336efSEd Maste 	/* linux_statfs */
63035f2336efSEd Maste 	case 43:
63045f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
63055f2336efSEd Maste 			p = "int";
63065f2336efSEd Maste 		break;
63075f2336efSEd Maste 	/* linux_fstatfs */
63085f2336efSEd Maste 	case 44:
63095f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
63105f2336efSEd Maste 			p = "int";
63115f2336efSEd Maste 		break;
63125f2336efSEd Maste 	/* linux_truncate */
63135f2336efSEd Maste 	case 45:
63145f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
63155f2336efSEd Maste 			p = "int";
63165f2336efSEd Maste 		break;
63175f2336efSEd Maste 	/* linux_ftruncate */
63185f2336efSEd Maste 	case 46:
63195f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
63205f2336efSEd Maste 			p = "int";
63215f2336efSEd Maste 		break;
63225f2336efSEd Maste 	/* linux_fallocate */
63235f2336efSEd Maste 	case 47:
63245f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
63255f2336efSEd Maste 			p = "int";
63265f2336efSEd Maste 		break;
63275f2336efSEd Maste 	/* linux_faccessat */
63285f2336efSEd Maste 	case 48:
63295f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
63305f2336efSEd Maste 			p = "int";
63315f2336efSEd Maste 		break;
63325f2336efSEd Maste 	/* linux_chdir */
63335f2336efSEd Maste 	case 49:
63345f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
63355f2336efSEd Maste 			p = "int";
63365f2336efSEd Maste 		break;
63375f2336efSEd Maste 	/* fchdir */
63385f2336efSEd Maste 	case 50:
63395f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
63405f2336efSEd Maste 			p = "int";
63415f2336efSEd Maste 		break;
63425f2336efSEd Maste 	/* chroot */
63435f2336efSEd Maste 	case 51:
63445f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
63455f2336efSEd Maste 			p = "int";
63465f2336efSEd Maste 		break;
63475f2336efSEd Maste 	/* fchmod */
63485f2336efSEd Maste 	case 52:
63495f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
63505f2336efSEd Maste 			p = "int";
63515f2336efSEd Maste 		break;
63525f2336efSEd Maste 	/* linux_fchmodat */
63535f2336efSEd Maste 	case 53:
63545f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
63555f2336efSEd Maste 			p = "int";
63565f2336efSEd Maste 		break;
63575f2336efSEd Maste 	/* linux_fchownat */
63585f2336efSEd Maste 	case 54:
63595f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
63605f2336efSEd Maste 			p = "int";
63615f2336efSEd Maste 		break;
63625f2336efSEd Maste 	/* fchown */
63635f2336efSEd Maste 	case 55:
63645f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
63655f2336efSEd Maste 			p = "int";
63665f2336efSEd Maste 		break;
63675f2336efSEd Maste 	/* linux_openat */
63685f2336efSEd Maste 	case 56:
63695f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
63705f2336efSEd Maste 			p = "int";
63715f2336efSEd Maste 		break;
63725f2336efSEd Maste 	/* close */
63735f2336efSEd Maste 	case 57:
63745f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
63755f2336efSEd Maste 			p = "int";
63765f2336efSEd Maste 		break;
63775f2336efSEd Maste 	/* linux_vhangup */
63785f2336efSEd Maste 	case 58:
63795f2336efSEd Maste 	/* linux_pipe2 */
63805f2336efSEd Maste 	case 59:
63815f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
63825f2336efSEd Maste 			p = "int";
63835f2336efSEd Maste 		break;
63845f2336efSEd Maste 	/* linux_getdents64 */
63855f2336efSEd Maste 	case 61:
63865f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
63875f2336efSEd Maste 			p = "int";
63885f2336efSEd Maste 		break;
63895f2336efSEd Maste 	/* linux_lseek */
63905f2336efSEd Maste 	case 62:
63915f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
63925f2336efSEd Maste 			p = "int";
63935f2336efSEd Maste 		break;
63945f2336efSEd Maste 	/* read */
63955f2336efSEd Maste 	case 63:
63965f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
63975f2336efSEd Maste 			p = "int";
63985f2336efSEd Maste 		break;
63995f2336efSEd Maste 	/* write */
64005f2336efSEd Maste 	case 64:
64015f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
64025f2336efSEd Maste 			p = "int";
64035f2336efSEd Maste 		break;
64045f2336efSEd Maste 	/* readv */
64055f2336efSEd Maste 	case 65:
64065f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
64075f2336efSEd Maste 			p = "int";
64085f2336efSEd Maste 		break;
64095f2336efSEd Maste 	/* writev */
64105f2336efSEd Maste 	case 66:
64115f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
64125f2336efSEd Maste 			p = "int";
64135f2336efSEd Maste 		break;
64145f2336efSEd Maste 	/* linux_pread */
64155f2336efSEd Maste 	case 67:
64165f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
64175f2336efSEd Maste 			p = "int";
64185f2336efSEd Maste 		break;
64195f2336efSEd Maste 	/* linux_pwrite */
64205f2336efSEd Maste 	case 68:
64215f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
64225f2336efSEd Maste 			p = "int";
64235f2336efSEd Maste 		break;
64245f2336efSEd Maste 	/* linux_preadv */
64255f2336efSEd Maste 	case 69:
64265f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
64275f2336efSEd Maste 			p = "int";
64285f2336efSEd Maste 		break;
64295f2336efSEd Maste 	/* linux_pwritev */
64305f2336efSEd Maste 	case 70:
64315f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
64325f2336efSEd Maste 			p = "int";
64335f2336efSEd Maste 		break;
64345f2336efSEd Maste 	/* linux_sendfile */
64355f2336efSEd Maste 	case 71:
64365f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
64375f2336efSEd Maste 			p = "int";
64385f2336efSEd Maste 		break;
64395f2336efSEd Maste 	/* linux_pselect6 */
64405f2336efSEd Maste 	case 72:
64415f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
64425f2336efSEd Maste 			p = "int";
64435f2336efSEd Maste 		break;
64445f2336efSEd Maste 	/* linux_ppoll */
64455f2336efSEd Maste 	case 73:
64465f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
64475f2336efSEd Maste 			p = "int";
64485f2336efSEd Maste 		break;
64495f2336efSEd Maste 	/* linux_signalfd4 */
64505f2336efSEd Maste 	case 74:
64515f2336efSEd Maste 	/* linux_vmsplice */
64525f2336efSEd Maste 	case 75:
64535f2336efSEd Maste 	/* linux_splice */
64545f2336efSEd Maste 	case 76:
64553e9a2142SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
64563e9a2142SEdward Tomasz Napierala 			p = "int";
64573e9a2142SEdward Tomasz Napierala 		break;
64585f2336efSEd Maste 	/* linux_tee */
64595f2336efSEd Maste 	case 77:
64605f2336efSEd Maste 	/* linux_readlinkat */
64615f2336efSEd Maste 	case 78:
64625f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
64635f2336efSEd Maste 			p = "int";
64645f2336efSEd Maste 		break;
64655f2336efSEd Maste 	/* linux_newfstatat */
64665f2336efSEd Maste 	case 79:
64675f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
64685f2336efSEd Maste 			p = "int";
64695f2336efSEd Maste 		break;
64705f2336efSEd Maste 	/* linux_newfstat */
64715f2336efSEd Maste 	case 80:
64725f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
64735f2336efSEd Maste 			p = "int";
64745f2336efSEd Maste 		break;
64755f2336efSEd Maste 	/* fsync */
64765f2336efSEd Maste 	case 82:
64775f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
64785f2336efSEd Maste 			p = "int";
64795f2336efSEd Maste 		break;
64805f2336efSEd Maste 	/* linux_fdatasync */
64815f2336efSEd Maste 	case 83:
64825f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
64835f2336efSEd Maste 			p = "int";
64845f2336efSEd Maste 		break;
64855f2336efSEd Maste 	/* linux_sync_file_range */
64865f2336efSEd Maste 	case 84:
64870cde2b32SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
64880cde2b32SEdward Tomasz Napierala 			p = "int";
64890cde2b32SEdward Tomasz Napierala 		break;
64905f2336efSEd Maste 	/* linux_timerfd_create */
64915f2336efSEd Maste 	case 85:
64925f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
64935f2336efSEd Maste 			p = "int";
64945f2336efSEd Maste 		break;
64955f2336efSEd Maste 	/* linux_timerfd_settime */
64965f2336efSEd Maste 	case 86:
64975f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
64985f2336efSEd Maste 			p = "int";
64995f2336efSEd Maste 		break;
65005f2336efSEd Maste 	/* linux_timerfd_gettime */
65015f2336efSEd Maste 	case 87:
65025f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65035f2336efSEd Maste 			p = "int";
65045f2336efSEd Maste 		break;
65055f2336efSEd Maste 	/* linux_utimensat */
65065f2336efSEd Maste 	case 88:
65075f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65085f2336efSEd Maste 			p = "int";
65095f2336efSEd Maste 		break;
65105f2336efSEd Maste 	/* acct */
65115f2336efSEd Maste 	case 89:
65125f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65135f2336efSEd Maste 			p = "int";
65145f2336efSEd Maste 		break;
65155f2336efSEd Maste 	/* linux_capget */
65165f2336efSEd Maste 	case 90:
65175f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65185f2336efSEd Maste 			p = "int";
65195f2336efSEd Maste 		break;
65205f2336efSEd Maste 	/* linux_capset */
65215f2336efSEd Maste 	case 91:
65225f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65235f2336efSEd Maste 			p = "int";
65245f2336efSEd Maste 		break;
65255f2336efSEd Maste 	/* linux_personality */
65265f2336efSEd Maste 	case 92:
65275f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65285f2336efSEd Maste 			p = "int";
65295f2336efSEd Maste 		break;
65305f2336efSEd Maste 	/* linux_exit */
65315f2336efSEd Maste 	case 93:
65325f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65335f2336efSEd Maste 			p = "int";
65345f2336efSEd Maste 		break;
65355f2336efSEd Maste 	/* linux_exit_group */
65365f2336efSEd Maste 	case 94:
65375f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65385f2336efSEd Maste 			p = "int";
65395f2336efSEd Maste 		break;
65405f2336efSEd Maste 	/* linux_waitid */
65415f2336efSEd Maste 	case 95:
65425f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65435f2336efSEd Maste 			p = "int";
65445f2336efSEd Maste 		break;
65455f2336efSEd Maste 	/* linux_set_tid_address */
65465f2336efSEd Maste 	case 96:
65475f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65485f2336efSEd Maste 			p = "int";
65495f2336efSEd Maste 		break;
65505f2336efSEd Maste 	/* linux_unshare */
65515f2336efSEd Maste 	case 97:
65525f2336efSEd Maste 	/* linux_sys_futex */
65535f2336efSEd Maste 	case 98:
65545f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65555f2336efSEd Maste 			p = "int";
65565f2336efSEd Maste 		break;
65575f2336efSEd Maste 	/* linux_set_robust_list */
65585f2336efSEd Maste 	case 99:
65595f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65605f2336efSEd Maste 			p = "int";
65615f2336efSEd Maste 		break;
65625f2336efSEd Maste 	/* linux_get_robust_list */
65635f2336efSEd Maste 	case 100:
65645f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65655f2336efSEd Maste 			p = "int";
65665f2336efSEd Maste 		break;
65675f2336efSEd Maste 	/* linux_nanosleep */
65685f2336efSEd Maste 	case 101:
65695f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65705f2336efSEd Maste 			p = "int";
65715f2336efSEd Maste 		break;
65725f2336efSEd Maste 	/* linux_getitimer */
65735f2336efSEd Maste 	case 102:
65745f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65755f2336efSEd Maste 			p = "int";
65765f2336efSEd Maste 		break;
65775f2336efSEd Maste 	/* linux_setitimer */
65785f2336efSEd Maste 	case 103:
65795f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65805f2336efSEd Maste 			p = "int";
65815f2336efSEd Maste 		break;
65825f2336efSEd Maste 	/* linux_kexec_load */
65835f2336efSEd Maste 	case 104:
65845f2336efSEd Maste 	/* linux_init_module */
65855f2336efSEd Maste 	case 105:
65865f2336efSEd Maste 	/* linux_delete_module */
65875f2336efSEd Maste 	case 106:
65885f2336efSEd Maste 	/* linux_timer_create */
65895f2336efSEd Maste 	case 107:
65905f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65915f2336efSEd Maste 			p = "int";
65925f2336efSEd Maste 		break;
65935f2336efSEd Maste 	/* linux_timer_gettime */
65945f2336efSEd Maste 	case 108:
65955f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
65965f2336efSEd Maste 			p = "int";
65975f2336efSEd Maste 		break;
65985f2336efSEd Maste 	/* linux_timer_getoverrun */
65995f2336efSEd Maste 	case 109:
66005f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66015f2336efSEd Maste 			p = "int";
66025f2336efSEd Maste 		break;
66035f2336efSEd Maste 	/* linux_timer_settime */
66045f2336efSEd Maste 	case 110:
66055f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66065f2336efSEd Maste 			p = "int";
66075f2336efSEd Maste 		break;
66085f2336efSEd Maste 	/* linux_timer_delete */
66095f2336efSEd Maste 	case 111:
66105f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66115f2336efSEd Maste 			p = "int";
66125f2336efSEd Maste 		break;
66135f2336efSEd Maste 	/* linux_clock_settime */
66145f2336efSEd Maste 	case 112:
66155f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66165f2336efSEd Maste 			p = "int";
66175f2336efSEd Maste 		break;
66185f2336efSEd Maste 	/* linux_clock_gettime */
66195f2336efSEd Maste 	case 113:
66205f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66215f2336efSEd Maste 			p = "int";
66225f2336efSEd Maste 		break;
66235f2336efSEd Maste 	/* linux_clock_getres */
66245f2336efSEd Maste 	case 114:
66255f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66265f2336efSEd Maste 			p = "int";
66275f2336efSEd Maste 		break;
66285f2336efSEd Maste 	/* linux_clock_nanosleep */
66295f2336efSEd Maste 	case 115:
66305f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66315f2336efSEd Maste 			p = "int";
66325f2336efSEd Maste 		break;
66335f2336efSEd Maste 	/* linux_syslog */
66345f2336efSEd Maste 	case 116:
66355f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66365f2336efSEd Maste 			p = "int";
66375f2336efSEd Maste 		break;
66385f2336efSEd Maste 	/* linux_ptrace */
66395f2336efSEd Maste 	case 117:
66405f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66415f2336efSEd Maste 			p = "int";
66425f2336efSEd Maste 		break;
66435f2336efSEd Maste 	/* linux_sched_setparam */
66445f2336efSEd Maste 	case 118:
66455f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66465f2336efSEd Maste 			p = "int";
66475f2336efSEd Maste 		break;
66485f2336efSEd Maste 	/* linux_sched_setscheduler */
66495f2336efSEd Maste 	case 119:
66505f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66515f2336efSEd Maste 			p = "int";
66525f2336efSEd Maste 		break;
66535f2336efSEd Maste 	/* linux_sched_getscheduler */
66545f2336efSEd Maste 	case 120:
66555f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66565f2336efSEd Maste 			p = "int";
66575f2336efSEd Maste 		break;
66585f2336efSEd Maste 	/* linux_sched_getparam */
66595f2336efSEd Maste 	case 121:
66605f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66615f2336efSEd Maste 			p = "int";
66625f2336efSEd Maste 		break;
66635f2336efSEd Maste 	/* linux_sched_setaffinity */
66645f2336efSEd Maste 	case 122:
66655f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66665f2336efSEd Maste 			p = "int";
66675f2336efSEd Maste 		break;
66685f2336efSEd Maste 	/* linux_sched_getaffinity */
66695f2336efSEd Maste 	case 123:
66705f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66715f2336efSEd Maste 			p = "int";
66725f2336efSEd Maste 		break;
66735f2336efSEd Maste 	/* sched_yield */
66745f2336efSEd Maste 	case 124:
66755f2336efSEd Maste 	/* linux_sched_get_priority_max */
66765f2336efSEd Maste 	case 125:
66775f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66785f2336efSEd Maste 			p = "int";
66795f2336efSEd Maste 		break;
66805f2336efSEd Maste 	/* linux_sched_get_priority_min */
66815f2336efSEd Maste 	case 126:
66825f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66835f2336efSEd Maste 			p = "int";
66845f2336efSEd Maste 		break;
66855f2336efSEd Maste 	/* linux_sched_rr_get_interval */
66865f2336efSEd Maste 	case 127:
66875f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66885f2336efSEd Maste 			p = "int";
66895f2336efSEd Maste 		break;
66905f2336efSEd Maste 	/* linux_kill */
66915f2336efSEd Maste 	case 129:
66925f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66935f2336efSEd Maste 			p = "int";
66945f2336efSEd Maste 		break;
66955f2336efSEd Maste 	/* linux_tkill */
66965f2336efSEd Maste 	case 130:
66975f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
66985f2336efSEd Maste 			p = "int";
66995f2336efSEd Maste 		break;
67005f2336efSEd Maste 	/* linux_tgkill */
67015f2336efSEd Maste 	case 131:
67025f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67035f2336efSEd Maste 			p = "int";
67045f2336efSEd Maste 		break;
67055f2336efSEd Maste 	/* linux_sigaltstack */
67065f2336efSEd Maste 	case 132:
67075f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67085f2336efSEd Maste 			p = "int";
67095f2336efSEd Maste 		break;
67105f2336efSEd Maste 	/* linux_rt_sigsuspend */
67115f2336efSEd Maste 	case 133:
67125f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67135f2336efSEd Maste 			p = "int";
67145f2336efSEd Maste 		break;
67155f2336efSEd Maste 	/* linux_rt_sigaction */
67165f2336efSEd Maste 	case 134:
67175f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67185f2336efSEd Maste 			p = "int";
67195f2336efSEd Maste 		break;
67205f2336efSEd Maste 	/* linux_rt_sigprocmask */
67215f2336efSEd Maste 	case 135:
67225f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67235f2336efSEd Maste 			p = "int";
67245f2336efSEd Maste 		break;
67255f2336efSEd Maste 	/* linux_rt_sigpending */
67265f2336efSEd Maste 	case 136:
67275f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67285f2336efSEd Maste 			p = "int";
67295f2336efSEd Maste 		break;
67305f2336efSEd Maste 	/* linux_rt_sigtimedwait */
67315f2336efSEd Maste 	case 137:
67325f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67335f2336efSEd Maste 			p = "int";
67345f2336efSEd Maste 		break;
67355f2336efSEd Maste 	/* linux_rt_sigqueueinfo */
67365f2336efSEd Maste 	case 138:
67375f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67385f2336efSEd Maste 			p = "int";
67395f2336efSEd Maste 		break;
67405f2336efSEd Maste 	/* linux_rt_sigreturn */
67415f2336efSEd Maste 	case 139:
67425f2336efSEd Maste 	/* setpriority */
67435f2336efSEd Maste 	case 140:
67445f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67455f2336efSEd Maste 			p = "int";
67465f2336efSEd Maste 		break;
67475f2336efSEd Maste 	/* linux_getpriority */
67485f2336efSEd Maste 	case 141:
67495f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67505f2336efSEd Maste 			p = "int";
67515f2336efSEd Maste 		break;
67525f2336efSEd Maste 	/* linux_reboot */
67535f2336efSEd Maste 	case 142:
67545f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67555f2336efSEd Maste 			p = "int";
67565f2336efSEd Maste 		break;
67575f2336efSEd Maste 	/* setregid */
67585f2336efSEd Maste 	case 143:
67595f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67605f2336efSEd Maste 			p = "int";
67615f2336efSEd Maste 		break;
67625f2336efSEd Maste 	/* setgid */
67635f2336efSEd Maste 	case 144:
67645f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67655f2336efSEd Maste 			p = "int";
67665f2336efSEd Maste 		break;
67675f2336efSEd Maste 	/* setreuid */
67685f2336efSEd Maste 	case 145:
67695f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67705f2336efSEd Maste 			p = "int";
67715f2336efSEd Maste 		break;
67725f2336efSEd Maste 	/* setuid */
67735f2336efSEd Maste 	case 146:
67745f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67755f2336efSEd Maste 			p = "int";
67765f2336efSEd Maste 		break;
67775f2336efSEd Maste 	/* setresuid */
67785f2336efSEd Maste 	case 147:
67795f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67805f2336efSEd Maste 			p = "int";
67815f2336efSEd Maste 		break;
67825f2336efSEd Maste 	/* getresuid */
67835f2336efSEd Maste 	case 148:
67845f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67855f2336efSEd Maste 			p = "int";
67865f2336efSEd Maste 		break;
67875f2336efSEd Maste 	/* setresgid */
67885f2336efSEd Maste 	case 149:
67895f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67905f2336efSEd Maste 			p = "int";
67915f2336efSEd Maste 		break;
67925f2336efSEd Maste 	/* getresgid */
67935f2336efSEd Maste 	case 150:
67945f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
67955f2336efSEd Maste 			p = "int";
67965f2336efSEd Maste 		break;
67975f2336efSEd Maste 	/* linux_setfsuid */
67985f2336efSEd Maste 	case 151:
67995f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68005f2336efSEd Maste 			p = "int";
68015f2336efSEd Maste 		break;
68025f2336efSEd Maste 	/* linux_setfsgid */
68035f2336efSEd Maste 	case 152:
68045f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68055f2336efSEd Maste 			p = "int";
68065f2336efSEd Maste 		break;
68075f2336efSEd Maste 	/* linux_times */
68085f2336efSEd Maste 	case 153:
68095f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68105f2336efSEd Maste 			p = "int";
68115f2336efSEd Maste 		break;
68125f2336efSEd Maste 	/* setpgid */
68135f2336efSEd Maste 	case 154:
68145f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68155f2336efSEd Maste 			p = "int";
68165f2336efSEd Maste 		break;
68175f2336efSEd Maste 	/* getpgid */
68185f2336efSEd Maste 	case 155:
68195f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68205f2336efSEd Maste 			p = "int";
68215f2336efSEd Maste 		break;
68225f2336efSEd Maste 	/* linux_getsid */
68235f2336efSEd Maste 	case 156:
68245f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68255f2336efSEd Maste 			p = "int";
68265f2336efSEd Maste 		break;
68275f2336efSEd Maste 	/* setsid */
68285f2336efSEd Maste 	case 157:
68295f2336efSEd Maste 	/* linux_getgroups */
68305f2336efSEd Maste 	case 158:
68315f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68325f2336efSEd Maste 			p = "int";
68335f2336efSEd Maste 		break;
68345f2336efSEd Maste 	/* linux_setgroups */
68355f2336efSEd Maste 	case 159:
68365f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68375f2336efSEd Maste 			p = "int";
68385f2336efSEd Maste 		break;
68395f2336efSEd Maste 	/* linux_newuname */
68405f2336efSEd Maste 	case 160:
68415f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68425f2336efSEd Maste 			p = "int";
68435f2336efSEd Maste 		break;
68445f2336efSEd Maste 	/* linux_sethostname */
68455f2336efSEd Maste 	case 161:
68465f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68475f2336efSEd Maste 			p = "int";
68485f2336efSEd Maste 		break;
68495f2336efSEd Maste 	/* linux_setdomainname */
68505f2336efSEd Maste 	case 162:
68515f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68525f2336efSEd Maste 			p = "int";
68535f2336efSEd Maste 		break;
68545f2336efSEd Maste 	/* linux_getrlimit */
68555f2336efSEd Maste 	case 163:
68565f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68575f2336efSEd Maste 			p = "int";
68585f2336efSEd Maste 		break;
68595f2336efSEd Maste 	/* linux_setrlimit */
68605f2336efSEd Maste 	case 164:
68615f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68625f2336efSEd Maste 			p = "int";
68635f2336efSEd Maste 		break;
68645f2336efSEd Maste 	/* getrusage */
68655f2336efSEd Maste 	case 165:
68665f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68675f2336efSEd Maste 			p = "int";
68685f2336efSEd Maste 		break;
68695f2336efSEd Maste 	/* umask */
68705f2336efSEd Maste 	case 166:
68715f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68725f2336efSEd Maste 			p = "int";
68735f2336efSEd Maste 		break;
68745f2336efSEd Maste 	/* linux_prctl */
68755f2336efSEd Maste 	case 167:
68765f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68775f2336efSEd Maste 			p = "int";
68785f2336efSEd Maste 		break;
68795f2336efSEd Maste 	/* linux_getcpu */
68805f2336efSEd Maste 	case 168:
68815f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68825f2336efSEd Maste 			p = "int";
68835f2336efSEd Maste 		break;
68845f2336efSEd Maste 	/* gettimeofday */
68855f2336efSEd Maste 	case 169:
68865f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68875f2336efSEd Maste 			p = "int";
68885f2336efSEd Maste 		break;
68895f2336efSEd Maste 	/* settimeofday */
68905f2336efSEd Maste 	case 170:
68915f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
68925f2336efSEd Maste 			p = "int";
68935f2336efSEd Maste 		break;
68945f2336efSEd Maste 	/* linux_adjtimex */
68955f2336efSEd Maste 	case 171:
68965f2336efSEd Maste 	/* linux_getpid */
68975f2336efSEd Maste 	case 172:
68985f2336efSEd Maste 	/* linux_getppid */
68995f2336efSEd Maste 	case 173:
69005f2336efSEd Maste 	/* linux_getuid */
69015f2336efSEd Maste 	case 174:
69025f2336efSEd Maste 	/* geteuid */
69035f2336efSEd Maste 	case 175:
69045f2336efSEd Maste 	/* linux_getgid */
69055f2336efSEd Maste 	case 176:
69065f2336efSEd Maste 	/* getegid */
69075f2336efSEd Maste 	case 177:
69085f2336efSEd Maste 	/* linux_gettid */
69095f2336efSEd Maste 	case 178:
69105f2336efSEd Maste 	/* linux_sysinfo */
69115f2336efSEd Maste 	case 179:
69125f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
69135f2336efSEd Maste 			p = "int";
69145f2336efSEd Maste 		break;
69155f2336efSEd Maste 	/* linux_mq_open */
69165f2336efSEd Maste 	case 180:
6917a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
6918a39cdcd7SEdward Tomasz Napierala 			p = "int";
6919a39cdcd7SEdward Tomasz Napierala 		break;
69205f2336efSEd Maste 	/* linux_mq_unlink */
69215f2336efSEd Maste 	case 181:
6922a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
6923a39cdcd7SEdward Tomasz Napierala 			p = "int";
6924a39cdcd7SEdward Tomasz Napierala 		break;
69255f2336efSEd Maste 	/* linux_mq_timedsend */
69265f2336efSEd Maste 	case 182:
6927a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
6928a39cdcd7SEdward Tomasz Napierala 			p = "int";
6929a39cdcd7SEdward Tomasz Napierala 		break;
69305f2336efSEd Maste 	/* linux_mq_timedreceive */
69315f2336efSEd Maste 	case 183:
6932a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
6933a39cdcd7SEdward Tomasz Napierala 			p = "int";
6934a39cdcd7SEdward Tomasz Napierala 		break;
69355f2336efSEd Maste 	/* linux_mq_notify */
69365f2336efSEd Maste 	case 184:
6937a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
6938a39cdcd7SEdward Tomasz Napierala 			p = "int";
6939a39cdcd7SEdward Tomasz Napierala 		break;
69405f2336efSEd Maste 	/* linux_mq_getsetattr */
69415f2336efSEd Maste 	case 185:
6942a39cdcd7SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
6943a39cdcd7SEdward Tomasz Napierala 			p = "int";
6944a39cdcd7SEdward Tomasz Napierala 		break;
69455f2336efSEd Maste 	/* linux_msgget */
69465f2336efSEd Maste 	case 186:
69475f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
69485f2336efSEd Maste 			p = "int";
69495f2336efSEd Maste 		break;
69505f2336efSEd Maste 	/* linux_msgctl */
69515f2336efSEd Maste 	case 187:
69525f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
69535f2336efSEd Maste 			p = "int";
69545f2336efSEd Maste 		break;
69555f2336efSEd Maste 	/* linux_msgrcv */
69565f2336efSEd Maste 	case 188:
69575f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
69585f2336efSEd Maste 			p = "int";
69595f2336efSEd Maste 		break;
69605f2336efSEd Maste 	/* linux_msgsnd */
69615f2336efSEd Maste 	case 189:
69625f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
69635f2336efSEd Maste 			p = "int";
69645f2336efSEd Maste 		break;
69655f2336efSEd Maste 	/* linux_semget */
69665f2336efSEd Maste 	case 190:
69675f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
69685f2336efSEd Maste 			p = "int";
69695f2336efSEd Maste 		break;
69705f2336efSEd Maste 	/* linux_semctl */
69715f2336efSEd Maste 	case 191:
69725f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
69735f2336efSEd Maste 			p = "int";
69745f2336efSEd Maste 		break;
69755f2336efSEd Maste 	/* linux_semtimedop */
69765f2336efSEd Maste 	case 192:
69775f2336efSEd Maste 	/* linux_semop */
69785f2336efSEd Maste 	case 193:
69795f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
69805f2336efSEd Maste 			p = "int";
69815f2336efSEd Maste 		break;
69825f2336efSEd Maste 	/* linux_shmget */
69835f2336efSEd Maste 	case 194:
69845f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
69855f2336efSEd Maste 			p = "int";
69865f2336efSEd Maste 		break;
69875f2336efSEd Maste 	/* linux_shmctl */
69885f2336efSEd Maste 	case 195:
69895f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
69905f2336efSEd Maste 			p = "int";
69915f2336efSEd Maste 		break;
69925f2336efSEd Maste 	/* linux_shmat */
69935f2336efSEd Maste 	case 196:
69945f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
69955f2336efSEd Maste 			p = "int";
69965f2336efSEd Maste 		break;
69975f2336efSEd Maste 	/* linux_shmdt */
69985f2336efSEd Maste 	case 197:
69995f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70005f2336efSEd Maste 			p = "int";
70015f2336efSEd Maste 		break;
70025f2336efSEd Maste 	/* linux_socket */
70035f2336efSEd Maste 	case 198:
70045f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70055f2336efSEd Maste 			p = "int";
70065f2336efSEd Maste 		break;
70075f2336efSEd Maste 	/* linux_socketpair */
70085f2336efSEd Maste 	case 199:
70095f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70105f2336efSEd Maste 			p = "int";
70115f2336efSEd Maste 		break;
70125f2336efSEd Maste 	/* linux_bind */
70135f2336efSEd Maste 	case 200:
70145f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70155f2336efSEd Maste 			p = "int";
70165f2336efSEd Maste 		break;
70175f2336efSEd Maste 	/* linux_listen */
70185f2336efSEd Maste 	case 201:
70195f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70205f2336efSEd Maste 			p = "int";
70215f2336efSEd Maste 		break;
70225f2336efSEd Maste 	/* linux_accept */
70235f2336efSEd Maste 	case 202:
70245f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70255f2336efSEd Maste 			p = "int";
70265f2336efSEd Maste 		break;
70275f2336efSEd Maste 	/* linux_connect */
70285f2336efSEd Maste 	case 203:
70295f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70305f2336efSEd Maste 			p = "int";
70315f2336efSEd Maste 		break;
70325f2336efSEd Maste 	/* linux_getsockname */
70335f2336efSEd Maste 	case 204:
70345f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70355f2336efSEd Maste 			p = "int";
70365f2336efSEd Maste 		break;
70375f2336efSEd Maste 	/* linux_getpeername */
70385f2336efSEd Maste 	case 205:
70395f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70405f2336efSEd Maste 			p = "int";
70415f2336efSEd Maste 		break;
70425f2336efSEd Maste 	/* linux_sendto */
70435f2336efSEd Maste 	case 206:
70445f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70455f2336efSEd Maste 			p = "int";
70465f2336efSEd Maste 		break;
70475f2336efSEd Maste 	/* linux_recvfrom */
70485f2336efSEd Maste 	case 207:
70495f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70505f2336efSEd Maste 			p = "int";
70515f2336efSEd Maste 		break;
70525f2336efSEd Maste 	/* linux_setsockopt */
70535f2336efSEd Maste 	case 208:
70545f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70555f2336efSEd Maste 			p = "int";
70565f2336efSEd Maste 		break;
70575f2336efSEd Maste 	/* linux_getsockopt */
70585f2336efSEd Maste 	case 209:
70595f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70605f2336efSEd Maste 			p = "int";
70615f2336efSEd Maste 		break;
70625f2336efSEd Maste 	/* linux_shutdown */
70635f2336efSEd Maste 	case 210:
70645f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70655f2336efSEd Maste 			p = "int";
70665f2336efSEd Maste 		break;
70675f2336efSEd Maste 	/* linux_sendmsg */
70685f2336efSEd Maste 	case 211:
70695f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70705f2336efSEd Maste 			p = "int";
70715f2336efSEd Maste 		break;
70725f2336efSEd Maste 	/* linux_recvmsg */
70735f2336efSEd Maste 	case 212:
70745f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70755f2336efSEd Maste 			p = "int";
70765f2336efSEd Maste 		break;
70775f2336efSEd Maste 	/* linux_brk */
70785f2336efSEd Maste 	case 214:
70795f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70805f2336efSEd Maste 			p = "int";
70815f2336efSEd Maste 		break;
70825f2336efSEd Maste 	/* munmap */
70835f2336efSEd Maste 	case 215:
70845f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70855f2336efSEd Maste 			p = "int";
70865f2336efSEd Maste 		break;
70875f2336efSEd Maste 	/* linux_mremap */
70885f2336efSEd Maste 	case 216:
70895f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
70905f2336efSEd Maste 			p = "int";
70915f2336efSEd Maste 		break;
70925f2336efSEd Maste 	/* linux_add_key */
70935f2336efSEd Maste 	case 217:
70945f2336efSEd Maste 	/* linux_request_key */
70955f2336efSEd Maste 	case 218:
70965f2336efSEd Maste 	/* linux_keyctl */
70975f2336efSEd Maste 	case 219:
70985f2336efSEd Maste 	/* linux_clone */
70995f2336efSEd Maste 	case 220:
71005f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
71015f2336efSEd Maste 			p = "int";
71025f2336efSEd Maste 		break;
71035f2336efSEd Maste 	/* linux_execve */
71045f2336efSEd Maste 	case 221:
71055f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
71065f2336efSEd Maste 			p = "int";
71075f2336efSEd Maste 		break;
71085f2336efSEd Maste 	/* linux_mmap2 */
71095f2336efSEd Maste 	case 222:
71105f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
71115f2336efSEd Maste 			p = "int";
71125f2336efSEd Maste 		break;
71135f2336efSEd Maste 	/* linux_fadvise64 */
71145f2336efSEd Maste 	case 223:
71155f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
71165f2336efSEd Maste 			p = "int";
71175f2336efSEd Maste 		break;
71185f2336efSEd Maste 	/* swapon */
71195f2336efSEd Maste 	case 224:
71205f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
71215f2336efSEd Maste 			p = "int";
71225f2336efSEd Maste 		break;
71235f2336efSEd Maste 	/* linux_swapoff */
71245f2336efSEd Maste 	case 225:
71255f2336efSEd Maste 	/* linux_mprotect */
71265f2336efSEd Maste 	case 226:
71275f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
71285f2336efSEd Maste 			p = "int";
71295f2336efSEd Maste 		break;
71305f2336efSEd Maste 	/* linux_msync */
71315f2336efSEd Maste 	case 227:
71325f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
71335f2336efSEd Maste 			p = "int";
71345f2336efSEd Maste 		break;
71355f2336efSEd Maste 	/* mlock */
71365f2336efSEd Maste 	case 228:
71375f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
71385f2336efSEd Maste 			p = "int";
71395f2336efSEd Maste 		break;
71405f2336efSEd Maste 	/* munlock */
71415f2336efSEd Maste 	case 229:
71425f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
71435f2336efSEd Maste 			p = "int";
71445f2336efSEd Maste 		break;
71455f2336efSEd Maste 	/* mlockall */
71465f2336efSEd Maste 	case 230:
71475f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
71485f2336efSEd Maste 			p = "int";
71495f2336efSEd Maste 		break;
71505f2336efSEd Maste 	/* munlockall */
71515f2336efSEd Maste 	case 231:
71525f2336efSEd Maste 	/* linux_mincore */
71535f2336efSEd Maste 	case 232:
71545f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
71555f2336efSEd Maste 			p = "int";
71565f2336efSEd Maste 		break;
7157bafd96b8SEdward Tomasz Napierala 	/* linux_madvise */
71585f2336efSEd Maste 	case 233:
71595f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
71605f2336efSEd Maste 			p = "int";
71615f2336efSEd Maste 		break;
71625f2336efSEd Maste 	/* linux_remap_file_pages */
71635f2336efSEd Maste 	case 234:
71645f2336efSEd Maste 	/* linux_mbind */
71655f2336efSEd Maste 	case 235:
71665f2336efSEd Maste 	/* linux_get_mempolicy */
71675f2336efSEd Maste 	case 236:
71685f2336efSEd Maste 	/* linux_set_mempolicy */
71695f2336efSEd Maste 	case 237:
71705f2336efSEd Maste 	/* linux_migrate_pages */
71715f2336efSEd Maste 	case 238:
71725f2336efSEd Maste 	/* linux_move_pages */
71735f2336efSEd Maste 	case 239:
71745f2336efSEd Maste 	/* linux_rt_tgsigqueueinfo */
71755f2336efSEd Maste 	case 240:
71765f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
71775f2336efSEd Maste 			p = "int";
71785f2336efSEd Maste 		break;
71795f2336efSEd Maste 	/* linux_perf_event_open */
71805f2336efSEd Maste 	case 241:
71815f2336efSEd Maste 	/* linux_accept4 */
71825f2336efSEd Maste 	case 242:
71835f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
71845f2336efSEd Maste 			p = "int";
71855f2336efSEd Maste 		break;
71865f2336efSEd Maste 	/* linux_recvmmsg */
71875f2336efSEd Maste 	case 243:
71885f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
71895f2336efSEd Maste 			p = "int";
71905f2336efSEd Maste 		break;
71915f2336efSEd Maste 	/* linux_wait4 */
71925f2336efSEd Maste 	case 260:
71935f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
71945f2336efSEd Maste 			p = "int";
71955f2336efSEd Maste 		break;
71965f2336efSEd Maste 	/* linux_prlimit64 */
71975f2336efSEd Maste 	case 261:
71985f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
71995f2336efSEd Maste 			p = "int";
72005f2336efSEd Maste 		break;
72015f2336efSEd Maste 	/* linux_fanotify_init */
72025f2336efSEd Maste 	case 262:
72035f2336efSEd Maste 	/* linux_fanotify_mark */
72045f2336efSEd Maste 	case 263:
72055f2336efSEd Maste 	/* linux_name_to_handle_at */
72065f2336efSEd Maste 	case 264:
720777eb9841SConrad Meyer 		if (ndx == 0 || ndx == 1)
720877eb9841SConrad Meyer 			p = "int";
720977eb9841SConrad Meyer 		break;
72105f2336efSEd Maste 	/* linux_open_by_handle_at */
72115f2336efSEd Maste 	case 265:
721277eb9841SConrad Meyer 		if (ndx == 0 || ndx == 1)
721377eb9841SConrad Meyer 			p = "int";
721477eb9841SConrad Meyer 		break;
72155f2336efSEd Maste 	/* linux_clock_adjtime */
72165f2336efSEd Maste 	case 266:
72175f2336efSEd Maste 	/* linux_syncfs */
72185f2336efSEd Maste 	case 267:
72195f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72205f2336efSEd Maste 			p = "int";
72215f2336efSEd Maste 		break;
72225f2336efSEd Maste 	/* linux_setns */
72235f2336efSEd Maste 	case 268:
72245f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72255f2336efSEd Maste 			p = "int";
72265f2336efSEd Maste 		break;
72275f2336efSEd Maste 	/* linux_sendmmsg */
72285f2336efSEd Maste 	case 269:
72295f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72305f2336efSEd Maste 			p = "int";
72315f2336efSEd Maste 		break;
72325f2336efSEd Maste 	/* linux_process_vm_readv */
72335f2336efSEd Maste 	case 270:
72345f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72355f2336efSEd Maste 			p = "int";
72365f2336efSEd Maste 		break;
72375f2336efSEd Maste 	/* linux_process_vm_writev */
72385f2336efSEd Maste 	case 271:
72395f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72405f2336efSEd Maste 			p = "int";
72415f2336efSEd Maste 		break;
72425f2336efSEd Maste 	/* linux_kcmp */
72435f2336efSEd Maste 	case 272:
72445f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72455f2336efSEd Maste 			p = "int";
72465f2336efSEd Maste 		break;
72475f2336efSEd Maste 	/* linux_finit_module */
72485f2336efSEd Maste 	case 273:
72495f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72505f2336efSEd Maste 			p = "int";
72515f2336efSEd Maste 		break;
72525f2336efSEd Maste 	/* linux_sched_setattr */
72535f2336efSEd Maste 	case 274:
72545f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72555f2336efSEd Maste 			p = "int";
72565f2336efSEd Maste 		break;
72575f2336efSEd Maste 	/* linux_sched_getattr */
72585f2336efSEd Maste 	case 275:
72595f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72605f2336efSEd Maste 			p = "int";
72615f2336efSEd Maste 		break;
72625f2336efSEd Maste 	/* linux_renameat2 */
72635f2336efSEd Maste 	case 276:
72645f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72655f2336efSEd Maste 			p = "int";
72665f2336efSEd Maste 		break;
72675f2336efSEd Maste 	/* linux_seccomp */
72685f2336efSEd Maste 	case 277:
72695f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72705f2336efSEd Maste 			p = "int";
72715f2336efSEd Maste 		break;
72725f2336efSEd Maste 	/* linux_getrandom */
72735f2336efSEd Maste 	case 278:
72745f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72755f2336efSEd Maste 			p = "int";
72765f2336efSEd Maste 		break;
72775f2336efSEd Maste 	/* linux_memfd_create */
72785f2336efSEd Maste 	case 279:
72795f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72805f2336efSEd Maste 			p = "int";
72815f2336efSEd Maste 		break;
72825f2336efSEd Maste 	/* linux_bpf */
72835f2336efSEd Maste 	case 280:
72845f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72855f2336efSEd Maste 			p = "int";
72865f2336efSEd Maste 		break;
72875f2336efSEd Maste 	/* linux_execveat */
72885f2336efSEd Maste 	case 281:
72895f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72905f2336efSEd Maste 			p = "int";
72915f2336efSEd Maste 		break;
72925f2336efSEd Maste 	/* linux_userfaultfd */
72935f2336efSEd Maste 	case 282:
72945f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
72955f2336efSEd Maste 			p = "int";
72965f2336efSEd Maste 		break;
72975f2336efSEd Maste 	/* linux_membarrier */
72985f2336efSEd Maste 	case 283:
72995f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
73005f2336efSEd Maste 			p = "int";
73015f2336efSEd Maste 		break;
73025f2336efSEd Maste 	/* linux_mlock2 */
73035f2336efSEd Maste 	case 284:
73045f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
73055f2336efSEd Maste 			p = "int";
73065f2336efSEd Maste 		break;
73075f2336efSEd Maste 	/* linux_copy_file_range */
73085f2336efSEd Maste 	case 285:
73095f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
73105f2336efSEd Maste 			p = "int";
73115f2336efSEd Maste 		break;
73125f2336efSEd Maste 	/* linux_preadv2 */
73135f2336efSEd Maste 	case 286:
73145f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
73155f2336efSEd Maste 			p = "int";
73165f2336efSEd Maste 		break;
73175f2336efSEd Maste 	/* linux_pwritev2 */
73185f2336efSEd Maste 	case 287:
73195f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
73205f2336efSEd Maste 			p = "int";
73215f2336efSEd Maste 		break;
73225f2336efSEd Maste 	/* linux_pkey_mprotect */
73235f2336efSEd Maste 	case 288:
73245f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
73255f2336efSEd Maste 			p = "int";
73265f2336efSEd Maste 		break;
73275f2336efSEd Maste 	/* linux_pkey_alloc */
73285f2336efSEd Maste 	case 289:
73295f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
73305f2336efSEd Maste 			p = "int";
73315f2336efSEd Maste 		break;
73325f2336efSEd Maste 	/* linux_pkey_free */
73335f2336efSEd Maste 	case 290:
73345f2336efSEd Maste 		if (ndx == 0 || ndx == 1)
73355f2336efSEd Maste 			p = "int";
73365f2336efSEd Maste 		break;
7337c0f17173SEdward Tomasz Napierala 	/* linux_statx */
7338c0f17173SEdward Tomasz Napierala 	case 291:
7339c0f17173SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
7340c0f17173SEdward Tomasz Napierala 			p = "int";
7341c0f17173SEdward Tomasz Napierala 		break;
7342c0f17173SEdward Tomasz Napierala 	/* linux_io_pgetevents */
7343c0f17173SEdward Tomasz Napierala 	case 292:
7344c0f17173SEdward Tomasz Napierala 	/* linux_rseq */
7345c0f17173SEdward Tomasz Napierala 	case 293:
7346c0f17173SEdward Tomasz Napierala 	/* linux_kexec_file_load */
7347c0f17173SEdward Tomasz Napierala 	case 294:
7348c0f17173SEdward Tomasz Napierala 	/* linux_pidfd_send_signal */
7349c0f17173SEdward Tomasz Napierala 	case 424:
7350c0f17173SEdward Tomasz Napierala 		if (ndx == 0 || ndx == 1)
7351c0f17173SEdward Tomasz Napierala 			p = "int";
7352c0f17173SEdward Tomasz Napierala 		break;
7353c0f17173SEdward Tomasz Napierala 	/* linux_io_uring_setup */
7354c0f17173SEdward Tomasz Napierala 	case 425:
7355c0f17173SEdward Tomasz Napierala 	/* linux_io_uring_enter */
7356c0f17173SEdward Tomasz Napierala 	case 426:
7357c0f17173SEdward Tomasz Napierala 	/* linux_io_uring_register */
7358c0f17173SEdward Tomasz Napierala 	case 427:
7359c0f17173SEdward Tomasz Napierala 	/* linux_open_tree */
7360c0f17173SEdward Tomasz Napierala 	case 428:
7361c0f17173SEdward Tomasz Napierala 	/* linux_move_mount */
7362c0f17173SEdward Tomasz Napierala 	case 429:
7363c0f17173SEdward Tomasz Napierala 	/* linux_fsopen */
7364c0f17173SEdward Tomasz Napierala 	case 430:
7365c0f17173SEdward Tomasz Napierala 	/* linux_fsconfig */
7366c0f17173SEdward Tomasz Napierala 	case 431:
7367c0f17173SEdward Tomasz Napierala 	/* linux_fsmount */
7368c0f17173SEdward Tomasz Napierala 	case 432:
7369c0f17173SEdward Tomasz Napierala 	/* linux_fspick */
7370c0f17173SEdward Tomasz Napierala 	case 433:
7371c0f17173SEdward Tomasz Napierala 	/* linux_pidfd_open */
7372c0f17173SEdward Tomasz Napierala 	case 434:
7373c0f17173SEdward Tomasz Napierala 	/* linux_clone3 */
7374c0f17173SEdward Tomasz Napierala 	case 435:
7375c0f17173SEdward Tomasz Napierala 	/* linux_close_range */
7376c0f17173SEdward Tomasz Napierala 	case 436:
7377c0f17173SEdward Tomasz Napierala 	/* linux_openat2 */
7378c0f17173SEdward Tomasz Napierala 	case 437:
7379c0f17173SEdward Tomasz Napierala 	/* linux_pidfd_getfd */
7380c0f17173SEdward Tomasz Napierala 	case 438:
7381c0f17173SEdward Tomasz Napierala 	/* linux_faccessat2 */
7382c0f17173SEdward Tomasz Napierala 	case 439:
7383bee191e4SDmitry Chagin 		if (ndx == 0 || ndx == 1)
7384bee191e4SDmitry Chagin 			p = "int";
7385bee191e4SDmitry Chagin 		break;
7386c0f17173SEdward Tomasz Napierala 	/* linux_process_madvise */
7387c0f17173SEdward Tomasz Napierala 	case 440:
7388c0f17173SEdward Tomasz Napierala 	/* linux_epoll_pwait2 */
7389c0f17173SEdward Tomasz Napierala 	case 441:
7390c0f17173SEdward Tomasz Napierala 	/* linux_mount_setattr */
7391c0f17173SEdward Tomasz Napierala 	case 442:
73925f2336efSEd Maste 	default:
73935f2336efSEd Maste 		break;
73945f2336efSEd Maste 	};
73955f2336efSEd Maste 	if (p != NULL)
73965f2336efSEd Maste 		strlcpy(desc, p, descsz);
73975f2336efSEd Maste }
7398