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; 13*6b7c23a0SBrooks Davis int a = 0; 145f2336efSEd Maste switch (sysnum) { 155f2336efSEd Maste #define nosys linux_nosys 165f2336efSEd Maste /* linux_setxattr */ 175f2336efSEd Maste case 5: { 18a39cdcd7SEdward Tomasz Napierala struct linux_setxattr_args *p = params; 19*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->path; /* const char * */ 20*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->name; /* const char * */ 21*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->value; /* const char * */ 22*6b7c23a0SBrooks Davis iarg[a++] = p->size; /* l_size_t */ 23*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_int */ 24a39cdcd7SEdward Tomasz Napierala *n_args = 5; 255f2336efSEd Maste break; 265f2336efSEd Maste } 275f2336efSEd Maste /* linux_lsetxattr */ 285f2336efSEd Maste case 6: { 29a39cdcd7SEdward Tomasz Napierala struct linux_lsetxattr_args *p = params; 30*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->path; /* const char * */ 31*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->name; /* const char * */ 32*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->value; /* const char * */ 33*6b7c23a0SBrooks Davis iarg[a++] = p->size; /* l_size_t */ 34*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_int */ 35a39cdcd7SEdward Tomasz Napierala *n_args = 5; 365f2336efSEd Maste break; 375f2336efSEd Maste } 385f2336efSEd Maste /* linux_fsetxattr */ 395f2336efSEd Maste case 7: { 40a39cdcd7SEdward Tomasz Napierala struct linux_fsetxattr_args *p = params; 41*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* l_int */ 42*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->name; /* const char * */ 43*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->value; /* const char * */ 44*6b7c23a0SBrooks Davis iarg[a++] = p->size; /* l_size_t */ 45*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_int */ 46a39cdcd7SEdward Tomasz Napierala *n_args = 5; 475f2336efSEd Maste break; 485f2336efSEd Maste } 495f2336efSEd Maste /* linux_getxattr */ 505f2336efSEd Maste case 8: { 51a39cdcd7SEdward Tomasz Napierala struct linux_getxattr_args *p = params; 52*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->path; /* const char * */ 53*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->name; /* const char * */ 54*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->value; /* char * */ 55*6b7c23a0SBrooks Davis iarg[a++] = p->size; /* l_size_t */ 56a39cdcd7SEdward Tomasz Napierala *n_args = 4; 575f2336efSEd Maste break; 585f2336efSEd Maste } 595f2336efSEd Maste /* linux_lgetxattr */ 605f2336efSEd Maste case 9: { 61a39cdcd7SEdward Tomasz Napierala struct linux_lgetxattr_args *p = params; 62*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->path; /* const char * */ 63*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->name; /* const char * */ 64*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->value; /* char * */ 65*6b7c23a0SBrooks Davis iarg[a++] = p->size; /* l_size_t */ 66a39cdcd7SEdward Tomasz Napierala *n_args = 4; 675f2336efSEd Maste break; 685f2336efSEd Maste } 695f2336efSEd Maste /* linux_fgetxattr */ 705f2336efSEd Maste case 10: { 71a39cdcd7SEdward Tomasz Napierala struct linux_fgetxattr_args *p = params; 72*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* l_int */ 73*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->name; /* const char * */ 74*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->value; /* char * */ 75*6b7c23a0SBrooks Davis iarg[a++] = p->size; /* l_size_t */ 76a39cdcd7SEdward Tomasz Napierala *n_args = 4; 775f2336efSEd Maste break; 785f2336efSEd Maste } 795f2336efSEd Maste /* linux_listxattr */ 805f2336efSEd Maste case 11: { 81a39cdcd7SEdward Tomasz Napierala struct linux_listxattr_args *p = params; 82*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->path; /* const char * */ 83*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->list; /* const char * */ 84*6b7c23a0SBrooks Davis iarg[a++] = p->size; /* l_size_t */ 85a39cdcd7SEdward Tomasz Napierala *n_args = 3; 865f2336efSEd Maste break; 875f2336efSEd Maste } 885f2336efSEd Maste /* linux_llistxattr */ 895f2336efSEd Maste case 12: { 90a39cdcd7SEdward Tomasz Napierala struct linux_llistxattr_args *p = params; 91*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->path; /* const char * */ 92*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->list; /* const char * */ 93*6b7c23a0SBrooks Davis iarg[a++] = p->size; /* l_size_t */ 94a39cdcd7SEdward Tomasz Napierala *n_args = 3; 955f2336efSEd Maste break; 965f2336efSEd Maste } 975f2336efSEd Maste /* linux_flistxattr */ 985f2336efSEd Maste case 13: { 99a39cdcd7SEdward Tomasz Napierala struct linux_flistxattr_args *p = params; 100*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* l_int */ 101*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->list; /* const char * */ 102*6b7c23a0SBrooks Davis iarg[a++] = p->size; /* l_size_t */ 103a39cdcd7SEdward Tomasz Napierala *n_args = 3; 1045f2336efSEd Maste break; 1055f2336efSEd Maste } 1065f2336efSEd Maste /* linux_removexattr */ 1075f2336efSEd Maste case 14: { 108a39cdcd7SEdward Tomasz Napierala struct linux_removexattr_args *p = params; 109*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->path; /* const char * */ 110*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->name; /* const char * */ 111a39cdcd7SEdward Tomasz Napierala *n_args = 2; 1125f2336efSEd Maste break; 1135f2336efSEd Maste } 1145f2336efSEd Maste /* linux_lremovexattr */ 1155f2336efSEd Maste case 15: { 116a39cdcd7SEdward Tomasz Napierala struct linux_lremovexattr_args *p = params; 117*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->path; /* const char * */ 118*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->name; /* const char * */ 119a39cdcd7SEdward Tomasz Napierala *n_args = 2; 1205f2336efSEd Maste break; 1215f2336efSEd Maste } 1225f2336efSEd Maste /* linux_fremovexattr */ 1235f2336efSEd Maste case 16: { 124a39cdcd7SEdward Tomasz Napierala struct linux_fremovexattr_args *p = params; 125*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* l_int */ 126*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->name; /* const char * */ 127a39cdcd7SEdward Tomasz Napierala *n_args = 2; 1285f2336efSEd Maste break; 1295f2336efSEd Maste } 1305f2336efSEd Maste /* linux_getcwd */ 1315f2336efSEd Maste case 17: { 1325f2336efSEd Maste struct linux_getcwd_args *p = params; 133*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->buf; /* char * */ 134*6b7c23a0SBrooks Davis iarg[a++] = p->bufsize; /* l_ulong */ 1355f2336efSEd Maste *n_args = 2; 1365f2336efSEd Maste break; 1375f2336efSEd Maste } 1385f2336efSEd Maste /* linux_lookup_dcookie */ 1395f2336efSEd Maste case 18: { 1405f2336efSEd Maste *n_args = 0; 1415f2336efSEd Maste break; 1425f2336efSEd Maste } 1435f2336efSEd Maste /* linux_eventfd2 */ 1445f2336efSEd Maste case 19: { 1455f2336efSEd Maste struct linux_eventfd2_args *p = params; 146*6b7c23a0SBrooks Davis iarg[a++] = p->initval; /* l_uint */ 147*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_int */ 1485f2336efSEd Maste *n_args = 2; 1495f2336efSEd Maste break; 1505f2336efSEd Maste } 1515f2336efSEd Maste /* linux_epoll_create1 */ 1525f2336efSEd Maste case 20: { 1535f2336efSEd Maste struct linux_epoll_create1_args *p = params; 154*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_int */ 1555f2336efSEd Maste *n_args = 1; 1565f2336efSEd Maste break; 1575f2336efSEd Maste } 1585f2336efSEd Maste /* linux_epoll_ctl */ 1595f2336efSEd Maste case 21: { 1605f2336efSEd Maste struct linux_epoll_ctl_args *p = params; 161*6b7c23a0SBrooks Davis iarg[a++] = p->epfd; /* l_int */ 162*6b7c23a0SBrooks Davis iarg[a++] = p->op; /* l_int */ 163*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* l_int */ 164*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->event; /* struct epoll_event * */ 1655f2336efSEd Maste *n_args = 4; 1665f2336efSEd Maste break; 1675f2336efSEd Maste } 1685f2336efSEd Maste /* linux_epoll_pwait */ 1695f2336efSEd Maste case 22: { 1705f2336efSEd Maste struct linux_epoll_pwait_args *p = params; 171*6b7c23a0SBrooks Davis iarg[a++] = p->epfd; /* l_int */ 172*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->events; /* struct epoll_event * */ 173*6b7c23a0SBrooks Davis iarg[a++] = p->maxevents; /* l_int */ 174*6b7c23a0SBrooks Davis iarg[a++] = p->timeout; /* l_int */ 175*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */ 176*6b7c23a0SBrooks Davis iarg[a++] = p->sigsetsize; /* l_size_t */ 1775f2336efSEd Maste *n_args = 6; 1785f2336efSEd Maste break; 1795f2336efSEd Maste } 180c4db0baaSEd Maste /* dup */ 181c4db0baaSEd Maste case 23: { 182c4db0baaSEd Maste struct dup_args *p = params; 183*6b7c23a0SBrooks Davis uarg[a++] = p->fd; /* u_int */ 184c4db0baaSEd Maste *n_args = 1; 185c4db0baaSEd Maste break; 186c4db0baaSEd Maste } 1875f2336efSEd Maste /* linux_dup3 */ 1885f2336efSEd Maste case 24: { 1895f2336efSEd Maste struct linux_dup3_args *p = params; 190*6b7c23a0SBrooks Davis iarg[a++] = p->oldfd; /* l_int */ 191*6b7c23a0SBrooks Davis iarg[a++] = p->newfd; /* l_int */ 192*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_int */ 1935f2336efSEd Maste *n_args = 3; 1945f2336efSEd Maste break; 1955f2336efSEd Maste } 1965f2336efSEd Maste /* linux_fcntl */ 1975f2336efSEd Maste case 25: { 1985f2336efSEd Maste struct linux_fcntl_args *p = params; 199*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* l_uint */ 200*6b7c23a0SBrooks Davis iarg[a++] = p->cmd; /* l_uint */ 201*6b7c23a0SBrooks Davis iarg[a++] = p->arg; /* l_ulong */ 2025f2336efSEd Maste *n_args = 3; 2035f2336efSEd Maste break; 2045f2336efSEd Maste } 2055f2336efSEd Maste /* linux_inotify_init1 */ 2065f2336efSEd Maste case 26: { 2075f2336efSEd Maste struct linux_inotify_init1_args *p = params; 208*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_int */ 2095f2336efSEd Maste *n_args = 1; 2105f2336efSEd Maste break; 2115f2336efSEd Maste } 2125f2336efSEd Maste /* linux_inotify_add_watch */ 2135f2336efSEd Maste case 27: { 2145f2336efSEd Maste *n_args = 0; 2155f2336efSEd Maste break; 2165f2336efSEd Maste } 2175f2336efSEd Maste /* linux_inotify_rm_watch */ 2185f2336efSEd Maste case 28: { 2195f2336efSEd Maste *n_args = 0; 2205f2336efSEd Maste break; 2215f2336efSEd Maste } 2225f2336efSEd Maste /* linux_ioctl */ 2235f2336efSEd Maste case 29: { 2245f2336efSEd Maste struct linux_ioctl_args *p = params; 225*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* l_uint */ 226*6b7c23a0SBrooks Davis iarg[a++] = p->cmd; /* l_uint */ 227*6b7c23a0SBrooks Davis iarg[a++] = p->arg; /* l_ulong */ 2285f2336efSEd Maste *n_args = 3; 2295f2336efSEd Maste break; 2305f2336efSEd Maste } 2315f2336efSEd Maste /* linux_ioprio_set */ 2325f2336efSEd Maste case 30: { 2335f2336efSEd Maste *n_args = 0; 2345f2336efSEd Maste break; 2355f2336efSEd Maste } 2365f2336efSEd Maste /* linux_ioprio_get */ 2375f2336efSEd Maste case 31: { 2385f2336efSEd Maste *n_args = 0; 2395f2336efSEd Maste break; 2405f2336efSEd Maste } 2415f2336efSEd Maste /* flock */ 2425f2336efSEd Maste case 32: { 2435f2336efSEd Maste struct flock_args *p = params; 244*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* int */ 245*6b7c23a0SBrooks Davis iarg[a++] = p->how; /* int */ 2465f2336efSEd Maste *n_args = 2; 2475f2336efSEd Maste break; 2485f2336efSEd Maste } 2495f2336efSEd Maste /* linux_mknodat */ 2505f2336efSEd Maste case 33: { 2515f2336efSEd Maste struct linux_mknodat_args *p = params; 252*6b7c23a0SBrooks Davis iarg[a++] = p->dfd; /* l_int */ 253*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->filename; /* const char * */ 254*6b7c23a0SBrooks Davis iarg[a++] = p->mode; /* l_int */ 255*6b7c23a0SBrooks Davis iarg[a++] = p->dev; /* l_uint */ 2565f2336efSEd Maste *n_args = 4; 2575f2336efSEd Maste break; 2585f2336efSEd Maste } 2595f2336efSEd Maste /* linux_mkdirat */ 2605f2336efSEd Maste case 34: { 2615f2336efSEd Maste struct linux_mkdirat_args *p = params; 262*6b7c23a0SBrooks Davis iarg[a++] = p->dfd; /* l_int */ 263*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->pathname; /* const char * */ 264*6b7c23a0SBrooks Davis iarg[a++] = p->mode; /* l_mode_t */ 2655f2336efSEd Maste *n_args = 3; 2665f2336efSEd Maste break; 2675f2336efSEd Maste } 2685f2336efSEd Maste /* linux_unlinkat */ 2695f2336efSEd Maste case 35: { 2705f2336efSEd Maste struct linux_unlinkat_args *p = params; 271*6b7c23a0SBrooks Davis iarg[a++] = p->dfd; /* l_int */ 272*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->pathname; /* const char * */ 273*6b7c23a0SBrooks Davis iarg[a++] = p->flag; /* l_int */ 2745f2336efSEd Maste *n_args = 3; 2755f2336efSEd Maste break; 2765f2336efSEd Maste } 2775f2336efSEd Maste /* linux_symlinkat */ 2785f2336efSEd Maste case 36: { 2795f2336efSEd Maste struct linux_symlinkat_args *p = params; 280*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->oldname; /* const char * */ 281*6b7c23a0SBrooks Davis iarg[a++] = p->newdfd; /* l_int */ 282*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->newname; /* const char * */ 2835f2336efSEd Maste *n_args = 3; 2845f2336efSEd Maste break; 2855f2336efSEd Maste } 2865f2336efSEd Maste /* linux_linkat */ 2875f2336efSEd Maste case 37: { 2885f2336efSEd Maste struct linux_linkat_args *p = params; 289*6b7c23a0SBrooks Davis iarg[a++] = p->olddfd; /* l_int */ 290*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->oldname; /* const char * */ 291*6b7c23a0SBrooks Davis iarg[a++] = p->newdfd; /* l_int */ 292*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->newname; /* const char * */ 293*6b7c23a0SBrooks Davis iarg[a++] = p->flag; /* l_int */ 2945f2336efSEd Maste *n_args = 5; 2955f2336efSEd Maste break; 2965f2336efSEd Maste } 2975f2336efSEd Maste /* linux_renameat */ 2985f2336efSEd Maste case 38: { 2995f2336efSEd Maste struct linux_renameat_args *p = params; 300*6b7c23a0SBrooks Davis iarg[a++] = p->olddfd; /* l_int */ 301*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->oldname; /* const char * */ 302*6b7c23a0SBrooks Davis iarg[a++] = p->newdfd; /* l_int */ 303*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->newname; /* const char * */ 3045f2336efSEd Maste *n_args = 4; 3055f2336efSEd Maste break; 3065f2336efSEd Maste } 3075f2336efSEd Maste /* linux_mount */ 3085f2336efSEd Maste case 40: { 3095f2336efSEd Maste struct linux_mount_args *p = params; 310*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->specialfile; /* char * */ 311*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->dir; /* char * */ 312*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->filesystemtype; /* char * */ 313*6b7c23a0SBrooks Davis iarg[a++] = p->rwflag; /* l_ulong */ 314*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->data; /* void * */ 3155f2336efSEd Maste *n_args = 5; 3165f2336efSEd Maste break; 3175f2336efSEd Maste } 3185f2336efSEd Maste /* linux_pivot_root */ 3195f2336efSEd Maste case 41: { 3205f2336efSEd Maste *n_args = 0; 3215f2336efSEd Maste break; 3225f2336efSEd Maste } 3235f2336efSEd Maste /* linux_statfs */ 3245f2336efSEd Maste case 43: { 3255f2336efSEd Maste struct linux_statfs_args *p = params; 326*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->path; /* char * */ 327*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->buf; /* struct l_statfs_buf * */ 3285f2336efSEd Maste *n_args = 2; 3295f2336efSEd Maste break; 3305f2336efSEd Maste } 3315f2336efSEd Maste /* linux_fstatfs */ 3325f2336efSEd Maste case 44: { 3335f2336efSEd Maste struct linux_fstatfs_args *p = params; 334*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* l_uint */ 335*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->buf; /* struct l_statfs_buf * */ 3365f2336efSEd Maste *n_args = 2; 3375f2336efSEd Maste break; 3385f2336efSEd Maste } 3395f2336efSEd Maste /* linux_truncate */ 3405f2336efSEd Maste case 45: { 3415f2336efSEd Maste struct linux_truncate_args *p = params; 342*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->path; /* char * */ 343*6b7c23a0SBrooks Davis iarg[a++] = p->length; /* l_ulong */ 3445f2336efSEd Maste *n_args = 2; 3455f2336efSEd Maste break; 3465f2336efSEd Maste } 3475f2336efSEd Maste /* linux_ftruncate */ 3485f2336efSEd Maste case 46: { 3495f2336efSEd Maste struct linux_ftruncate_args *p = params; 350*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* l_int */ 351*6b7c23a0SBrooks Davis iarg[a++] = p->length; /* l_long */ 3525f2336efSEd Maste *n_args = 2; 3535f2336efSEd Maste break; 3545f2336efSEd Maste } 3555f2336efSEd Maste /* linux_fallocate */ 3565f2336efSEd Maste case 47: { 3575f2336efSEd Maste struct linux_fallocate_args *p = params; 358*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* l_int */ 359*6b7c23a0SBrooks Davis iarg[a++] = p->mode; /* l_int */ 360*6b7c23a0SBrooks Davis iarg[a++] = p->offset; /* l_loff_t */ 361*6b7c23a0SBrooks Davis iarg[a++] = p->len; /* l_loff_t */ 3625f2336efSEd Maste *n_args = 4; 3635f2336efSEd Maste break; 3645f2336efSEd Maste } 3655f2336efSEd Maste /* linux_faccessat */ 3665f2336efSEd Maste case 48: { 3675f2336efSEd Maste struct linux_faccessat_args *p = params; 368*6b7c23a0SBrooks Davis iarg[a++] = p->dfd; /* l_int */ 369*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->filename; /* const char * */ 370*6b7c23a0SBrooks Davis iarg[a++] = p->amode; /* l_int */ 3715f2336efSEd Maste *n_args = 3; 3725f2336efSEd Maste break; 3735f2336efSEd Maste } 3745f2336efSEd Maste /* linux_chdir */ 3755f2336efSEd Maste case 49: { 3765f2336efSEd Maste struct linux_chdir_args *p = params; 377*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->path; /* char * */ 3785f2336efSEd Maste *n_args = 1; 3795f2336efSEd Maste break; 3805f2336efSEd Maste } 3815f2336efSEd Maste /* fchdir */ 3825f2336efSEd Maste case 50: { 3835f2336efSEd Maste struct fchdir_args *p = params; 384*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* int */ 3855f2336efSEd Maste *n_args = 1; 3865f2336efSEd Maste break; 3875f2336efSEd Maste } 3885f2336efSEd Maste /* chroot */ 3895f2336efSEd Maste case 51: { 3905f2336efSEd Maste struct chroot_args *p = params; 391*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->path; /* char * */ 3925f2336efSEd Maste *n_args = 1; 3935f2336efSEd Maste break; 3945f2336efSEd Maste } 3955f2336efSEd Maste /* fchmod */ 3965f2336efSEd Maste case 52: { 3975f2336efSEd Maste struct fchmod_args *p = params; 398*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* int */ 399*6b7c23a0SBrooks Davis iarg[a++] = p->mode; /* int */ 4005f2336efSEd Maste *n_args = 2; 4015f2336efSEd Maste break; 4025f2336efSEd Maste } 4035f2336efSEd Maste /* linux_fchmodat */ 4045f2336efSEd Maste case 53: { 4055f2336efSEd Maste struct linux_fchmodat_args *p = params; 406*6b7c23a0SBrooks Davis iarg[a++] = p->dfd; /* l_int */ 407*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->filename; /* const char * */ 408*6b7c23a0SBrooks Davis iarg[a++] = p->mode; /* l_mode_t */ 4095f2336efSEd Maste *n_args = 3; 4105f2336efSEd Maste break; 4115f2336efSEd Maste } 4125f2336efSEd Maste /* linux_fchownat */ 4135f2336efSEd Maste case 54: { 4145f2336efSEd Maste struct linux_fchownat_args *p = params; 415*6b7c23a0SBrooks Davis iarg[a++] = p->dfd; /* l_int */ 416*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->filename; /* const char * */ 417*6b7c23a0SBrooks Davis iarg[a++] = p->uid; /* l_uid_t */ 418*6b7c23a0SBrooks Davis iarg[a++] = p->gid; /* l_gid_t */ 419*6b7c23a0SBrooks Davis iarg[a++] = p->flag; /* l_int */ 4205f2336efSEd Maste *n_args = 5; 4215f2336efSEd Maste break; 4225f2336efSEd Maste } 4235f2336efSEd Maste /* fchown */ 4245f2336efSEd Maste case 55: { 4255f2336efSEd Maste struct fchown_args *p = params; 426*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* int */ 427*6b7c23a0SBrooks Davis iarg[a++] = p->uid; /* int */ 428*6b7c23a0SBrooks Davis iarg[a++] = p->gid; /* int */ 4295f2336efSEd Maste *n_args = 3; 4305f2336efSEd Maste break; 4315f2336efSEd Maste } 4325f2336efSEd Maste /* linux_openat */ 4335f2336efSEd Maste case 56: { 4345f2336efSEd Maste struct linux_openat_args *p = params; 435*6b7c23a0SBrooks Davis iarg[a++] = p->dfd; /* l_int */ 436*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->filename; /* const char * */ 437*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_int */ 438*6b7c23a0SBrooks Davis iarg[a++] = p->mode; /* l_mode_t */ 4395f2336efSEd Maste *n_args = 4; 4405f2336efSEd Maste break; 4415f2336efSEd Maste } 4425f2336efSEd Maste /* close */ 4435f2336efSEd Maste case 57: { 4445f2336efSEd Maste struct close_args *p = params; 445*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* int */ 4465f2336efSEd Maste *n_args = 1; 4475f2336efSEd Maste break; 4485f2336efSEd Maste } 4495f2336efSEd Maste /* linux_vhangup */ 4505f2336efSEd Maste case 58: { 4515f2336efSEd Maste *n_args = 0; 4525f2336efSEd Maste break; 4535f2336efSEd Maste } 4545f2336efSEd Maste /* linux_pipe2 */ 4555f2336efSEd Maste case 59: { 4565f2336efSEd Maste struct linux_pipe2_args *p = params; 457*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->pipefds; /* l_int * */ 458*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_int */ 4595f2336efSEd Maste *n_args = 2; 4605f2336efSEd Maste break; 4615f2336efSEd Maste } 4625f2336efSEd Maste /* linux_getdents64 */ 4635f2336efSEd Maste case 61: { 4645f2336efSEd Maste struct linux_getdents64_args *p = params; 465*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* l_uint */ 466*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->dirent; /* void * */ 467*6b7c23a0SBrooks Davis iarg[a++] = p->count; /* l_uint */ 4685f2336efSEd Maste *n_args = 3; 4695f2336efSEd Maste break; 4705f2336efSEd Maste } 4715f2336efSEd Maste /* linux_lseek */ 4725f2336efSEd Maste case 62: { 4735f2336efSEd Maste struct linux_lseek_args *p = params; 474*6b7c23a0SBrooks Davis iarg[a++] = p->fdes; /* l_uint */ 475*6b7c23a0SBrooks Davis iarg[a++] = p->off; /* l_off_t */ 476*6b7c23a0SBrooks Davis iarg[a++] = p->whence; /* l_int */ 4775f2336efSEd Maste *n_args = 3; 4785f2336efSEd Maste break; 4795f2336efSEd Maste } 4805f2336efSEd Maste /* read */ 4815f2336efSEd Maste case 63: { 4825f2336efSEd Maste struct read_args *p = params; 483*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* int */ 484*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->buf; /* char * */ 485*6b7c23a0SBrooks Davis iarg[a++] = p->nbyte; /* l_size_t */ 4865f2336efSEd Maste *n_args = 3; 4875f2336efSEd Maste break; 4885f2336efSEd Maste } 4895f2336efSEd Maste /* write */ 4905f2336efSEd Maste case 64: { 4915f2336efSEd Maste struct write_args *p = params; 492*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* int */ 493*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->buf; /* char * */ 494*6b7c23a0SBrooks Davis iarg[a++] = p->nbyte; /* l_size_t */ 4955f2336efSEd Maste *n_args = 3; 4965f2336efSEd Maste break; 4975f2336efSEd Maste } 4985f2336efSEd Maste /* readv */ 4995f2336efSEd Maste case 65: { 5005f2336efSEd Maste struct readv_args *p = params; 501*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* int */ 502*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->iovp; /* struct iovec * */ 503*6b7c23a0SBrooks Davis uarg[a++] = p->iovcnt; /* u_int */ 5045f2336efSEd Maste *n_args = 3; 5055f2336efSEd Maste break; 5065f2336efSEd Maste } 5075f2336efSEd Maste /* writev */ 5085f2336efSEd Maste case 66: { 5095f2336efSEd Maste struct writev_args *p = params; 510*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* int */ 511*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->iovp; /* struct iovec * */ 512*6b7c23a0SBrooks Davis uarg[a++] = p->iovcnt; /* u_int */ 5135f2336efSEd Maste *n_args = 3; 5145f2336efSEd Maste break; 5155f2336efSEd Maste } 5165f2336efSEd Maste /* linux_pread */ 5175f2336efSEd Maste case 67: { 5185f2336efSEd Maste struct linux_pread_args *p = params; 519*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* l_uint */ 520*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->buf; /* char * */ 521*6b7c23a0SBrooks Davis iarg[a++] = p->nbyte; /* l_size_t */ 522*6b7c23a0SBrooks Davis iarg[a++] = p->offset; /* l_loff_t */ 5235f2336efSEd Maste *n_args = 4; 5245f2336efSEd Maste break; 5255f2336efSEd Maste } 5265f2336efSEd Maste /* linux_pwrite */ 5275f2336efSEd Maste case 68: { 5285f2336efSEd Maste struct linux_pwrite_args *p = params; 529*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* l_uint */ 530*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->buf; /* char * */ 531*6b7c23a0SBrooks Davis iarg[a++] = p->nbyte; /* l_size_t */ 532*6b7c23a0SBrooks Davis iarg[a++] = p->offset; /* l_loff_t */ 5335f2336efSEd Maste *n_args = 4; 5345f2336efSEd Maste break; 5355f2336efSEd Maste } 5365f2336efSEd Maste /* linux_preadv */ 5375f2336efSEd Maste case 69: { 5385f2336efSEd Maste struct linux_preadv_args *p = params; 539*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* l_ulong */ 540*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->vec; /* struct iovec * */ 541*6b7c23a0SBrooks Davis iarg[a++] = p->vlen; /* l_ulong */ 542*6b7c23a0SBrooks Davis iarg[a++] = p->pos_l; /* l_ulong */ 543*6b7c23a0SBrooks Davis iarg[a++] = p->pos_h; /* l_ulong */ 5445f2336efSEd Maste *n_args = 5; 5455f2336efSEd Maste break; 5465f2336efSEd Maste } 5475f2336efSEd Maste /* linux_pwritev */ 5485f2336efSEd Maste case 70: { 5495f2336efSEd Maste struct linux_pwritev_args *p = params; 550*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* l_ulong */ 551*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->vec; /* struct iovec * */ 552*6b7c23a0SBrooks Davis iarg[a++] = p->vlen; /* l_ulong */ 553*6b7c23a0SBrooks Davis iarg[a++] = p->pos_l; /* l_ulong */ 554*6b7c23a0SBrooks Davis iarg[a++] = p->pos_h; /* l_ulong */ 5555f2336efSEd Maste *n_args = 5; 5565f2336efSEd Maste break; 5575f2336efSEd Maste } 5585f2336efSEd Maste /* linux_sendfile */ 5595f2336efSEd Maste case 71: { 5605f2336efSEd Maste struct linux_sendfile_args *p = params; 561*6b7c23a0SBrooks Davis iarg[a++] = p->out; /* l_int */ 562*6b7c23a0SBrooks Davis iarg[a++] = p->in; /* l_int */ 563*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->offset; /* l_off_t * */ 564*6b7c23a0SBrooks Davis iarg[a++] = p->count; /* l_size_t */ 5655f2336efSEd Maste *n_args = 4; 5665f2336efSEd Maste break; 5675f2336efSEd Maste } 5685f2336efSEd Maste /* linux_pselect6 */ 5695f2336efSEd Maste case 72: { 5705f2336efSEd Maste struct linux_pselect6_args *p = params; 571*6b7c23a0SBrooks Davis iarg[a++] = p->nfds; /* l_int */ 572*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->readfds; /* l_fd_set * */ 573*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->writefds; /* l_fd_set * */ 574*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->exceptfds; /* l_fd_set * */ 575*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->tsp; /* struct l_timespec * */ 576*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->sig; /* l_uintptr_t * */ 5775f2336efSEd Maste *n_args = 6; 5785f2336efSEd Maste break; 5795f2336efSEd Maste } 5805f2336efSEd Maste /* linux_ppoll */ 5815f2336efSEd Maste case 73: { 5825f2336efSEd Maste struct linux_ppoll_args *p = params; 583*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->fds; /* struct pollfd * */ 584*6b7c23a0SBrooks Davis iarg[a++] = p->nfds; /* l_uint */ 585*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->tsp; /* struct l_timespec * */ 586*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->sset; /* l_sigset_t * */ 587*6b7c23a0SBrooks Davis iarg[a++] = p->ssize; /* l_size_t */ 5885f2336efSEd Maste *n_args = 5; 5895f2336efSEd Maste break; 5905f2336efSEd Maste } 5915f2336efSEd Maste /* linux_signalfd4 */ 5925f2336efSEd Maste case 74: { 5935f2336efSEd Maste *n_args = 0; 5945f2336efSEd Maste break; 5955f2336efSEd Maste } 5965f2336efSEd Maste /* linux_vmsplice */ 5975f2336efSEd Maste case 75: { 5985f2336efSEd Maste *n_args = 0; 5995f2336efSEd Maste break; 6005f2336efSEd Maste } 6015f2336efSEd Maste /* linux_splice */ 6025f2336efSEd Maste case 76: { 6033e9a2142SEdward Tomasz Napierala struct linux_splice_args *p = params; 604*6b7c23a0SBrooks Davis iarg[a++] = p->fd_in; /* int */ 605*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->off_in; /* l_loff_t * */ 606*6b7c23a0SBrooks Davis iarg[a++] = p->fd_out; /* int */ 607*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->off_out; /* l_loff_t * */ 608*6b7c23a0SBrooks Davis iarg[a++] = p->len; /* l_size_t */ 609*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_uint */ 6103e9a2142SEdward Tomasz Napierala *n_args = 6; 6115f2336efSEd Maste break; 6125f2336efSEd Maste } 6135f2336efSEd Maste /* linux_tee */ 6145f2336efSEd Maste case 77: { 6155f2336efSEd Maste *n_args = 0; 6165f2336efSEd Maste break; 6175f2336efSEd Maste } 6185f2336efSEd Maste /* linux_readlinkat */ 6195f2336efSEd Maste case 78: { 6205f2336efSEd Maste struct linux_readlinkat_args *p = params; 621*6b7c23a0SBrooks Davis iarg[a++] = p->dfd; /* l_int */ 622*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->path; /* const char * */ 623*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->buf; /* char * */ 624*6b7c23a0SBrooks Davis iarg[a++] = p->bufsiz; /* l_int */ 6255f2336efSEd Maste *n_args = 4; 6265f2336efSEd Maste break; 6275f2336efSEd Maste } 6285f2336efSEd Maste /* linux_newfstatat */ 6295f2336efSEd Maste case 79: { 6305f2336efSEd Maste struct linux_newfstatat_args *p = params; 631*6b7c23a0SBrooks Davis iarg[a++] = p->dfd; /* l_int */ 632*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->pathname; /* char * */ 633*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->statbuf; /* struct l_stat64 * */ 634*6b7c23a0SBrooks Davis iarg[a++] = p->flag; /* l_int */ 6355f2336efSEd Maste *n_args = 4; 6365f2336efSEd Maste break; 6375f2336efSEd Maste } 6385f2336efSEd Maste /* linux_newfstat */ 6395f2336efSEd Maste case 80: { 6405f2336efSEd Maste struct linux_newfstat_args *p = params; 641*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* l_uint */ 642*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->buf; /* struct l_newstat * */ 6435f2336efSEd Maste *n_args = 2; 6445f2336efSEd Maste break; 6455f2336efSEd Maste } 6465f2336efSEd Maste /* fsync */ 6475f2336efSEd Maste case 82: { 6485f2336efSEd Maste struct fsync_args *p = params; 649*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* int */ 6505f2336efSEd Maste *n_args = 1; 6515f2336efSEd Maste break; 6525f2336efSEd Maste } 6535f2336efSEd Maste /* linux_fdatasync */ 6545f2336efSEd Maste case 83: { 6555f2336efSEd Maste struct linux_fdatasync_args *p = params; 656*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* l_uint */ 6575f2336efSEd Maste *n_args = 1; 6585f2336efSEd Maste break; 6595f2336efSEd Maste } 6605f2336efSEd Maste /* linux_sync_file_range */ 6615f2336efSEd Maste case 84: { 6620cde2b32SEdward Tomasz Napierala struct linux_sync_file_range_args *p = params; 663*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* l_int */ 664*6b7c23a0SBrooks Davis iarg[a++] = p->offset; /* l_loff_t */ 665*6b7c23a0SBrooks Davis iarg[a++] = p->nbytes; /* l_loff_t */ 666*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_uint */ 6670cde2b32SEdward Tomasz Napierala *n_args = 4; 6685f2336efSEd Maste break; 6695f2336efSEd Maste } 6705f2336efSEd Maste /* linux_timerfd_create */ 6715f2336efSEd Maste case 85: { 6725f2336efSEd Maste struct linux_timerfd_create_args *p = params; 673*6b7c23a0SBrooks Davis iarg[a++] = p->clockid; /* l_int */ 674*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_int */ 6755f2336efSEd Maste *n_args = 2; 6765f2336efSEd Maste break; 6775f2336efSEd Maste } 6785f2336efSEd Maste /* linux_timerfd_settime */ 6795f2336efSEd Maste case 86: { 6805f2336efSEd Maste struct linux_timerfd_settime_args *p = params; 681*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* l_int */ 682*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_int */ 683*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->new_value; /* const struct l_itimerspec * */ 684*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->old_value; /* struct l_itimerspec * */ 6855f2336efSEd Maste *n_args = 4; 6865f2336efSEd Maste break; 6875f2336efSEd Maste } 6885f2336efSEd Maste /* linux_timerfd_gettime */ 6895f2336efSEd Maste case 87: { 6905f2336efSEd Maste struct linux_timerfd_gettime_args *p = params; 691*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* l_int */ 692*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->old_value; /* struct l_itimerspec * */ 6935f2336efSEd Maste *n_args = 2; 6945f2336efSEd Maste break; 6955f2336efSEd Maste } 6965f2336efSEd Maste /* linux_utimensat */ 6975f2336efSEd Maste case 88: { 6985f2336efSEd Maste struct linux_utimensat_args *p = params; 699*6b7c23a0SBrooks Davis iarg[a++] = p->dfd; /* l_int */ 700*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->pathname; /* const char * */ 701*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->times; /* const struct l_timespec * */ 702*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_int */ 7035f2336efSEd Maste *n_args = 4; 7045f2336efSEd Maste break; 7055f2336efSEd Maste } 7065f2336efSEd Maste /* acct */ 7075f2336efSEd Maste case 89: { 7085f2336efSEd Maste struct acct_args *p = params; 709*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->path; /* char * */ 7105f2336efSEd Maste *n_args = 1; 7115f2336efSEd Maste break; 7125f2336efSEd Maste } 7135f2336efSEd Maste /* linux_capget */ 7145f2336efSEd Maste case 90: { 7155f2336efSEd Maste struct linux_capget_args *p = params; 716*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->hdrp; /* struct l_user_cap_header * */ 717*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->datap; /* struct l_user_cap_data * */ 7185f2336efSEd Maste *n_args = 2; 7195f2336efSEd Maste break; 7205f2336efSEd Maste } 7215f2336efSEd Maste /* linux_capset */ 7225f2336efSEd Maste case 91: { 7235f2336efSEd Maste struct linux_capset_args *p = params; 724*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->hdrp; /* struct l_user_cap_header * */ 725*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->datap; /* struct l_user_cap_data * */ 7265f2336efSEd Maste *n_args = 2; 7275f2336efSEd Maste break; 7285f2336efSEd Maste } 7295f2336efSEd Maste /* linux_personality */ 7305f2336efSEd Maste case 92: { 7315f2336efSEd Maste struct linux_personality_args *p = params; 732*6b7c23a0SBrooks Davis iarg[a++] = p->per; /* l_uint */ 7335f2336efSEd Maste *n_args = 1; 7345f2336efSEd Maste break; 7355f2336efSEd Maste } 7365f2336efSEd Maste /* linux_exit */ 7375f2336efSEd Maste case 93: { 7385f2336efSEd Maste struct linux_exit_args *p = params; 739*6b7c23a0SBrooks Davis uarg[a++] = p->rval; /* u_int */ 7405f2336efSEd Maste *n_args = 1; 7415f2336efSEd Maste break; 7425f2336efSEd Maste } 7435f2336efSEd Maste /* linux_exit_group */ 7445f2336efSEd Maste case 94: { 7455f2336efSEd Maste struct linux_exit_group_args *p = params; 746*6b7c23a0SBrooks Davis iarg[a++] = p->error_code; /* l_int */ 7475f2336efSEd Maste *n_args = 1; 7485f2336efSEd Maste break; 7495f2336efSEd Maste } 7505f2336efSEd Maste /* linux_waitid */ 7515f2336efSEd Maste case 95: { 7525f2336efSEd Maste struct linux_waitid_args *p = params; 753*6b7c23a0SBrooks Davis iarg[a++] = p->idtype; /* l_int */ 754*6b7c23a0SBrooks Davis iarg[a++] = p->id; /* l_pid_t */ 755*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->info; /* l_siginfo_t * */ 756*6b7c23a0SBrooks Davis iarg[a++] = p->options; /* l_int */ 757*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->rusage; /* struct rusage * */ 7585f2336efSEd Maste *n_args = 5; 7595f2336efSEd Maste break; 7605f2336efSEd Maste } 7615f2336efSEd Maste /* linux_set_tid_address */ 7625f2336efSEd Maste case 96: { 7635f2336efSEd Maste struct linux_set_tid_address_args *p = params; 764*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->tidptr; /* l_int * */ 7655f2336efSEd Maste *n_args = 1; 7665f2336efSEd Maste break; 7675f2336efSEd Maste } 7685f2336efSEd Maste /* linux_unshare */ 7695f2336efSEd Maste case 97: { 7705f2336efSEd Maste *n_args = 0; 7715f2336efSEd Maste break; 7725f2336efSEd Maste } 7735f2336efSEd Maste /* linux_sys_futex */ 7745f2336efSEd Maste case 98: { 7755f2336efSEd Maste struct linux_sys_futex_args *p = params; 776*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->uaddr; /* uint32_t * */ 777*6b7c23a0SBrooks Davis iarg[a++] = p->op; /* l_int */ 778*6b7c23a0SBrooks Davis uarg[a++] = p->val; /* uint32_t */ 779*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec * */ 780*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->uaddr2; /* uint32_t * */ 781*6b7c23a0SBrooks Davis uarg[a++] = p->val3; /* uint32_t */ 7825f2336efSEd Maste *n_args = 6; 7835f2336efSEd Maste break; 7845f2336efSEd Maste } 7855f2336efSEd Maste /* linux_set_robust_list */ 7865f2336efSEd Maste case 99: { 7875f2336efSEd Maste struct linux_set_robust_list_args *p = params; 788*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->head; /* struct linux_robust_list_head * */ 789*6b7c23a0SBrooks Davis iarg[a++] = p->len; /* l_size_t */ 7905f2336efSEd Maste *n_args = 2; 7915f2336efSEd Maste break; 7925f2336efSEd Maste } 7935f2336efSEd Maste /* linux_get_robust_list */ 7945f2336efSEd Maste case 100: { 7955f2336efSEd Maste struct linux_get_robust_list_args *p = params; 796*6b7c23a0SBrooks Davis iarg[a++] = p->pid; /* l_int */ 797*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->head; /* struct linux_robust_list_head ** */ 798*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->len; /* l_size_t * */ 7995f2336efSEd Maste *n_args = 3; 8005f2336efSEd Maste break; 8015f2336efSEd Maste } 8025f2336efSEd Maste /* linux_nanosleep */ 8035f2336efSEd Maste case 101: { 8045f2336efSEd Maste struct linux_nanosleep_args *p = params; 805*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->rqtp; /* const struct l_timespec * */ 806*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->rmtp; /* struct l_timespec * */ 8075f2336efSEd Maste *n_args = 2; 8085f2336efSEd Maste break; 8095f2336efSEd Maste } 8105f2336efSEd Maste /* linux_getitimer */ 8115f2336efSEd Maste case 102: { 8125f2336efSEd Maste struct linux_getitimer_args *p = params; 813*6b7c23a0SBrooks Davis iarg[a++] = p->which; /* l_int */ 814*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->itv; /* struct l_itimerval * */ 8155f2336efSEd Maste *n_args = 2; 8165f2336efSEd Maste break; 8175f2336efSEd Maste } 8185f2336efSEd Maste /* linux_setitimer */ 8195f2336efSEd Maste case 103: { 8205f2336efSEd Maste struct linux_setitimer_args *p = params; 821*6b7c23a0SBrooks Davis iarg[a++] = p->which; /* l_int */ 822*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->itv; /* struct l_itimerval * */ 823*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->oitv; /* struct l_itimerval * */ 8245f2336efSEd Maste *n_args = 3; 8255f2336efSEd Maste break; 8265f2336efSEd Maste } 8275f2336efSEd Maste /* linux_kexec_load */ 8285f2336efSEd Maste case 104: { 8295f2336efSEd Maste *n_args = 0; 8305f2336efSEd Maste break; 8315f2336efSEd Maste } 8325f2336efSEd Maste /* linux_init_module */ 8335f2336efSEd Maste case 105: { 8345f2336efSEd Maste *n_args = 0; 8355f2336efSEd Maste break; 8365f2336efSEd Maste } 8375f2336efSEd Maste /* linux_delete_module */ 8385f2336efSEd Maste case 106: { 8395f2336efSEd Maste *n_args = 0; 8405f2336efSEd Maste break; 8415f2336efSEd Maste } 8425f2336efSEd Maste /* linux_timer_create */ 8435f2336efSEd Maste case 107: { 8445f2336efSEd Maste struct linux_timer_create_args *p = params; 845*6b7c23a0SBrooks Davis iarg[a++] = p->clock_id; /* clockid_t */ 846*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->evp; /* struct sigevent * */ 847*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->timerid; /* l_timer_t * */ 8485f2336efSEd Maste *n_args = 3; 8495f2336efSEd Maste break; 8505f2336efSEd Maste } 8515f2336efSEd Maste /* linux_timer_gettime */ 8525f2336efSEd Maste case 108: { 8535f2336efSEd Maste struct linux_timer_gettime_args *p = params; 854*6b7c23a0SBrooks Davis iarg[a++] = p->timerid; /* l_timer_t */ 855*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->setting; /* struct itimerspec * */ 8565f2336efSEd Maste *n_args = 2; 8575f2336efSEd Maste break; 8585f2336efSEd Maste } 8595f2336efSEd Maste /* linux_timer_getoverrun */ 8605f2336efSEd Maste case 109: { 8615f2336efSEd Maste struct linux_timer_getoverrun_args *p = params; 862*6b7c23a0SBrooks Davis iarg[a++] = p->timerid; /* l_timer_t */ 8635f2336efSEd Maste *n_args = 1; 8645f2336efSEd Maste break; 8655f2336efSEd Maste } 8665f2336efSEd Maste /* linux_timer_settime */ 8675f2336efSEd Maste case 110: { 8685f2336efSEd Maste struct linux_timer_settime_args *p = params; 869*6b7c23a0SBrooks Davis iarg[a++] = p->timerid; /* l_timer_t */ 870*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_int */ 871*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->new; /* const struct itimerspec * */ 872*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->old; /* struct itimerspec * */ 8735f2336efSEd Maste *n_args = 4; 8745f2336efSEd Maste break; 8755f2336efSEd Maste } 8765f2336efSEd Maste /* linux_timer_delete */ 8775f2336efSEd Maste case 111: { 8785f2336efSEd Maste struct linux_timer_delete_args *p = params; 879*6b7c23a0SBrooks Davis iarg[a++] = p->timerid; /* l_timer_t */ 8805f2336efSEd Maste *n_args = 1; 8815f2336efSEd Maste break; 8825f2336efSEd Maste } 8835f2336efSEd Maste /* linux_clock_settime */ 8845f2336efSEd Maste case 112: { 8855f2336efSEd Maste struct linux_clock_settime_args *p = params; 886*6b7c23a0SBrooks Davis iarg[a++] = p->which; /* clockid_t */ 887*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->tp; /* struct l_timespec * */ 8885f2336efSEd Maste *n_args = 2; 8895f2336efSEd Maste break; 8905f2336efSEd Maste } 8915f2336efSEd Maste /* linux_clock_gettime */ 8925f2336efSEd Maste case 113: { 8935f2336efSEd Maste struct linux_clock_gettime_args *p = params; 894*6b7c23a0SBrooks Davis iarg[a++] = p->which; /* clockid_t */ 895*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->tp; /* struct l_timespec * */ 8965f2336efSEd Maste *n_args = 2; 8975f2336efSEd Maste break; 8985f2336efSEd Maste } 8995f2336efSEd Maste /* linux_clock_getres */ 9005f2336efSEd Maste case 114: { 9015f2336efSEd Maste struct linux_clock_getres_args *p = params; 902*6b7c23a0SBrooks Davis iarg[a++] = p->which; /* clockid_t */ 903*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->tp; /* struct l_timespec * */ 9045f2336efSEd Maste *n_args = 2; 9055f2336efSEd Maste break; 9065f2336efSEd Maste } 9075f2336efSEd Maste /* linux_clock_nanosleep */ 9085f2336efSEd Maste case 115: { 9095f2336efSEd Maste struct linux_clock_nanosleep_args *p = params; 910*6b7c23a0SBrooks Davis iarg[a++] = p->which; /* clockid_t */ 911*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_int */ 912*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->rqtp; /* struct l_timespec * */ 913*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->rmtp; /* struct l_timespec * */ 9145f2336efSEd Maste *n_args = 4; 9155f2336efSEd Maste break; 9165f2336efSEd Maste } 9175f2336efSEd Maste /* linux_syslog */ 9185f2336efSEd Maste case 116: { 9195f2336efSEd Maste struct linux_syslog_args *p = params; 920*6b7c23a0SBrooks Davis iarg[a++] = p->type; /* l_int */ 921*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->buf; /* char * */ 922*6b7c23a0SBrooks Davis iarg[a++] = p->len; /* l_int */ 9235f2336efSEd Maste *n_args = 3; 9245f2336efSEd Maste break; 9255f2336efSEd Maste } 9265f2336efSEd Maste /* linux_ptrace */ 9275f2336efSEd Maste case 117: { 9285f2336efSEd Maste struct linux_ptrace_args *p = params; 929*6b7c23a0SBrooks Davis iarg[a++] = p->req; /* l_long */ 930*6b7c23a0SBrooks Davis iarg[a++] = p->pid; /* l_long */ 931*6b7c23a0SBrooks Davis iarg[a++] = p->addr; /* l_ulong */ 932*6b7c23a0SBrooks Davis iarg[a++] = p->data; /* l_ulong */ 9335f2336efSEd Maste *n_args = 4; 9345f2336efSEd Maste break; 9355f2336efSEd Maste } 9365f2336efSEd Maste /* linux_sched_setparam */ 9375f2336efSEd Maste case 118: { 9385f2336efSEd Maste struct linux_sched_setparam_args *p = params; 939*6b7c23a0SBrooks Davis iarg[a++] = p->pid; /* l_pid_t */ 940*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->param; /* struct sched_param * */ 9415f2336efSEd Maste *n_args = 2; 9425f2336efSEd Maste break; 9435f2336efSEd Maste } 9445f2336efSEd Maste /* linux_sched_setscheduler */ 9455f2336efSEd Maste case 119: { 9465f2336efSEd Maste struct linux_sched_setscheduler_args *p = params; 947*6b7c23a0SBrooks Davis iarg[a++] = p->pid; /* l_pid_t */ 948*6b7c23a0SBrooks Davis iarg[a++] = p->policy; /* l_int */ 949*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->param; /* struct sched_param * */ 9505f2336efSEd Maste *n_args = 3; 9515f2336efSEd Maste break; 9525f2336efSEd Maste } 9535f2336efSEd Maste /* linux_sched_getscheduler */ 9545f2336efSEd Maste case 120: { 9555f2336efSEd Maste struct linux_sched_getscheduler_args *p = params; 956*6b7c23a0SBrooks Davis iarg[a++] = p->pid; /* l_pid_t */ 9575f2336efSEd Maste *n_args = 1; 9585f2336efSEd Maste break; 9595f2336efSEd Maste } 9605f2336efSEd Maste /* linux_sched_getparam */ 9615f2336efSEd Maste case 121: { 9625f2336efSEd Maste struct linux_sched_getparam_args *p = params; 963*6b7c23a0SBrooks Davis iarg[a++] = p->pid; /* l_pid_t */ 964*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->param; /* struct sched_param * */ 9655f2336efSEd Maste *n_args = 2; 9665f2336efSEd Maste break; 9675f2336efSEd Maste } 9685f2336efSEd Maste /* linux_sched_setaffinity */ 9695f2336efSEd Maste case 122: { 9705f2336efSEd Maste struct linux_sched_setaffinity_args *p = params; 971*6b7c23a0SBrooks Davis iarg[a++] = p->pid; /* l_pid_t */ 972*6b7c23a0SBrooks Davis iarg[a++] = p->len; /* l_uint */ 973*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->user_mask_ptr; /* l_ulong * */ 9745f2336efSEd Maste *n_args = 3; 9755f2336efSEd Maste break; 9765f2336efSEd Maste } 9775f2336efSEd Maste /* linux_sched_getaffinity */ 9785f2336efSEd Maste case 123: { 9795f2336efSEd Maste struct linux_sched_getaffinity_args *p = params; 980*6b7c23a0SBrooks Davis iarg[a++] = p->pid; /* l_pid_t */ 981*6b7c23a0SBrooks Davis iarg[a++] = p->len; /* l_uint */ 982*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->user_mask_ptr; /* l_ulong * */ 9835f2336efSEd Maste *n_args = 3; 9845f2336efSEd Maste break; 9855f2336efSEd Maste } 9865f2336efSEd Maste /* sched_yield */ 9875f2336efSEd Maste case 124: { 9885f2336efSEd Maste *n_args = 0; 9895f2336efSEd Maste break; 9905f2336efSEd Maste } 9915f2336efSEd Maste /* linux_sched_get_priority_max */ 9925f2336efSEd Maste case 125: { 9935f2336efSEd Maste struct linux_sched_get_priority_max_args *p = params; 994*6b7c23a0SBrooks Davis iarg[a++] = p->policy; /* l_int */ 9955f2336efSEd Maste *n_args = 1; 9965f2336efSEd Maste break; 9975f2336efSEd Maste } 9985f2336efSEd Maste /* linux_sched_get_priority_min */ 9995f2336efSEd Maste case 126: { 10005f2336efSEd Maste struct linux_sched_get_priority_min_args *p = params; 1001*6b7c23a0SBrooks Davis iarg[a++] = p->policy; /* l_int */ 10025f2336efSEd Maste *n_args = 1; 10035f2336efSEd Maste break; 10045f2336efSEd Maste } 10055f2336efSEd Maste /* linux_sched_rr_get_interval */ 10065f2336efSEd Maste case 127: { 10075f2336efSEd Maste struct linux_sched_rr_get_interval_args *p = params; 1008*6b7c23a0SBrooks Davis iarg[a++] = p->pid; /* l_pid_t */ 1009*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->interval; /* struct l_timespec * */ 10105f2336efSEd Maste *n_args = 2; 10115f2336efSEd Maste break; 10125f2336efSEd Maste } 10135f2336efSEd Maste /* linux_kill */ 10145f2336efSEd Maste case 129: { 10155f2336efSEd Maste struct linux_kill_args *p = params; 1016*6b7c23a0SBrooks Davis iarg[a++] = p->pid; /* l_pid_t */ 1017*6b7c23a0SBrooks Davis iarg[a++] = p->signum; /* l_int */ 10185f2336efSEd Maste *n_args = 2; 10195f2336efSEd Maste break; 10205f2336efSEd Maste } 10215f2336efSEd Maste /* linux_tkill */ 10225f2336efSEd Maste case 130: { 10235f2336efSEd Maste struct linux_tkill_args *p = params; 1024*6b7c23a0SBrooks Davis iarg[a++] = p->tid; /* l_pid_t */ 1025*6b7c23a0SBrooks Davis iarg[a++] = p->sig; /* l_int */ 10265f2336efSEd Maste *n_args = 2; 10275f2336efSEd Maste break; 10285f2336efSEd Maste } 10295f2336efSEd Maste /* linux_tgkill */ 10305f2336efSEd Maste case 131: { 10315f2336efSEd Maste struct linux_tgkill_args *p = params; 1032*6b7c23a0SBrooks Davis iarg[a++] = p->tgid; /* l_pid_t */ 1033*6b7c23a0SBrooks Davis iarg[a++] = p->pid; /* l_pid_t */ 1034*6b7c23a0SBrooks Davis iarg[a++] = p->sig; /* l_int */ 10355f2336efSEd Maste *n_args = 3; 10365f2336efSEd Maste break; 10375f2336efSEd Maste } 10385f2336efSEd Maste /* linux_sigaltstack */ 10395f2336efSEd Maste case 132: { 10405f2336efSEd Maste struct linux_sigaltstack_args *p = params; 1041*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->uss; /* l_stack_t * */ 1042*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->uoss; /* l_stack_t * */ 10435f2336efSEd Maste *n_args = 2; 10445f2336efSEd Maste break; 10455f2336efSEd Maste } 10465f2336efSEd Maste /* linux_rt_sigsuspend */ 10475f2336efSEd Maste case 133: { 10485f2336efSEd Maste struct linux_rt_sigsuspend_args *p = params; 1049*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->newset; /* l_sigset_t * */ 1050*6b7c23a0SBrooks Davis iarg[a++] = p->sigsetsize; /* l_size_t */ 10515f2336efSEd Maste *n_args = 2; 10525f2336efSEd Maste break; 10535f2336efSEd Maste } 10545f2336efSEd Maste /* linux_rt_sigaction */ 10555f2336efSEd Maste case 134: { 10565f2336efSEd Maste struct linux_rt_sigaction_args *p = params; 1057*6b7c23a0SBrooks Davis iarg[a++] = p->sig; /* l_int */ 1058*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->act; /* l_sigaction_t * */ 1059*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->oact; /* l_sigaction_t * */ 1060*6b7c23a0SBrooks Davis iarg[a++] = p->sigsetsize; /* l_size_t */ 10615f2336efSEd Maste *n_args = 4; 10625f2336efSEd Maste break; 10635f2336efSEd Maste } 10645f2336efSEd Maste /* linux_rt_sigprocmask */ 10655f2336efSEd Maste case 135: { 10665f2336efSEd Maste struct linux_rt_sigprocmask_args *p = params; 1067*6b7c23a0SBrooks Davis iarg[a++] = p->how; /* l_int */ 1068*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */ 1069*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->omask; /* l_sigset_t * */ 1070*6b7c23a0SBrooks Davis iarg[a++] = p->sigsetsize; /* l_size_t */ 10715f2336efSEd Maste *n_args = 4; 10725f2336efSEd Maste break; 10735f2336efSEd Maste } 10745f2336efSEd Maste /* linux_rt_sigpending */ 10755f2336efSEd Maste case 136: { 10765f2336efSEd Maste struct linux_rt_sigpending_args *p = params; 1077*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->set; /* l_sigset_t * */ 1078*6b7c23a0SBrooks Davis iarg[a++] = p->sigsetsize; /* l_size_t */ 10795f2336efSEd Maste *n_args = 2; 10805f2336efSEd Maste break; 10815f2336efSEd Maste } 10825f2336efSEd Maste /* linux_rt_sigtimedwait */ 10835f2336efSEd Maste case 137: { 10845f2336efSEd Maste struct linux_rt_sigtimedwait_args *p = params; 1085*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->mask; /* l_sigset_t * */ 1086*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->ptr; /* l_siginfo_t * */ 1087*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec * */ 1088*6b7c23a0SBrooks Davis iarg[a++] = p->sigsetsize; /* l_size_t */ 10895f2336efSEd Maste *n_args = 4; 10905f2336efSEd Maste break; 10915f2336efSEd Maste } 10925f2336efSEd Maste /* linux_rt_sigqueueinfo */ 10935f2336efSEd Maste case 138: { 10945f2336efSEd Maste struct linux_rt_sigqueueinfo_args *p = params; 1095*6b7c23a0SBrooks Davis iarg[a++] = p->pid; /* l_pid_t */ 1096*6b7c23a0SBrooks Davis iarg[a++] = p->sig; /* l_int */ 1097*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->info; /* l_siginfo_t * */ 10985f2336efSEd Maste *n_args = 3; 10995f2336efSEd Maste break; 11005f2336efSEd Maste } 11015f2336efSEd Maste /* linux_rt_sigreturn */ 11025f2336efSEd Maste case 139: { 11038bc3dc01SEdward Tomasz Napierala *n_args = 0; 11045f2336efSEd Maste break; 11055f2336efSEd Maste } 11065f2336efSEd Maste /* setpriority */ 11075f2336efSEd Maste case 140: { 11085f2336efSEd Maste struct setpriority_args *p = params; 1109*6b7c23a0SBrooks Davis iarg[a++] = p->which; /* int */ 1110*6b7c23a0SBrooks Davis iarg[a++] = p->who; /* int */ 1111*6b7c23a0SBrooks Davis iarg[a++] = p->prio; /* int */ 11125f2336efSEd Maste *n_args = 3; 11135f2336efSEd Maste break; 11145f2336efSEd Maste } 11155f2336efSEd Maste /* linux_getpriority */ 11165f2336efSEd Maste case 141: { 11175f2336efSEd Maste struct linux_getpriority_args *p = params; 1118*6b7c23a0SBrooks Davis iarg[a++] = p->which; /* l_int */ 1119*6b7c23a0SBrooks Davis iarg[a++] = p->who; /* l_int */ 11205f2336efSEd Maste *n_args = 2; 11215f2336efSEd Maste break; 11225f2336efSEd Maste } 11235f2336efSEd Maste /* linux_reboot */ 11245f2336efSEd Maste case 142: { 11255f2336efSEd Maste struct linux_reboot_args *p = params; 1126*6b7c23a0SBrooks Davis iarg[a++] = p->magic1; /* l_int */ 1127*6b7c23a0SBrooks Davis iarg[a++] = p->magic2; /* l_int */ 1128*6b7c23a0SBrooks Davis iarg[a++] = p->cmd; /* l_uint */ 1129*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->arg; /* void * */ 11305f2336efSEd Maste *n_args = 4; 11315f2336efSEd Maste break; 11325f2336efSEd Maste } 11335f2336efSEd Maste /* setregid */ 11345f2336efSEd Maste case 143: { 11355f2336efSEd Maste struct setregid_args *p = params; 1136*6b7c23a0SBrooks Davis iarg[a++] = p->rgid; /* gid_t */ 1137*6b7c23a0SBrooks Davis iarg[a++] = p->egid; /* gid_t */ 11385f2336efSEd Maste *n_args = 2; 11395f2336efSEd Maste break; 11405f2336efSEd Maste } 11415f2336efSEd Maste /* setgid */ 11425f2336efSEd Maste case 144: { 11435f2336efSEd Maste struct setgid_args *p = params; 1144*6b7c23a0SBrooks Davis iarg[a++] = p->gid; /* gid_t */ 11455f2336efSEd Maste *n_args = 1; 11465f2336efSEd Maste break; 11475f2336efSEd Maste } 11485f2336efSEd Maste /* setreuid */ 11495f2336efSEd Maste case 145: { 11505f2336efSEd Maste struct setreuid_args *p = params; 1151*6b7c23a0SBrooks Davis uarg[a++] = p->ruid; /* uid_t */ 1152*6b7c23a0SBrooks Davis uarg[a++] = p->euid; /* uid_t */ 11535f2336efSEd Maste *n_args = 2; 11545f2336efSEd Maste break; 11555f2336efSEd Maste } 11565f2336efSEd Maste /* setuid */ 11575f2336efSEd Maste case 146: { 11585f2336efSEd Maste struct setuid_args *p = params; 1159*6b7c23a0SBrooks Davis uarg[a++] = p->uid; /* uid_t */ 11605f2336efSEd Maste *n_args = 1; 11615f2336efSEd Maste break; 11625f2336efSEd Maste } 11635f2336efSEd Maste /* setresuid */ 11645f2336efSEd Maste case 147: { 11655f2336efSEd Maste struct setresuid_args *p = params; 1166*6b7c23a0SBrooks Davis uarg[a++] = p->ruid; /* uid_t */ 1167*6b7c23a0SBrooks Davis uarg[a++] = p->euid; /* uid_t */ 1168*6b7c23a0SBrooks Davis uarg[a++] = p->suid; /* uid_t */ 11695f2336efSEd Maste *n_args = 3; 11705f2336efSEd Maste break; 11715f2336efSEd Maste } 11725f2336efSEd Maste /* getresuid */ 11735f2336efSEd Maste case 148: { 11745f2336efSEd Maste struct getresuid_args *p = params; 1175*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->ruid; /* uid_t * */ 1176*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->euid; /* uid_t * */ 1177*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->suid; /* uid_t * */ 11785f2336efSEd Maste *n_args = 3; 11795f2336efSEd Maste break; 11805f2336efSEd Maste } 11815f2336efSEd Maste /* setresgid */ 11825f2336efSEd Maste case 149: { 11835f2336efSEd Maste struct setresgid_args *p = params; 1184*6b7c23a0SBrooks Davis iarg[a++] = p->rgid; /* gid_t */ 1185*6b7c23a0SBrooks Davis iarg[a++] = p->egid; /* gid_t */ 1186*6b7c23a0SBrooks Davis iarg[a++] = p->sgid; /* gid_t */ 11875f2336efSEd Maste *n_args = 3; 11885f2336efSEd Maste break; 11895f2336efSEd Maste } 11905f2336efSEd Maste /* getresgid */ 11915f2336efSEd Maste case 150: { 11925f2336efSEd Maste struct getresgid_args *p = params; 1193*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->rgid; /* gid_t * */ 1194*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->egid; /* gid_t * */ 1195*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->sgid; /* gid_t * */ 11965f2336efSEd Maste *n_args = 3; 11975f2336efSEd Maste break; 11985f2336efSEd Maste } 11995f2336efSEd Maste /* linux_setfsuid */ 12005f2336efSEd Maste case 151: { 12015f2336efSEd Maste struct linux_setfsuid_args *p = params; 1202*6b7c23a0SBrooks Davis iarg[a++] = p->uid; /* l_uid_t */ 12035f2336efSEd Maste *n_args = 1; 12045f2336efSEd Maste break; 12055f2336efSEd Maste } 12065f2336efSEd Maste /* linux_setfsgid */ 12075f2336efSEd Maste case 152: { 12085f2336efSEd Maste struct linux_setfsgid_args *p = params; 1209*6b7c23a0SBrooks Davis iarg[a++] = p->gid; /* l_gid_t */ 12105f2336efSEd Maste *n_args = 1; 12115f2336efSEd Maste break; 12125f2336efSEd Maste } 12135f2336efSEd Maste /* linux_times */ 12145f2336efSEd Maste case 153: { 12155f2336efSEd Maste struct linux_times_args *p = params; 1216*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->buf; /* struct l_times_argv * */ 12175f2336efSEd Maste *n_args = 1; 12185f2336efSEd Maste break; 12195f2336efSEd Maste } 12205f2336efSEd Maste /* setpgid */ 12215f2336efSEd Maste case 154: { 12225f2336efSEd Maste struct setpgid_args *p = params; 1223*6b7c23a0SBrooks Davis iarg[a++] = p->pid; /* int */ 1224*6b7c23a0SBrooks Davis iarg[a++] = p->pgid; /* int */ 12255f2336efSEd Maste *n_args = 2; 12265f2336efSEd Maste break; 12275f2336efSEd Maste } 12285f2336efSEd Maste /* getpgid */ 12295f2336efSEd Maste case 155: { 12305f2336efSEd Maste struct getpgid_args *p = params; 1231*6b7c23a0SBrooks Davis iarg[a++] = p->pid; /* int */ 12325f2336efSEd Maste *n_args = 1; 12335f2336efSEd Maste break; 12345f2336efSEd Maste } 12355f2336efSEd Maste /* linux_getsid */ 12365f2336efSEd Maste case 156: { 12375f2336efSEd Maste struct linux_getsid_args *p = params; 1238*6b7c23a0SBrooks Davis iarg[a++] = p->pid; /* l_pid_t */ 12395f2336efSEd Maste *n_args = 1; 12405f2336efSEd Maste break; 12415f2336efSEd Maste } 12425f2336efSEd Maste /* setsid */ 12435f2336efSEd Maste case 157: { 12445f2336efSEd Maste *n_args = 0; 12455f2336efSEd Maste break; 12465f2336efSEd Maste } 12475f2336efSEd Maste /* linux_getgroups */ 12485f2336efSEd Maste case 158: { 12495f2336efSEd Maste struct linux_getgroups_args *p = params; 1250*6b7c23a0SBrooks Davis iarg[a++] = p->gidsetsize; /* l_int */ 1251*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->grouplist; /* l_gid_t * */ 12525f2336efSEd Maste *n_args = 2; 12535f2336efSEd Maste break; 12545f2336efSEd Maste } 12555f2336efSEd Maste /* linux_setgroups */ 12565f2336efSEd Maste case 159: { 12575f2336efSEd Maste struct linux_setgroups_args *p = params; 1258*6b7c23a0SBrooks Davis iarg[a++] = p->gidsetsize; /* l_int */ 1259*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->grouplist; /* l_gid_t * */ 12605f2336efSEd Maste *n_args = 2; 12615f2336efSEd Maste break; 12625f2336efSEd Maste } 12635f2336efSEd Maste /* linux_newuname */ 12645f2336efSEd Maste case 160: { 12655f2336efSEd Maste struct linux_newuname_args *p = params; 1266*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->buf; /* struct l_new_utsname * */ 12675f2336efSEd Maste *n_args = 1; 12685f2336efSEd Maste break; 12695f2336efSEd Maste } 12705f2336efSEd Maste /* linux_sethostname */ 12715f2336efSEd Maste case 161: { 12725f2336efSEd Maste struct linux_sethostname_args *p = params; 1273*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->hostname; /* char * */ 1274*6b7c23a0SBrooks Davis iarg[a++] = p->len; /* l_uint */ 12755f2336efSEd Maste *n_args = 2; 12765f2336efSEd Maste break; 12775f2336efSEd Maste } 12785f2336efSEd Maste /* linux_setdomainname */ 12795f2336efSEd Maste case 162: { 12805f2336efSEd Maste struct linux_setdomainname_args *p = params; 1281*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->name; /* char * */ 1282*6b7c23a0SBrooks Davis iarg[a++] = p->len; /* l_int */ 12835f2336efSEd Maste *n_args = 2; 12845f2336efSEd Maste break; 12855f2336efSEd Maste } 12865f2336efSEd Maste /* linux_getrlimit */ 12875f2336efSEd Maste case 163: { 12885f2336efSEd Maste struct linux_getrlimit_args *p = params; 1289*6b7c23a0SBrooks Davis iarg[a++] = p->resource; /* l_uint */ 1290*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->rlim; /* struct l_rlimit * */ 12915f2336efSEd Maste *n_args = 2; 12925f2336efSEd Maste break; 12935f2336efSEd Maste } 12945f2336efSEd Maste /* linux_setrlimit */ 12955f2336efSEd Maste case 164: { 12965f2336efSEd Maste struct linux_setrlimit_args *p = params; 1297*6b7c23a0SBrooks Davis iarg[a++] = p->resource; /* l_uint */ 1298*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->rlim; /* struct l_rlimit * */ 12995f2336efSEd Maste *n_args = 2; 13005f2336efSEd Maste break; 13015f2336efSEd Maste } 13025f2336efSEd Maste /* getrusage */ 13035f2336efSEd Maste case 165: { 13045f2336efSEd Maste struct getrusage_args *p = params; 1305*6b7c23a0SBrooks Davis iarg[a++] = p->who; /* int */ 1306*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->rusage; /* struct rusage * */ 13075f2336efSEd Maste *n_args = 2; 13085f2336efSEd Maste break; 13095f2336efSEd Maste } 13105f2336efSEd Maste /* umask */ 13115f2336efSEd Maste case 166: { 13125f2336efSEd Maste struct umask_args *p = params; 1313*6b7c23a0SBrooks Davis iarg[a++] = p->newmask; /* int */ 13145f2336efSEd Maste *n_args = 1; 13155f2336efSEd Maste break; 13165f2336efSEd Maste } 13175f2336efSEd Maste /* linux_prctl */ 13185f2336efSEd Maste case 167: { 13195f2336efSEd Maste struct linux_prctl_args *p = params; 1320*6b7c23a0SBrooks Davis iarg[a++] = p->option; /* l_int */ 1321*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->arg2; /* l_uintptr_t */ 1322*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->arg3; /* l_uintptr_t */ 1323*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->arg4; /* l_uintptr_t */ 1324*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->arg5; /* l_uintptr_t */ 13255f2336efSEd Maste *n_args = 5; 13265f2336efSEd Maste break; 13275f2336efSEd Maste } 13285f2336efSEd Maste /* linux_getcpu */ 13295f2336efSEd Maste case 168: { 13305f2336efSEd Maste struct linux_getcpu_args *p = params; 1331*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->cpu; /* l_uint * */ 1332*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->node; /* l_uint * */ 1333*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->cache; /* void * */ 13345f2336efSEd Maste *n_args = 3; 13355f2336efSEd Maste break; 13365f2336efSEd Maste } 13375f2336efSEd Maste /* gettimeofday */ 13385f2336efSEd Maste case 169: { 13395f2336efSEd Maste struct gettimeofday_args *p = params; 1340*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->tp; /* struct l_timeval * */ 1341*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->tzp; /* struct timezone * */ 13425f2336efSEd Maste *n_args = 2; 13435f2336efSEd Maste break; 13445f2336efSEd Maste } 13455f2336efSEd Maste /* settimeofday */ 13465f2336efSEd Maste case 170: { 13475f2336efSEd Maste struct settimeofday_args *p = params; 1348*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->tv; /* struct l_timeval * */ 1349*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->tzp; /* struct timezone * */ 13505f2336efSEd Maste *n_args = 2; 13515f2336efSEd Maste break; 13525f2336efSEd Maste } 13535f2336efSEd Maste /* linux_adjtimex */ 13545f2336efSEd Maste case 171: { 13555f2336efSEd Maste *n_args = 0; 13565f2336efSEd Maste break; 13575f2336efSEd Maste } 13585f2336efSEd Maste /* linux_getpid */ 13595f2336efSEd Maste case 172: { 13605f2336efSEd Maste *n_args = 0; 13615f2336efSEd Maste break; 13625f2336efSEd Maste } 13635f2336efSEd Maste /* linux_getppid */ 13645f2336efSEd Maste case 173: { 13655f2336efSEd Maste *n_args = 0; 13665f2336efSEd Maste break; 13675f2336efSEd Maste } 13685f2336efSEd Maste /* linux_getuid */ 13695f2336efSEd Maste case 174: { 13705f2336efSEd Maste *n_args = 0; 13715f2336efSEd Maste break; 13725f2336efSEd Maste } 13735f2336efSEd Maste /* geteuid */ 13745f2336efSEd Maste case 175: { 13755f2336efSEd Maste *n_args = 0; 13765f2336efSEd Maste break; 13775f2336efSEd Maste } 13785f2336efSEd Maste /* linux_getgid */ 13795f2336efSEd Maste case 176: { 13805f2336efSEd Maste *n_args = 0; 13815f2336efSEd Maste break; 13825f2336efSEd Maste } 13835f2336efSEd Maste /* getegid */ 13845f2336efSEd Maste case 177: { 13855f2336efSEd Maste *n_args = 0; 13865f2336efSEd Maste break; 13875f2336efSEd Maste } 13885f2336efSEd Maste /* linux_gettid */ 13895f2336efSEd Maste case 178: { 13905f2336efSEd Maste *n_args = 0; 13915f2336efSEd Maste break; 13925f2336efSEd Maste } 13935f2336efSEd Maste /* linux_sysinfo */ 13945f2336efSEd Maste case 179: { 13955f2336efSEd Maste struct linux_sysinfo_args *p = params; 1396*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->info; /* struct l_sysinfo * */ 13975f2336efSEd Maste *n_args = 1; 13985f2336efSEd Maste break; 13995f2336efSEd Maste } 14005f2336efSEd Maste /* linux_mq_open */ 14015f2336efSEd Maste case 180: { 1402a39cdcd7SEdward Tomasz Napierala struct linux_mq_open_args *p = params; 1403*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->name; /* const char * */ 1404*6b7c23a0SBrooks Davis iarg[a++] = p->oflag; /* l_int */ 1405*6b7c23a0SBrooks Davis iarg[a++] = p->mode; /* l_mode_t */ 1406*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->attr; /* struct mq_attr * */ 1407a39cdcd7SEdward Tomasz Napierala *n_args = 4; 14085f2336efSEd Maste break; 14095f2336efSEd Maste } 14105f2336efSEd Maste /* linux_mq_unlink */ 14115f2336efSEd Maste case 181: { 1412a39cdcd7SEdward Tomasz Napierala struct linux_mq_unlink_args *p = params; 1413*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->name; /* const char * */ 1414a39cdcd7SEdward Tomasz Napierala *n_args = 1; 14155f2336efSEd Maste break; 14165f2336efSEd Maste } 14175f2336efSEd Maste /* linux_mq_timedsend */ 14185f2336efSEd Maste case 182: { 1419a39cdcd7SEdward Tomasz Napierala struct linux_mq_timedsend_args *p = params; 1420*6b7c23a0SBrooks Davis iarg[a++] = p->mqd; /* l_mqd_t */ 1421*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->msg_ptr; /* const char * */ 1422*6b7c23a0SBrooks Davis iarg[a++] = p->msg_len; /* l_size_t */ 1423*6b7c23a0SBrooks Davis iarg[a++] = p->msg_prio; /* l_uint */ 1424*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->abs_timeout; /* const struct l_timespec * */ 1425a39cdcd7SEdward Tomasz Napierala *n_args = 5; 14265f2336efSEd Maste break; 14275f2336efSEd Maste } 14285f2336efSEd Maste /* linux_mq_timedreceive */ 14295f2336efSEd Maste case 183: { 1430a39cdcd7SEdward Tomasz Napierala struct linux_mq_timedreceive_args *p = params; 1431*6b7c23a0SBrooks Davis iarg[a++] = p->mqd; /* l_mqd_t */ 1432*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->msg_ptr; /* char * */ 1433*6b7c23a0SBrooks Davis iarg[a++] = p->msg_len; /* l_size_t */ 1434*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->msg_prio; /* l_uint * */ 1435*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->abs_timeout; /* const struct l_timespec * */ 1436a39cdcd7SEdward Tomasz Napierala *n_args = 5; 14375f2336efSEd Maste break; 14385f2336efSEd Maste } 14395f2336efSEd Maste /* linux_mq_notify */ 14405f2336efSEd Maste case 184: { 1441a39cdcd7SEdward Tomasz Napierala struct linux_mq_notify_args *p = params; 1442*6b7c23a0SBrooks Davis iarg[a++] = p->mqd; /* l_mqd_t */ 1443*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->abs_timeout; /* const struct l_timespec * */ 1444a39cdcd7SEdward Tomasz Napierala *n_args = 2; 14455f2336efSEd Maste break; 14465f2336efSEd Maste } 14475f2336efSEd Maste /* linux_mq_getsetattr */ 14485f2336efSEd Maste case 185: { 1449a39cdcd7SEdward Tomasz Napierala struct linux_mq_getsetattr_args *p = params; 1450*6b7c23a0SBrooks Davis iarg[a++] = p->mqd; /* l_mqd_t */ 1451*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->attr; /* const struct mq_attr * */ 1452*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->oattr; /* struct mq_attr * */ 1453a39cdcd7SEdward Tomasz Napierala *n_args = 3; 14545f2336efSEd Maste break; 14555f2336efSEd Maste } 14565f2336efSEd Maste /* linux_msgget */ 14575f2336efSEd Maste case 186: { 14585f2336efSEd Maste struct linux_msgget_args *p = params; 1459*6b7c23a0SBrooks Davis iarg[a++] = p->key; /* l_key_t */ 1460*6b7c23a0SBrooks Davis iarg[a++] = p->msgflg; /* l_int */ 14615f2336efSEd Maste *n_args = 2; 14625f2336efSEd Maste break; 14635f2336efSEd Maste } 14645f2336efSEd Maste /* linux_msgctl */ 14655f2336efSEd Maste case 187: { 14665f2336efSEd Maste struct linux_msgctl_args *p = params; 1467*6b7c23a0SBrooks Davis iarg[a++] = p->msqid; /* l_int */ 1468*6b7c23a0SBrooks Davis iarg[a++] = p->cmd; /* l_int */ 1469*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->buf; /* struct l_msqid_ds * */ 14705f2336efSEd Maste *n_args = 3; 14715f2336efSEd Maste break; 14725f2336efSEd Maste } 14735f2336efSEd Maste /* linux_msgrcv */ 14745f2336efSEd Maste case 188: { 14755f2336efSEd Maste struct linux_msgrcv_args *p = params; 1476*6b7c23a0SBrooks Davis iarg[a++] = p->msqid; /* l_int */ 1477*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->msgp; /* struct l_msgbuf * */ 1478*6b7c23a0SBrooks Davis iarg[a++] = p->msgsz; /* l_size_t */ 1479*6b7c23a0SBrooks Davis iarg[a++] = p->msgtyp; /* l_long */ 1480*6b7c23a0SBrooks Davis iarg[a++] = p->msgflg; /* l_int */ 14815f2336efSEd Maste *n_args = 5; 14825f2336efSEd Maste break; 14835f2336efSEd Maste } 14845f2336efSEd Maste /* linux_msgsnd */ 14855f2336efSEd Maste case 189: { 14865f2336efSEd Maste struct linux_msgsnd_args *p = params; 1487*6b7c23a0SBrooks Davis iarg[a++] = p->msqid; /* l_int */ 1488*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->msgp; /* struct l_msgbuf * */ 1489*6b7c23a0SBrooks Davis iarg[a++] = p->msgsz; /* l_size_t */ 1490*6b7c23a0SBrooks Davis iarg[a++] = p->msgflg; /* l_int */ 14915f2336efSEd Maste *n_args = 4; 14925f2336efSEd Maste break; 14935f2336efSEd Maste } 14945f2336efSEd Maste /* linux_semget */ 14955f2336efSEd Maste case 190: { 14965f2336efSEd Maste struct linux_semget_args *p = params; 1497*6b7c23a0SBrooks Davis iarg[a++] = p->key; /* l_key_t */ 1498*6b7c23a0SBrooks Davis iarg[a++] = p->nsems; /* l_int */ 1499*6b7c23a0SBrooks Davis iarg[a++] = p->semflg; /* l_int */ 15005f2336efSEd Maste *n_args = 3; 15015f2336efSEd Maste break; 15025f2336efSEd Maste } 15035f2336efSEd Maste /* linux_semctl */ 15045f2336efSEd Maste case 191: { 15055f2336efSEd Maste struct linux_semctl_args *p = params; 1506*6b7c23a0SBrooks Davis iarg[a++] = p->semid; /* l_int */ 1507*6b7c23a0SBrooks Davis iarg[a++] = p->semnum; /* l_int */ 1508*6b7c23a0SBrooks Davis iarg[a++] = p->cmd; /* l_int */ 1509*6b7c23a0SBrooks Davis uarg[a++] = p->arg.buf; /* union l_semun */ 15105f2336efSEd Maste *n_args = 4; 15115f2336efSEd Maste break; 15125f2336efSEd Maste } 15135f2336efSEd Maste /* linux_semtimedop */ 15145f2336efSEd Maste case 192: { 15155f2336efSEd Maste *n_args = 0; 15165f2336efSEd Maste break; 15175f2336efSEd Maste } 15185f2336efSEd Maste /* linux_semop */ 15195f2336efSEd Maste case 193: { 15205f2336efSEd Maste struct linux_semop_args *p = params; 1521*6b7c23a0SBrooks Davis iarg[a++] = p->semid; /* l_int */ 1522*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->tsops; /* struct l_sembuf * */ 1523*6b7c23a0SBrooks Davis iarg[a++] = p->nsops; /* l_uint */ 15245f2336efSEd Maste *n_args = 3; 15255f2336efSEd Maste break; 15265f2336efSEd Maste } 15275f2336efSEd Maste /* linux_shmget */ 15285f2336efSEd Maste case 194: { 15295f2336efSEd Maste struct linux_shmget_args *p = params; 1530*6b7c23a0SBrooks Davis iarg[a++] = p->key; /* l_key_t */ 1531*6b7c23a0SBrooks Davis iarg[a++] = p->size; /* l_size_t */ 1532*6b7c23a0SBrooks Davis iarg[a++] = p->shmflg; /* l_int */ 15335f2336efSEd Maste *n_args = 3; 15345f2336efSEd Maste break; 15355f2336efSEd Maste } 15365f2336efSEd Maste /* linux_shmctl */ 15375f2336efSEd Maste case 195: { 15385f2336efSEd Maste struct linux_shmctl_args *p = params; 1539*6b7c23a0SBrooks Davis iarg[a++] = p->shmid; /* l_int */ 1540*6b7c23a0SBrooks Davis iarg[a++] = p->cmd; /* l_int */ 1541*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->buf; /* struct l_shmid_ds * */ 15425f2336efSEd Maste *n_args = 3; 15435f2336efSEd Maste break; 15445f2336efSEd Maste } 15455f2336efSEd Maste /* linux_shmat */ 15465f2336efSEd Maste case 196: { 15475f2336efSEd Maste struct linux_shmat_args *p = params; 1548*6b7c23a0SBrooks Davis iarg[a++] = p->shmid; /* l_int */ 1549*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->shmaddr; /* char * */ 1550*6b7c23a0SBrooks Davis iarg[a++] = p->shmflg; /* l_int */ 15515f2336efSEd Maste *n_args = 3; 15525f2336efSEd Maste break; 15535f2336efSEd Maste } 15545f2336efSEd Maste /* linux_shmdt */ 15555f2336efSEd Maste case 197: { 15565f2336efSEd Maste struct linux_shmdt_args *p = params; 1557*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->shmaddr; /* char * */ 15585f2336efSEd Maste *n_args = 1; 15595f2336efSEd Maste break; 15605f2336efSEd Maste } 15615f2336efSEd Maste /* linux_socket */ 15625f2336efSEd Maste case 198: { 15635f2336efSEd Maste struct linux_socket_args *p = params; 1564*6b7c23a0SBrooks Davis iarg[a++] = p->domain; /* l_int */ 1565*6b7c23a0SBrooks Davis iarg[a++] = p->type; /* l_int */ 1566*6b7c23a0SBrooks Davis iarg[a++] = p->protocol; /* l_int */ 15675f2336efSEd Maste *n_args = 3; 15685f2336efSEd Maste break; 15695f2336efSEd Maste } 15705f2336efSEd Maste /* linux_socketpair */ 15715f2336efSEd Maste case 199: { 15725f2336efSEd Maste struct linux_socketpair_args *p = params; 1573*6b7c23a0SBrooks Davis iarg[a++] = p->domain; /* l_int */ 1574*6b7c23a0SBrooks Davis iarg[a++] = p->type; /* l_int */ 1575*6b7c23a0SBrooks Davis iarg[a++] = p->protocol; /* l_int */ 1576*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->rsv; /* l_uintptr_t */ 15775f2336efSEd Maste *n_args = 4; 15785f2336efSEd Maste break; 15795f2336efSEd Maste } 15805f2336efSEd Maste /* linux_bind */ 15815f2336efSEd Maste case 200: { 15825f2336efSEd Maste struct linux_bind_args *p = params; 1583*6b7c23a0SBrooks Davis iarg[a++] = p->s; /* l_int */ 1584*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->name; /* l_uintptr_t */ 1585*6b7c23a0SBrooks Davis iarg[a++] = p->namelen; /* l_int */ 15865f2336efSEd Maste *n_args = 3; 15875f2336efSEd Maste break; 15885f2336efSEd Maste } 15895f2336efSEd Maste /* linux_listen */ 15905f2336efSEd Maste case 201: { 15915f2336efSEd Maste struct linux_listen_args *p = params; 1592*6b7c23a0SBrooks Davis iarg[a++] = p->s; /* l_int */ 1593*6b7c23a0SBrooks Davis iarg[a++] = p->backlog; /* l_int */ 15945f2336efSEd Maste *n_args = 2; 15955f2336efSEd Maste break; 15965f2336efSEd Maste } 15975f2336efSEd Maste /* linux_accept */ 15985f2336efSEd Maste case 202: { 15995f2336efSEd Maste struct linux_accept_args *p = params; 1600*6b7c23a0SBrooks Davis iarg[a++] = p->s; /* l_int */ 1601*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->addr; /* l_uintptr_t */ 1602*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->namelen; /* l_uintptr_t */ 16035f2336efSEd Maste *n_args = 3; 16045f2336efSEd Maste break; 16055f2336efSEd Maste } 16065f2336efSEd Maste /* linux_connect */ 16075f2336efSEd Maste case 203: { 16085f2336efSEd Maste struct linux_connect_args *p = params; 1609*6b7c23a0SBrooks Davis iarg[a++] = p->s; /* l_int */ 1610*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->name; /* l_uintptr_t */ 1611*6b7c23a0SBrooks Davis iarg[a++] = p->namelen; /* l_int */ 16125f2336efSEd Maste *n_args = 3; 16135f2336efSEd Maste break; 16145f2336efSEd Maste } 16155f2336efSEd Maste /* linux_getsockname */ 16165f2336efSEd Maste case 204: { 16175f2336efSEd Maste struct linux_getsockname_args *p = params; 1618*6b7c23a0SBrooks Davis iarg[a++] = p->s; /* l_int */ 1619*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->addr; /* l_uintptr_t */ 1620*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->namelen; /* l_uintptr_t */ 16215f2336efSEd Maste *n_args = 3; 16225f2336efSEd Maste break; 16235f2336efSEd Maste } 16245f2336efSEd Maste /* linux_getpeername */ 16255f2336efSEd Maste case 205: { 16265f2336efSEd Maste struct linux_getpeername_args *p = params; 1627*6b7c23a0SBrooks Davis iarg[a++] = p->s; /* l_int */ 1628*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->addr; /* l_uintptr_t */ 1629*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->namelen; /* l_uintptr_t */ 16305f2336efSEd Maste *n_args = 3; 16315f2336efSEd Maste break; 16325f2336efSEd Maste } 16335f2336efSEd Maste /* linux_sendto */ 16345f2336efSEd Maste case 206: { 16355f2336efSEd Maste struct linux_sendto_args *p = params; 1636*6b7c23a0SBrooks Davis iarg[a++] = p->s; /* l_int */ 1637*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->msg; /* l_uintptr_t */ 1638*6b7c23a0SBrooks Davis iarg[a++] = p->len; /* l_size_t */ 1639*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_uint */ 1640*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->to; /* l_uintptr_t */ 1641*6b7c23a0SBrooks Davis iarg[a++] = p->tolen; /* l_int */ 16425f2336efSEd Maste *n_args = 6; 16435f2336efSEd Maste break; 16445f2336efSEd Maste } 16455f2336efSEd Maste /* linux_recvfrom */ 16465f2336efSEd Maste case 207: { 16475f2336efSEd Maste struct linux_recvfrom_args *p = params; 1648*6b7c23a0SBrooks Davis iarg[a++] = p->s; /* l_int */ 1649*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->buf; /* l_uintptr_t */ 1650*6b7c23a0SBrooks Davis iarg[a++] = p->len; /* l_size_t */ 1651*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_uint */ 1652*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->from; /* l_uintptr_t */ 1653*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->fromlen; /* l_uintptr_t */ 16545f2336efSEd Maste *n_args = 6; 16555f2336efSEd Maste break; 16565f2336efSEd Maste } 16575f2336efSEd Maste /* linux_setsockopt */ 16585f2336efSEd Maste case 208: { 16595f2336efSEd Maste struct linux_setsockopt_args *p = params; 1660*6b7c23a0SBrooks Davis iarg[a++] = p->s; /* l_int */ 1661*6b7c23a0SBrooks Davis iarg[a++] = p->level; /* l_int */ 1662*6b7c23a0SBrooks Davis iarg[a++] = p->optname; /* l_int */ 1663*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->optval; /* l_uintptr_t */ 1664*6b7c23a0SBrooks Davis iarg[a++] = p->optlen; /* l_int */ 16655f2336efSEd Maste *n_args = 5; 16665f2336efSEd Maste break; 16675f2336efSEd Maste } 16685f2336efSEd Maste /* linux_getsockopt */ 16695f2336efSEd Maste case 209: { 16705f2336efSEd Maste struct linux_getsockopt_args *p = params; 1671*6b7c23a0SBrooks Davis iarg[a++] = p->s; /* l_int */ 1672*6b7c23a0SBrooks Davis iarg[a++] = p->level; /* l_int */ 1673*6b7c23a0SBrooks Davis iarg[a++] = p->optname; /* l_int */ 1674*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->optval; /* l_uintptr_t */ 1675*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->optlen; /* l_uintptr_t */ 16765f2336efSEd Maste *n_args = 5; 16775f2336efSEd Maste break; 16785f2336efSEd Maste } 16795f2336efSEd Maste /* linux_shutdown */ 16805f2336efSEd Maste case 210: { 16815f2336efSEd Maste struct linux_shutdown_args *p = params; 1682*6b7c23a0SBrooks Davis iarg[a++] = p->s; /* l_int */ 1683*6b7c23a0SBrooks Davis iarg[a++] = p->how; /* l_int */ 16845f2336efSEd Maste *n_args = 2; 16855f2336efSEd Maste break; 16865f2336efSEd Maste } 16875f2336efSEd Maste /* linux_sendmsg */ 16885f2336efSEd Maste case 211: { 16895f2336efSEd Maste struct linux_sendmsg_args *p = params; 1690*6b7c23a0SBrooks Davis iarg[a++] = p->s; /* l_int */ 1691*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->msg; /* l_uintptr_t */ 1692*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_uint */ 16935f2336efSEd Maste *n_args = 3; 16945f2336efSEd Maste break; 16955f2336efSEd Maste } 16965f2336efSEd Maste /* linux_recvmsg */ 16975f2336efSEd Maste case 212: { 16985f2336efSEd Maste struct linux_recvmsg_args *p = params; 1699*6b7c23a0SBrooks Davis iarg[a++] = p->s; /* l_int */ 1700*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->msg; /* l_uintptr_t */ 1701*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_uint */ 17025f2336efSEd Maste *n_args = 3; 17035f2336efSEd Maste break; 17045f2336efSEd Maste } 17055f2336efSEd Maste /* linux_brk */ 17065f2336efSEd Maste case 214: { 17075f2336efSEd Maste struct linux_brk_args *p = params; 1708*6b7c23a0SBrooks Davis iarg[a++] = p->dsend; /* l_ulong */ 17095f2336efSEd Maste *n_args = 1; 17105f2336efSEd Maste break; 17115f2336efSEd Maste } 17125f2336efSEd Maste /* munmap */ 17135f2336efSEd Maste case 215: { 17145f2336efSEd Maste struct munmap_args *p = params; 1715*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->addr; /* void * */ 1716*6b7c23a0SBrooks Davis iarg[a++] = p->len; /* l_size_t */ 17175f2336efSEd Maste *n_args = 2; 17185f2336efSEd Maste break; 17195f2336efSEd Maste } 17205f2336efSEd Maste /* linux_mremap */ 17215f2336efSEd Maste case 216: { 17225f2336efSEd Maste struct linux_mremap_args *p = params; 1723*6b7c23a0SBrooks Davis iarg[a++] = p->addr; /* l_ulong */ 1724*6b7c23a0SBrooks Davis iarg[a++] = p->old_len; /* l_ulong */ 1725*6b7c23a0SBrooks Davis iarg[a++] = p->new_len; /* l_ulong */ 1726*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_ulong */ 1727*6b7c23a0SBrooks Davis iarg[a++] = p->new_addr; /* l_ulong */ 17285f2336efSEd Maste *n_args = 5; 17295f2336efSEd Maste break; 17305f2336efSEd Maste } 17315f2336efSEd Maste /* linux_add_key */ 17325f2336efSEd Maste case 217: { 17335f2336efSEd Maste *n_args = 0; 17345f2336efSEd Maste break; 17355f2336efSEd Maste } 17365f2336efSEd Maste /* linux_request_key */ 17375f2336efSEd Maste case 218: { 17385f2336efSEd Maste *n_args = 0; 17395f2336efSEd Maste break; 17405f2336efSEd Maste } 17415f2336efSEd Maste /* linux_keyctl */ 17425f2336efSEd Maste case 219: { 17435f2336efSEd Maste *n_args = 0; 17445f2336efSEd Maste break; 17455f2336efSEd Maste } 17465f2336efSEd Maste /* linux_clone */ 17475f2336efSEd Maste case 220: { 17485f2336efSEd Maste struct linux_clone_args *p = params; 1749*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_ulong */ 1750*6b7c23a0SBrooks Davis iarg[a++] = p->stack; /* l_ulong */ 1751*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->parent_tidptr; /* l_int * */ 1752*6b7c23a0SBrooks Davis iarg[a++] = p->tls; /* l_ulong */ 1753*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->child_tidptr; /* l_int * */ 17545f2336efSEd Maste *n_args = 5; 17555f2336efSEd Maste break; 17565f2336efSEd Maste } 17575f2336efSEd Maste /* linux_execve */ 17585f2336efSEd Maste case 221: { 17595f2336efSEd Maste struct linux_execve_args *p = params; 1760*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->path; /* char * */ 1761*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->argp; /* char ** */ 1762*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->envp; /* char ** */ 17635f2336efSEd Maste *n_args = 3; 17645f2336efSEd Maste break; 17655f2336efSEd Maste } 17665f2336efSEd Maste /* linux_mmap2 */ 17675f2336efSEd Maste case 222: { 17685f2336efSEd Maste struct linux_mmap2_args *p = params; 1769*6b7c23a0SBrooks Davis iarg[a++] = p->addr; /* l_ulong */ 1770*6b7c23a0SBrooks Davis iarg[a++] = p->len; /* l_ulong */ 1771*6b7c23a0SBrooks Davis iarg[a++] = p->prot; /* l_ulong */ 1772*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_ulong */ 1773*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* l_ulong */ 1774*6b7c23a0SBrooks Davis iarg[a++] = p->pgoff; /* l_ulong */ 17755f2336efSEd Maste *n_args = 6; 17765f2336efSEd Maste break; 17775f2336efSEd Maste } 17785f2336efSEd Maste /* linux_fadvise64 */ 17795f2336efSEd Maste case 223: { 17805f2336efSEd Maste struct linux_fadvise64_args *p = params; 1781*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* l_int */ 1782*6b7c23a0SBrooks Davis iarg[a++] = p->offset; /* l_loff_t */ 1783*6b7c23a0SBrooks Davis iarg[a++] = p->len; /* l_size_t */ 1784*6b7c23a0SBrooks Davis iarg[a++] = p->advice; /* l_int */ 17855f2336efSEd Maste *n_args = 4; 17865f2336efSEd Maste break; 17875f2336efSEd Maste } 17885f2336efSEd Maste /* swapon */ 17895f2336efSEd Maste case 224: { 17905f2336efSEd Maste struct swapon_args *p = params; 1791*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->name; /* char * */ 17925f2336efSEd Maste *n_args = 1; 17935f2336efSEd Maste break; 17945f2336efSEd Maste } 17955f2336efSEd Maste /* linux_swapoff */ 17965f2336efSEd Maste case 225: { 17975f2336efSEd Maste *n_args = 0; 17985f2336efSEd Maste break; 17995f2336efSEd Maste } 18005f2336efSEd Maste /* linux_mprotect */ 18015f2336efSEd Maste case 226: { 18025f2336efSEd Maste struct linux_mprotect_args *p = params; 1803*6b7c23a0SBrooks Davis iarg[a++] = p->addr; /* l_ulong */ 1804*6b7c23a0SBrooks Davis iarg[a++] = p->len; /* l_size_t */ 1805*6b7c23a0SBrooks Davis iarg[a++] = p->prot; /* l_ulong */ 18065f2336efSEd Maste *n_args = 3; 18075f2336efSEd Maste break; 18085f2336efSEd Maste } 18095f2336efSEd Maste /* linux_msync */ 18105f2336efSEd Maste case 227: { 18115f2336efSEd Maste struct linux_msync_args *p = params; 1812*6b7c23a0SBrooks Davis iarg[a++] = p->addr; /* l_ulong */ 1813*6b7c23a0SBrooks Davis iarg[a++] = p->len; /* l_size_t */ 1814*6b7c23a0SBrooks Davis iarg[a++] = p->fl; /* l_int */ 18155f2336efSEd Maste *n_args = 3; 18165f2336efSEd Maste break; 18175f2336efSEd Maste } 18185f2336efSEd Maste /* mlock */ 18195f2336efSEd Maste case 228: { 18205f2336efSEd Maste struct mlock_args *p = params; 1821*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->addr; /* const void * */ 1822*6b7c23a0SBrooks Davis uarg[a++] = p->len; /* size_t */ 18235f2336efSEd Maste *n_args = 2; 18245f2336efSEd Maste break; 18255f2336efSEd Maste } 18265f2336efSEd Maste /* munlock */ 18275f2336efSEd Maste case 229: { 18285f2336efSEd Maste struct munlock_args *p = params; 1829*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->addr; /* const void * */ 1830*6b7c23a0SBrooks Davis uarg[a++] = p->len; /* size_t */ 18315f2336efSEd Maste *n_args = 2; 18325f2336efSEd Maste break; 18335f2336efSEd Maste } 18345f2336efSEd Maste /* mlockall */ 18355f2336efSEd Maste case 230: { 18365f2336efSEd Maste struct mlockall_args *p = params; 1837*6b7c23a0SBrooks Davis iarg[a++] = p->how; /* int */ 18385f2336efSEd Maste *n_args = 1; 18395f2336efSEd Maste break; 18405f2336efSEd Maste } 18415f2336efSEd Maste /* munlockall */ 18425f2336efSEd Maste case 231: { 18435f2336efSEd Maste *n_args = 0; 18445f2336efSEd Maste break; 18455f2336efSEd Maste } 18465f2336efSEd Maste /* linux_mincore */ 18475f2336efSEd Maste case 232: { 18485f2336efSEd Maste struct linux_mincore_args *p = params; 1849*6b7c23a0SBrooks Davis iarg[a++] = p->start; /* l_ulong */ 1850*6b7c23a0SBrooks Davis iarg[a++] = p->len; /* l_size_t */ 1851*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->vec; /* u_char * */ 18525f2336efSEd Maste *n_args = 3; 18535f2336efSEd Maste break; 18545f2336efSEd Maste } 1855bafd96b8SEdward Tomasz Napierala /* linux_madvise */ 18565f2336efSEd Maste case 233: { 1857bafd96b8SEdward Tomasz Napierala struct linux_madvise_args *p = params; 1858*6b7c23a0SBrooks Davis iarg[a++] = p->addr; /* l_ulong */ 1859*6b7c23a0SBrooks Davis iarg[a++] = p->len; /* l_size_t */ 1860*6b7c23a0SBrooks Davis iarg[a++] = p->behav; /* l_int */ 18615f2336efSEd Maste *n_args = 3; 18625f2336efSEd Maste break; 18635f2336efSEd Maste } 18645f2336efSEd Maste /* linux_remap_file_pages */ 18655f2336efSEd Maste case 234: { 18665f2336efSEd Maste *n_args = 0; 18675f2336efSEd Maste break; 18685f2336efSEd Maste } 18695f2336efSEd Maste /* linux_mbind */ 18705f2336efSEd Maste case 235: { 18715f2336efSEd Maste *n_args = 0; 18725f2336efSEd Maste break; 18735f2336efSEd Maste } 18745f2336efSEd Maste /* linux_get_mempolicy */ 18755f2336efSEd Maste case 236: { 18765f2336efSEd Maste *n_args = 0; 18775f2336efSEd Maste break; 18785f2336efSEd Maste } 18795f2336efSEd Maste /* linux_set_mempolicy */ 18805f2336efSEd Maste case 237: { 18815f2336efSEd Maste *n_args = 0; 18825f2336efSEd Maste break; 18835f2336efSEd Maste } 18845f2336efSEd Maste /* linux_migrate_pages */ 18855f2336efSEd Maste case 238: { 18865f2336efSEd Maste *n_args = 0; 18875f2336efSEd Maste break; 18885f2336efSEd Maste } 18895f2336efSEd Maste /* linux_move_pages */ 18905f2336efSEd Maste case 239: { 18915f2336efSEd Maste *n_args = 0; 18925f2336efSEd Maste break; 18935f2336efSEd Maste } 18945f2336efSEd Maste /* linux_rt_tgsigqueueinfo */ 18955f2336efSEd Maste case 240: { 18965f2336efSEd Maste struct linux_rt_tgsigqueueinfo_args *p = params; 1897*6b7c23a0SBrooks Davis iarg[a++] = p->tgid; /* l_pid_t */ 1898*6b7c23a0SBrooks Davis iarg[a++] = p->tid; /* l_pid_t */ 1899*6b7c23a0SBrooks Davis iarg[a++] = p->sig; /* l_int */ 1900*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->uinfo; /* l_siginfo_t * */ 19015f2336efSEd Maste *n_args = 4; 19025f2336efSEd Maste break; 19035f2336efSEd Maste } 19045f2336efSEd Maste /* linux_perf_event_open */ 19055f2336efSEd Maste case 241: { 19065f2336efSEd Maste *n_args = 0; 19075f2336efSEd Maste break; 19085f2336efSEd Maste } 19095f2336efSEd Maste /* linux_accept4 */ 19105f2336efSEd Maste case 242: { 19115f2336efSEd Maste struct linux_accept4_args *p = params; 1912*6b7c23a0SBrooks Davis iarg[a++] = p->s; /* l_int */ 1913*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->addr; /* l_uintptr_t */ 1914*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->namelen; /* l_uintptr_t */ 1915*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_int */ 19165f2336efSEd Maste *n_args = 4; 19175f2336efSEd Maste break; 19185f2336efSEd Maste } 19195f2336efSEd Maste /* linux_recvmmsg */ 19205f2336efSEd Maste case 243: { 19215f2336efSEd Maste struct linux_recvmmsg_args *p = params; 1922*6b7c23a0SBrooks Davis iarg[a++] = p->s; /* l_int */ 1923*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->msg; /* struct l_mmsghdr * */ 1924*6b7c23a0SBrooks Davis iarg[a++] = p->vlen; /* l_uint */ 1925*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_uint */ 1926*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->timeout; /* struct l_timespec * */ 19275f2336efSEd Maste *n_args = 5; 19285f2336efSEd Maste break; 19295f2336efSEd Maste } 19305f2336efSEd Maste /* linux_wait4 */ 19315f2336efSEd Maste case 260: { 19325f2336efSEd Maste struct linux_wait4_args *p = params; 1933*6b7c23a0SBrooks Davis iarg[a++] = p->pid; /* l_pid_t */ 1934*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->status; /* l_int * */ 1935*6b7c23a0SBrooks Davis iarg[a++] = p->options; /* l_int */ 1936*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->rusage; /* struct rusage * */ 19375f2336efSEd Maste *n_args = 4; 19385f2336efSEd Maste break; 19395f2336efSEd Maste } 19405f2336efSEd Maste /* linux_prlimit64 */ 19415f2336efSEd Maste case 261: { 19425f2336efSEd Maste struct linux_prlimit64_args *p = params; 1943*6b7c23a0SBrooks Davis iarg[a++] = p->pid; /* l_pid_t */ 1944*6b7c23a0SBrooks Davis iarg[a++] = p->resource; /* l_uint */ 1945*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->new; /* struct rlimit * */ 1946*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->old; /* struct rlimit * */ 19475f2336efSEd Maste *n_args = 4; 19485f2336efSEd Maste break; 19495f2336efSEd Maste } 19505f2336efSEd Maste /* linux_fanotify_init */ 19515f2336efSEd Maste case 262: { 19525f2336efSEd Maste *n_args = 0; 19535f2336efSEd Maste break; 19545f2336efSEd Maste } 19555f2336efSEd Maste /* linux_fanotify_mark */ 19565f2336efSEd Maste case 263: { 19575f2336efSEd Maste *n_args = 0; 19585f2336efSEd Maste break; 19595f2336efSEd Maste } 19605f2336efSEd Maste /* linux_name_to_handle_at */ 19615f2336efSEd Maste case 264: { 196277eb9841SConrad Meyer struct linux_name_to_handle_at_args *p = params; 1963*6b7c23a0SBrooks Davis iarg[a++] = p->dirfd; /* l_int */ 1964*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->name; /* const char * */ 1965*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->handle; /* struct l_file_handle * */ 1966*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->mnt_id; /* l_int * */ 1967*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_int */ 196877eb9841SConrad Meyer *n_args = 5; 19695f2336efSEd Maste break; 19705f2336efSEd Maste } 19715f2336efSEd Maste /* linux_open_by_handle_at */ 19725f2336efSEd Maste case 265: { 197377eb9841SConrad Meyer struct linux_open_by_handle_at_args *p = params; 1974*6b7c23a0SBrooks Davis iarg[a++] = p->mountdirfd; /* l_int */ 1975*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->handle; /* struct l_file_handle * */ 1976*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_int */ 197777eb9841SConrad Meyer *n_args = 3; 19785f2336efSEd Maste break; 19795f2336efSEd Maste } 19805f2336efSEd Maste /* linux_clock_adjtime */ 19815f2336efSEd Maste case 266: { 19825f2336efSEd Maste *n_args = 0; 19835f2336efSEd Maste break; 19845f2336efSEd Maste } 19855f2336efSEd Maste /* linux_syncfs */ 19865f2336efSEd Maste case 267: { 19875f2336efSEd Maste struct linux_syncfs_args *p = params; 1988*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* l_int */ 19895f2336efSEd Maste *n_args = 1; 19905f2336efSEd Maste break; 19915f2336efSEd Maste } 19925f2336efSEd Maste /* linux_setns */ 19935f2336efSEd Maste case 268: { 19945f2336efSEd Maste struct linux_setns_args *p = params; 1995*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* l_int */ 1996*6b7c23a0SBrooks Davis iarg[a++] = p->nstype; /* l_int */ 19975f2336efSEd Maste *n_args = 2; 19985f2336efSEd Maste break; 19995f2336efSEd Maste } 20005f2336efSEd Maste /* linux_sendmmsg */ 20015f2336efSEd Maste case 269: { 20025f2336efSEd Maste struct linux_sendmmsg_args *p = params; 2003*6b7c23a0SBrooks Davis iarg[a++] = p->s; /* l_int */ 2004*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->msg; /* struct l_mmsghdr * */ 2005*6b7c23a0SBrooks Davis iarg[a++] = p->vlen; /* l_uint */ 2006*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_uint */ 20075f2336efSEd Maste *n_args = 4; 20085f2336efSEd Maste break; 20095f2336efSEd Maste } 20105f2336efSEd Maste /* linux_process_vm_readv */ 20115f2336efSEd Maste case 270: { 20125f2336efSEd Maste struct linux_process_vm_readv_args *p = params; 2013*6b7c23a0SBrooks Davis iarg[a++] = p->pid; /* l_pid_t */ 2014*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->lvec; /* const struct iovec * */ 2015*6b7c23a0SBrooks Davis iarg[a++] = p->liovcnt; /* l_ulong */ 2016*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->rvec; /* const struct iovec * */ 2017*6b7c23a0SBrooks Davis iarg[a++] = p->riovcnt; /* l_ulong */ 2018*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_ulong */ 20195f2336efSEd Maste *n_args = 6; 20205f2336efSEd Maste break; 20215f2336efSEd Maste } 20225f2336efSEd Maste /* linux_process_vm_writev */ 20235f2336efSEd Maste case 271: { 20245f2336efSEd Maste struct linux_process_vm_writev_args *p = params; 2025*6b7c23a0SBrooks Davis iarg[a++] = p->pid; /* l_pid_t */ 2026*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->lvec; /* const struct iovec * */ 2027*6b7c23a0SBrooks Davis iarg[a++] = p->liovcnt; /* l_ulong */ 2028*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->rvec; /* const struct iovec * */ 2029*6b7c23a0SBrooks Davis iarg[a++] = p->riovcnt; /* l_ulong */ 2030*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_ulong */ 20315f2336efSEd Maste *n_args = 6; 20325f2336efSEd Maste break; 20335f2336efSEd Maste } 20345f2336efSEd Maste /* linux_kcmp */ 20355f2336efSEd Maste case 272: { 20365f2336efSEd Maste struct linux_kcmp_args *p = params; 2037*6b7c23a0SBrooks Davis iarg[a++] = p->pid1; /* l_pid_t */ 2038*6b7c23a0SBrooks Davis iarg[a++] = p->pid2; /* l_pid_t */ 2039*6b7c23a0SBrooks Davis iarg[a++] = p->type; /* l_int */ 2040*6b7c23a0SBrooks Davis iarg[a++] = p->idx1; /* l_ulong */ 2041*6b7c23a0SBrooks Davis iarg[a++] = p->idx; /* l_ulong */ 20425f2336efSEd Maste *n_args = 5; 20435f2336efSEd Maste break; 20445f2336efSEd Maste } 20455f2336efSEd Maste /* linux_finit_module */ 20465f2336efSEd Maste case 273: { 20475f2336efSEd Maste struct linux_finit_module_args *p = params; 2048*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* l_int */ 2049*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->uargs; /* const char * */ 2050*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_int */ 20515f2336efSEd Maste *n_args = 3; 20525f2336efSEd Maste break; 20535f2336efSEd Maste } 20545f2336efSEd Maste /* linux_sched_setattr */ 20555f2336efSEd Maste case 274: { 20565f2336efSEd Maste struct linux_sched_setattr_args *p = params; 2057*6b7c23a0SBrooks Davis iarg[a++] = p->pid; /* l_pid_t */ 2058*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->attr; /* void * */ 2059*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_uint */ 20605f2336efSEd Maste *n_args = 3; 20615f2336efSEd Maste break; 20625f2336efSEd Maste } 20635f2336efSEd Maste /* linux_sched_getattr */ 20645f2336efSEd Maste case 275: { 20655f2336efSEd Maste struct linux_sched_getattr_args *p = params; 2066*6b7c23a0SBrooks Davis iarg[a++] = p->pid; /* l_pid_t */ 2067*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->attr; /* void * */ 2068*6b7c23a0SBrooks Davis iarg[a++] = p->size; /* l_uint */ 2069*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_uint */ 20705f2336efSEd Maste *n_args = 4; 20715f2336efSEd Maste break; 20725f2336efSEd Maste } 20735f2336efSEd Maste /* linux_renameat2 */ 20745f2336efSEd Maste case 276: { 20755f2336efSEd Maste struct linux_renameat2_args *p = params; 2076*6b7c23a0SBrooks Davis iarg[a++] = p->olddfd; /* l_int */ 2077*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->oldname; /* const char * */ 2078*6b7c23a0SBrooks Davis iarg[a++] = p->newdfd; /* l_int */ 2079*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->newname; /* const char * */ 2080*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_uint */ 20815f2336efSEd Maste *n_args = 5; 20825f2336efSEd Maste break; 20835f2336efSEd Maste } 20845f2336efSEd Maste /* linux_seccomp */ 20855f2336efSEd Maste case 277: { 20865f2336efSEd Maste struct linux_seccomp_args *p = params; 2087*6b7c23a0SBrooks Davis iarg[a++] = p->op; /* l_uint */ 2088*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_uint */ 2089*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->uargs; /* const char * */ 20905f2336efSEd Maste *n_args = 3; 20915f2336efSEd Maste break; 20925f2336efSEd Maste } 20935f2336efSEd Maste /* linux_getrandom */ 20945f2336efSEd Maste case 278: { 20955f2336efSEd Maste struct linux_getrandom_args *p = params; 2096*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->buf; /* char * */ 2097*6b7c23a0SBrooks Davis iarg[a++] = p->count; /* l_size_t */ 2098*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_uint */ 20995f2336efSEd Maste *n_args = 3; 21005f2336efSEd Maste break; 21015f2336efSEd Maste } 21025f2336efSEd Maste /* linux_memfd_create */ 21035f2336efSEd Maste case 279: { 21045f2336efSEd Maste struct linux_memfd_create_args *p = params; 2105*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->uname_ptr; /* const char * */ 2106*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_uint */ 21075f2336efSEd Maste *n_args = 2; 21085f2336efSEd Maste break; 21095f2336efSEd Maste } 21105f2336efSEd Maste /* linux_bpf */ 21115f2336efSEd Maste case 280: { 21125f2336efSEd Maste struct linux_bpf_args *p = params; 2113*6b7c23a0SBrooks Davis iarg[a++] = p->cmd; /* l_int */ 2114*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->attr; /* void * */ 2115*6b7c23a0SBrooks Davis iarg[a++] = p->size; /* l_uint */ 21165f2336efSEd Maste *n_args = 3; 21175f2336efSEd Maste break; 21185f2336efSEd Maste } 21195f2336efSEd Maste /* linux_execveat */ 21205f2336efSEd Maste case 281: { 21215f2336efSEd Maste struct linux_execveat_args *p = params; 2122*6b7c23a0SBrooks Davis iarg[a++] = p->dfd; /* l_int */ 2123*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->filename; /* const char * */ 2124*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->argv; /* const char ** */ 2125*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->envp; /* const char ** */ 2126*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_int */ 21275f2336efSEd Maste *n_args = 5; 21285f2336efSEd Maste break; 21295f2336efSEd Maste } 21305f2336efSEd Maste /* linux_userfaultfd */ 21315f2336efSEd Maste case 282: { 21325f2336efSEd Maste struct linux_userfaultfd_args *p = params; 2133*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_int */ 21345f2336efSEd Maste *n_args = 1; 21355f2336efSEd Maste break; 21365f2336efSEd Maste } 21375f2336efSEd Maste /* linux_membarrier */ 21385f2336efSEd Maste case 283: { 21395f2336efSEd Maste struct linux_membarrier_args *p = params; 2140*6b7c23a0SBrooks Davis iarg[a++] = p->cmd; /* l_int */ 2141*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_int */ 21425f2336efSEd Maste *n_args = 2; 21435f2336efSEd Maste break; 21445f2336efSEd Maste } 21455f2336efSEd Maste /* linux_mlock2 */ 21465f2336efSEd Maste case 284: { 21475f2336efSEd Maste struct linux_mlock2_args *p = params; 2148*6b7c23a0SBrooks Davis iarg[a++] = p->start; /* l_ulong */ 2149*6b7c23a0SBrooks Davis iarg[a++] = p->len; /* l_size_t */ 2150*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_int */ 21515f2336efSEd Maste *n_args = 3; 21525f2336efSEd Maste break; 21535f2336efSEd Maste } 21545f2336efSEd Maste /* linux_copy_file_range */ 21555f2336efSEd Maste case 285: { 21565f2336efSEd Maste struct linux_copy_file_range_args *p = params; 2157*6b7c23a0SBrooks Davis iarg[a++] = p->fd_in; /* l_int */ 2158*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->off_in; /* l_loff_t * */ 2159*6b7c23a0SBrooks Davis iarg[a++] = p->fd_out; /* l_int */ 2160*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->off_out; /* l_loff_t * */ 2161*6b7c23a0SBrooks Davis iarg[a++] = p->len; /* l_size_t */ 2162*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_uint */ 21635f2336efSEd Maste *n_args = 6; 21645f2336efSEd Maste break; 21655f2336efSEd Maste } 21665f2336efSEd Maste /* linux_preadv2 */ 21675f2336efSEd Maste case 286: { 21685f2336efSEd Maste struct linux_preadv2_args *p = params; 2169*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* l_ulong */ 2170*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->vec; /* const struct iovec * */ 2171*6b7c23a0SBrooks Davis iarg[a++] = p->vlen; /* l_ulong */ 2172*6b7c23a0SBrooks Davis iarg[a++] = p->pos_l; /* l_ulong */ 2173*6b7c23a0SBrooks Davis iarg[a++] = p->pos_h; /* l_ulong */ 2174*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_int */ 21755f2336efSEd Maste *n_args = 6; 21765f2336efSEd Maste break; 21775f2336efSEd Maste } 21785f2336efSEd Maste /* linux_pwritev2 */ 21795f2336efSEd Maste case 287: { 21805f2336efSEd Maste struct linux_pwritev2_args *p = params; 2181*6b7c23a0SBrooks Davis iarg[a++] = p->fd; /* l_ulong */ 2182*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->vec; /* const struct iovec * */ 2183*6b7c23a0SBrooks Davis iarg[a++] = p->vlen; /* l_ulong */ 2184*6b7c23a0SBrooks Davis iarg[a++] = p->pos_l; /* l_ulong */ 2185*6b7c23a0SBrooks Davis iarg[a++] = p->pos_h; /* l_ulong */ 2186*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_int */ 21875f2336efSEd Maste *n_args = 6; 21885f2336efSEd Maste break; 21895f2336efSEd Maste } 21905f2336efSEd Maste /* linux_pkey_mprotect */ 21915f2336efSEd Maste case 288: { 21925f2336efSEd Maste struct linux_pkey_mprotect_args *p = params; 2193*6b7c23a0SBrooks Davis iarg[a++] = p->start; /* l_ulong */ 2194*6b7c23a0SBrooks Davis iarg[a++] = p->len; /* l_size_t */ 2195*6b7c23a0SBrooks Davis iarg[a++] = p->prot; /* l_ulong */ 2196*6b7c23a0SBrooks Davis iarg[a++] = p->pkey; /* l_int */ 21975f2336efSEd Maste *n_args = 4; 21985f2336efSEd Maste break; 21995f2336efSEd Maste } 22005f2336efSEd Maste /* linux_pkey_alloc */ 22015f2336efSEd Maste case 289: { 22025f2336efSEd Maste struct linux_pkey_alloc_args *p = params; 2203*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_ulong */ 2204*6b7c23a0SBrooks Davis iarg[a++] = p->init_val; /* l_ulong */ 22055f2336efSEd Maste *n_args = 2; 22065f2336efSEd Maste break; 22075f2336efSEd Maste } 22085f2336efSEd Maste /* linux_pkey_free */ 22095f2336efSEd Maste case 290: { 22105f2336efSEd Maste struct linux_pkey_free_args *p = params; 2211*6b7c23a0SBrooks Davis iarg[a++] = p->pkey; /* l_int */ 22125f2336efSEd Maste *n_args = 1; 22135f2336efSEd Maste break; 22145f2336efSEd Maste } 2215c0f17173SEdward Tomasz Napierala /* linux_statx */ 2216c0f17173SEdward Tomasz Napierala case 291: { 2217c0f17173SEdward Tomasz Napierala struct linux_statx_args *p = params; 2218*6b7c23a0SBrooks Davis iarg[a++] = p->dirfd; /* l_int */ 2219*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->pathname; /* const char * */ 2220*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_uint */ 2221*6b7c23a0SBrooks Davis iarg[a++] = p->mask; /* l_uint */ 2222*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->statxbuf; /* void * */ 2223c0f17173SEdward Tomasz Napierala *n_args = 5; 2224c0f17173SEdward Tomasz Napierala break; 2225c0f17173SEdward Tomasz Napierala } 2226c0f17173SEdward Tomasz Napierala /* linux_io_pgetevents */ 2227c0f17173SEdward Tomasz Napierala case 292: { 2228c0f17173SEdward Tomasz Napierala *n_args = 0; 2229c0f17173SEdward Tomasz Napierala break; 2230c0f17173SEdward Tomasz Napierala } 2231c0f17173SEdward Tomasz Napierala /* linux_rseq */ 2232c0f17173SEdward Tomasz Napierala case 293: { 2233c0f17173SEdward Tomasz Napierala *n_args = 0; 2234c0f17173SEdward Tomasz Napierala break; 2235c0f17173SEdward Tomasz Napierala } 2236c0f17173SEdward Tomasz Napierala /* linux_kexec_file_load */ 2237c0f17173SEdward Tomasz Napierala case 294: { 2238c0f17173SEdward Tomasz Napierala *n_args = 0; 2239c0f17173SEdward Tomasz Napierala break; 2240c0f17173SEdward Tomasz Napierala } 2241c0f17173SEdward Tomasz Napierala /* linux_pidfd_send_signal */ 2242c0f17173SEdward Tomasz Napierala case 424: { 2243c0f17173SEdward Tomasz Napierala struct linux_pidfd_send_signal_args *p = params; 2244*6b7c23a0SBrooks Davis iarg[a++] = p->pidfd; /* l_int */ 2245*6b7c23a0SBrooks Davis iarg[a++] = p->sig; /* l_int */ 2246*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->info; /* l_siginfo_t * */ 2247*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_uint */ 2248c0f17173SEdward Tomasz Napierala *n_args = 4; 2249c0f17173SEdward Tomasz Napierala break; 2250c0f17173SEdward Tomasz Napierala } 2251c0f17173SEdward Tomasz Napierala /* linux_io_uring_setup */ 2252c0f17173SEdward Tomasz Napierala case 425: { 2253c0f17173SEdward Tomasz Napierala *n_args = 0; 2254c0f17173SEdward Tomasz Napierala break; 2255c0f17173SEdward Tomasz Napierala } 2256c0f17173SEdward Tomasz Napierala /* linux_io_uring_enter */ 2257c0f17173SEdward Tomasz Napierala case 426: { 2258c0f17173SEdward Tomasz Napierala *n_args = 0; 2259c0f17173SEdward Tomasz Napierala break; 2260c0f17173SEdward Tomasz Napierala } 2261c0f17173SEdward Tomasz Napierala /* linux_io_uring_register */ 2262c0f17173SEdward Tomasz Napierala case 427: { 2263c0f17173SEdward Tomasz Napierala *n_args = 0; 2264c0f17173SEdward Tomasz Napierala break; 2265c0f17173SEdward Tomasz Napierala } 2266c0f17173SEdward Tomasz Napierala /* linux_open_tree */ 2267c0f17173SEdward Tomasz Napierala case 428: { 2268c0f17173SEdward Tomasz Napierala *n_args = 0; 2269c0f17173SEdward Tomasz Napierala break; 2270c0f17173SEdward Tomasz Napierala } 2271c0f17173SEdward Tomasz Napierala /* linux_move_mount */ 2272c0f17173SEdward Tomasz Napierala case 429: { 2273c0f17173SEdward Tomasz Napierala *n_args = 0; 2274c0f17173SEdward Tomasz Napierala break; 2275c0f17173SEdward Tomasz Napierala } 2276c0f17173SEdward Tomasz Napierala /* linux_fsopen */ 2277c0f17173SEdward Tomasz Napierala case 430: { 2278c0f17173SEdward Tomasz Napierala *n_args = 0; 2279c0f17173SEdward Tomasz Napierala break; 2280c0f17173SEdward Tomasz Napierala } 2281c0f17173SEdward Tomasz Napierala /* linux_fsconfig */ 2282c0f17173SEdward Tomasz Napierala case 431: { 2283c0f17173SEdward Tomasz Napierala *n_args = 0; 2284c0f17173SEdward Tomasz Napierala break; 2285c0f17173SEdward Tomasz Napierala } 2286c0f17173SEdward Tomasz Napierala /* linux_fsmount */ 2287c0f17173SEdward Tomasz Napierala case 432: { 2288c0f17173SEdward Tomasz Napierala *n_args = 0; 2289c0f17173SEdward Tomasz Napierala break; 2290c0f17173SEdward Tomasz Napierala } 2291c0f17173SEdward Tomasz Napierala /* linux_fspick */ 2292c0f17173SEdward Tomasz Napierala case 433: { 2293c0f17173SEdward Tomasz Napierala *n_args = 0; 2294c0f17173SEdward Tomasz Napierala break; 2295c0f17173SEdward Tomasz Napierala } 2296c0f17173SEdward Tomasz Napierala /* linux_pidfd_open */ 2297c0f17173SEdward Tomasz Napierala case 434: { 2298c0f17173SEdward Tomasz Napierala *n_args = 0; 2299c0f17173SEdward Tomasz Napierala break; 2300c0f17173SEdward Tomasz Napierala } 2301c0f17173SEdward Tomasz Napierala /* linux_clone3 */ 2302c0f17173SEdward Tomasz Napierala case 435: { 2303b356030eSDmitry Chagin struct linux_clone3_args *p = params; 2304*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->uargs; /* struct l_user_clone_args * */ 2305*6b7c23a0SBrooks Davis iarg[a++] = p->usize; /* l_size_t */ 2306b356030eSDmitry Chagin *n_args = 2; 2307c0f17173SEdward Tomasz Napierala break; 2308c0f17173SEdward Tomasz Napierala } 2309c0f17173SEdward Tomasz Napierala /* linux_close_range */ 2310c0f17173SEdward Tomasz Napierala case 436: { 2311c0f17173SEdward Tomasz Napierala *n_args = 0; 2312c0f17173SEdward Tomasz Napierala break; 2313c0f17173SEdward Tomasz Napierala } 2314c0f17173SEdward Tomasz Napierala /* linux_openat2 */ 2315c0f17173SEdward Tomasz Napierala case 437: { 2316c0f17173SEdward Tomasz Napierala *n_args = 0; 2317c0f17173SEdward Tomasz Napierala break; 2318c0f17173SEdward Tomasz Napierala } 2319c0f17173SEdward Tomasz Napierala /* linux_pidfd_getfd */ 2320c0f17173SEdward Tomasz Napierala case 438: { 2321c0f17173SEdward Tomasz Napierala *n_args = 0; 2322c0f17173SEdward Tomasz Napierala break; 2323c0f17173SEdward Tomasz Napierala } 2324c0f17173SEdward Tomasz Napierala /* linux_faccessat2 */ 2325c0f17173SEdward Tomasz Napierala case 439: { 2326bee191e4SDmitry Chagin struct linux_faccessat2_args *p = params; 2327*6b7c23a0SBrooks Davis iarg[a++] = p->dfd; /* l_int */ 2328*6b7c23a0SBrooks Davis uarg[a++] = (intptr_t)p->filename; /* const char * */ 2329*6b7c23a0SBrooks Davis iarg[a++] = p->amode; /* l_int */ 2330*6b7c23a0SBrooks Davis iarg[a++] = p->flags; /* l_int */ 2331bee191e4SDmitry Chagin *n_args = 4; 2332c0f17173SEdward Tomasz Napierala break; 2333c0f17173SEdward Tomasz Napierala } 2334c0f17173SEdward Tomasz Napierala /* linux_process_madvise */ 2335c0f17173SEdward Tomasz Napierala case 440: { 2336c0f17173SEdward Tomasz Napierala *n_args = 0; 2337c0f17173SEdward Tomasz Napierala break; 2338c0f17173SEdward Tomasz Napierala } 2339c0f17173SEdward Tomasz Napierala /* linux_epoll_pwait2 */ 2340c0f17173SEdward Tomasz Napierala case 441: { 2341c0f17173SEdward Tomasz Napierala *n_args = 0; 2342c0f17173SEdward Tomasz Napierala break; 2343c0f17173SEdward Tomasz Napierala } 2344c0f17173SEdward Tomasz Napierala /* linux_mount_setattr */ 2345c0f17173SEdward Tomasz Napierala case 442: { 2346c0f17173SEdward Tomasz Napierala *n_args = 0; 2347c0f17173SEdward Tomasz Napierala break; 2348c0f17173SEdward Tomasz Napierala } 23495f2336efSEd Maste default: 23505f2336efSEd Maste *n_args = 0; 23515f2336efSEd Maste break; 23525f2336efSEd Maste }; 23535f2336efSEd Maste } 23545f2336efSEd Maste static void 23555f2336efSEd Maste systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz) 23565f2336efSEd Maste { 23575f2336efSEd Maste const char *p = NULL; 23585f2336efSEd Maste switch (sysnum) { 23595f2336efSEd Maste #define nosys linux_nosys 23605f2336efSEd Maste /* linux_setxattr */ 23615f2336efSEd Maste case 5: 2362a39cdcd7SEdward Tomasz Napierala switch (ndx) { 2363a39cdcd7SEdward Tomasz Napierala case 0: 2364a39cdcd7SEdward Tomasz Napierala p = "userland const char *"; 2365a39cdcd7SEdward Tomasz Napierala break; 2366a39cdcd7SEdward Tomasz Napierala case 1: 2367a39cdcd7SEdward Tomasz Napierala p = "userland const char *"; 2368a39cdcd7SEdward Tomasz Napierala break; 2369a39cdcd7SEdward Tomasz Napierala case 2: 2370a39cdcd7SEdward Tomasz Napierala p = "userland const char *"; 2371a39cdcd7SEdward Tomasz Napierala break; 2372a39cdcd7SEdward Tomasz Napierala case 3: 2373a39cdcd7SEdward Tomasz Napierala p = "l_size_t"; 2374a39cdcd7SEdward Tomasz Napierala break; 2375a39cdcd7SEdward Tomasz Napierala case 4: 2376a39cdcd7SEdward Tomasz Napierala p = "l_int"; 2377a39cdcd7SEdward Tomasz Napierala break; 2378a39cdcd7SEdward Tomasz Napierala default: 2379a39cdcd7SEdward Tomasz Napierala break; 2380a39cdcd7SEdward Tomasz Napierala }; 23815f2336efSEd Maste break; 23825f2336efSEd Maste /* linux_lsetxattr */ 23835f2336efSEd Maste case 6: 2384a39cdcd7SEdward Tomasz Napierala switch (ndx) { 2385a39cdcd7SEdward Tomasz Napierala case 0: 2386a39cdcd7SEdward Tomasz Napierala p = "userland const char *"; 2387a39cdcd7SEdward Tomasz Napierala break; 2388a39cdcd7SEdward Tomasz Napierala case 1: 2389a39cdcd7SEdward Tomasz Napierala p = "userland const char *"; 2390a39cdcd7SEdward Tomasz Napierala break; 2391a39cdcd7SEdward Tomasz Napierala case 2: 2392a39cdcd7SEdward Tomasz Napierala p = "userland const char *"; 2393a39cdcd7SEdward Tomasz Napierala break; 2394a39cdcd7SEdward Tomasz Napierala case 3: 2395a39cdcd7SEdward Tomasz Napierala p = "l_size_t"; 2396a39cdcd7SEdward Tomasz Napierala break; 2397a39cdcd7SEdward Tomasz Napierala case 4: 2398a39cdcd7SEdward Tomasz Napierala p = "l_int"; 2399a39cdcd7SEdward Tomasz Napierala break; 2400a39cdcd7SEdward Tomasz Napierala default: 2401a39cdcd7SEdward Tomasz Napierala break; 2402a39cdcd7SEdward Tomasz Napierala }; 24035f2336efSEd Maste break; 24045f2336efSEd Maste /* linux_fsetxattr */ 24055f2336efSEd Maste case 7: 2406a39cdcd7SEdward Tomasz Napierala switch (ndx) { 2407a39cdcd7SEdward Tomasz Napierala case 0: 2408a39cdcd7SEdward Tomasz Napierala p = "l_int"; 2409a39cdcd7SEdward Tomasz Napierala break; 2410a39cdcd7SEdward Tomasz Napierala case 1: 2411a39cdcd7SEdward Tomasz Napierala p = "userland const char *"; 2412a39cdcd7SEdward Tomasz Napierala break; 2413a39cdcd7SEdward Tomasz Napierala case 2: 2414a39cdcd7SEdward Tomasz Napierala p = "userland const char *"; 2415a39cdcd7SEdward Tomasz Napierala break; 2416a39cdcd7SEdward Tomasz Napierala case 3: 2417a39cdcd7SEdward Tomasz Napierala p = "l_size_t"; 2418a39cdcd7SEdward Tomasz Napierala break; 2419a39cdcd7SEdward Tomasz Napierala case 4: 2420a39cdcd7SEdward Tomasz Napierala p = "l_int"; 2421a39cdcd7SEdward Tomasz Napierala break; 2422a39cdcd7SEdward Tomasz Napierala default: 2423a39cdcd7SEdward Tomasz Napierala break; 2424a39cdcd7SEdward Tomasz Napierala }; 24255f2336efSEd Maste break; 24265f2336efSEd Maste /* linux_getxattr */ 24275f2336efSEd Maste case 8: 2428a39cdcd7SEdward Tomasz Napierala switch (ndx) { 2429a39cdcd7SEdward Tomasz Napierala case 0: 2430a39cdcd7SEdward Tomasz Napierala p = "userland const char *"; 2431a39cdcd7SEdward Tomasz Napierala break; 2432a39cdcd7SEdward Tomasz Napierala case 1: 2433a39cdcd7SEdward Tomasz Napierala p = "userland const char *"; 2434a39cdcd7SEdward Tomasz Napierala break; 2435a39cdcd7SEdward Tomasz Napierala case 2: 2436a39cdcd7SEdward Tomasz Napierala p = "userland char *"; 2437a39cdcd7SEdward Tomasz Napierala break; 2438a39cdcd7SEdward Tomasz Napierala case 3: 2439a39cdcd7SEdward Tomasz Napierala p = "l_size_t"; 2440a39cdcd7SEdward Tomasz Napierala break; 2441a39cdcd7SEdward Tomasz Napierala default: 2442a39cdcd7SEdward Tomasz Napierala break; 2443a39cdcd7SEdward Tomasz Napierala }; 24445f2336efSEd Maste break; 24455f2336efSEd Maste /* linux_lgetxattr */ 24465f2336efSEd Maste case 9: 2447a39cdcd7SEdward Tomasz Napierala switch (ndx) { 2448a39cdcd7SEdward Tomasz Napierala case 0: 2449a39cdcd7SEdward Tomasz Napierala p = "userland const char *"; 2450a39cdcd7SEdward Tomasz Napierala break; 2451a39cdcd7SEdward Tomasz Napierala case 1: 2452a39cdcd7SEdward Tomasz Napierala p = "userland const char *"; 2453a39cdcd7SEdward Tomasz Napierala break; 2454a39cdcd7SEdward Tomasz Napierala case 2: 2455a39cdcd7SEdward Tomasz Napierala p = "userland char *"; 2456a39cdcd7SEdward Tomasz Napierala break; 2457a39cdcd7SEdward Tomasz Napierala case 3: 2458a39cdcd7SEdward Tomasz Napierala p = "l_size_t"; 2459a39cdcd7SEdward Tomasz Napierala break; 2460a39cdcd7SEdward Tomasz Napierala default: 2461a39cdcd7SEdward Tomasz Napierala break; 2462a39cdcd7SEdward Tomasz Napierala }; 24635f2336efSEd Maste break; 24645f2336efSEd Maste /* linux_fgetxattr */ 24655f2336efSEd Maste case 10: 2466a39cdcd7SEdward Tomasz Napierala switch (ndx) { 2467a39cdcd7SEdward Tomasz Napierala case 0: 2468a39cdcd7SEdward Tomasz Napierala p = "l_int"; 2469a39cdcd7SEdward Tomasz Napierala break; 2470a39cdcd7SEdward Tomasz Napierala case 1: 2471a39cdcd7SEdward Tomasz Napierala p = "userland const char *"; 2472a39cdcd7SEdward Tomasz Napierala break; 2473a39cdcd7SEdward Tomasz Napierala case 2: 2474a39cdcd7SEdward Tomasz Napierala p = "userland char *"; 2475a39cdcd7SEdward Tomasz Napierala break; 2476a39cdcd7SEdward Tomasz Napierala case 3: 2477a39cdcd7SEdward Tomasz Napierala p = "l_size_t"; 2478a39cdcd7SEdward Tomasz Napierala break; 2479a39cdcd7SEdward Tomasz Napierala default: 2480a39cdcd7SEdward Tomasz Napierala break; 2481a39cdcd7SEdward Tomasz Napierala }; 24825f2336efSEd Maste break; 24835f2336efSEd Maste /* linux_listxattr */ 24845f2336efSEd Maste case 11: 2485a39cdcd7SEdward Tomasz Napierala switch (ndx) { 2486a39cdcd7SEdward Tomasz Napierala case 0: 2487a39cdcd7SEdward Tomasz Napierala p = "userland const char *"; 2488a39cdcd7SEdward Tomasz Napierala break; 2489a39cdcd7SEdward Tomasz Napierala case 1: 2490a39cdcd7SEdward Tomasz Napierala p = "userland const char *"; 2491a39cdcd7SEdward Tomasz Napierala break; 2492a39cdcd7SEdward Tomasz Napierala case 2: 2493a39cdcd7SEdward Tomasz Napierala p = "l_size_t"; 2494a39cdcd7SEdward Tomasz Napierala break; 2495a39cdcd7SEdward Tomasz Napierala default: 2496a39cdcd7SEdward Tomasz Napierala break; 2497a39cdcd7SEdward Tomasz Napierala }; 24985f2336efSEd Maste break; 24995f2336efSEd Maste /* linux_llistxattr */ 25005f2336efSEd Maste case 12: 2501a39cdcd7SEdward Tomasz Napierala switch (ndx) { 2502a39cdcd7SEdward Tomasz Napierala case 0: 2503a39cdcd7SEdward Tomasz Napierala p = "userland const char *"; 2504a39cdcd7SEdward Tomasz Napierala break; 2505a39cdcd7SEdward Tomasz Napierala case 1: 2506a39cdcd7SEdward Tomasz Napierala p = "userland const char *"; 2507a39cdcd7SEdward Tomasz Napierala break; 2508a39cdcd7SEdward Tomasz Napierala case 2: 2509a39cdcd7SEdward Tomasz Napierala p = "l_size_t"; 2510a39cdcd7SEdward Tomasz Napierala break; 2511a39cdcd7SEdward Tomasz Napierala default: 2512a39cdcd7SEdward Tomasz Napierala break; 2513a39cdcd7SEdward Tomasz Napierala }; 25145f2336efSEd Maste break; 25155f2336efSEd Maste /* linux_flistxattr */ 25165f2336efSEd Maste case 13: 2517a39cdcd7SEdward Tomasz Napierala switch (ndx) { 2518a39cdcd7SEdward Tomasz Napierala case 0: 2519a39cdcd7SEdward Tomasz Napierala p = "l_int"; 2520a39cdcd7SEdward Tomasz Napierala break; 2521a39cdcd7SEdward Tomasz Napierala case 1: 2522a39cdcd7SEdward Tomasz Napierala p = "userland const char *"; 2523a39cdcd7SEdward Tomasz Napierala break; 2524a39cdcd7SEdward Tomasz Napierala case 2: 2525a39cdcd7SEdward Tomasz Napierala p = "l_size_t"; 2526a39cdcd7SEdward Tomasz Napierala break; 2527a39cdcd7SEdward Tomasz Napierala default: 2528a39cdcd7SEdward Tomasz Napierala break; 2529a39cdcd7SEdward Tomasz Napierala }; 25305f2336efSEd Maste break; 25315f2336efSEd Maste /* linux_removexattr */ 25325f2336efSEd Maste case 14: 2533a39cdcd7SEdward Tomasz Napierala switch (ndx) { 2534a39cdcd7SEdward Tomasz Napierala case 0: 2535a39cdcd7SEdward Tomasz Napierala p = "userland const char *"; 2536a39cdcd7SEdward Tomasz Napierala break; 2537a39cdcd7SEdward Tomasz Napierala case 1: 2538a39cdcd7SEdward Tomasz Napierala p = "userland const char *"; 2539a39cdcd7SEdward Tomasz Napierala break; 2540a39cdcd7SEdward Tomasz Napierala default: 2541a39cdcd7SEdward Tomasz Napierala break; 2542a39cdcd7SEdward Tomasz Napierala }; 25435f2336efSEd Maste break; 25445f2336efSEd Maste /* linux_lremovexattr */ 25455f2336efSEd Maste case 15: 2546a39cdcd7SEdward Tomasz Napierala switch (ndx) { 2547a39cdcd7SEdward Tomasz Napierala case 0: 2548a39cdcd7SEdward Tomasz Napierala p = "userland const char *"; 2549a39cdcd7SEdward Tomasz Napierala break; 2550a39cdcd7SEdward Tomasz Napierala case 1: 2551a39cdcd7SEdward Tomasz Napierala p = "userland const char *"; 2552a39cdcd7SEdward Tomasz Napierala break; 2553a39cdcd7SEdward Tomasz Napierala default: 2554a39cdcd7SEdward Tomasz Napierala break; 2555a39cdcd7SEdward Tomasz Napierala }; 25565f2336efSEd Maste break; 25575f2336efSEd Maste /* linux_fremovexattr */ 25585f2336efSEd Maste case 16: 2559a39cdcd7SEdward Tomasz Napierala switch (ndx) { 2560a39cdcd7SEdward Tomasz Napierala case 0: 2561a39cdcd7SEdward Tomasz Napierala p = "l_int"; 2562a39cdcd7SEdward Tomasz Napierala break; 2563a39cdcd7SEdward Tomasz Napierala case 1: 2564a39cdcd7SEdward Tomasz Napierala p = "userland const char *"; 2565a39cdcd7SEdward Tomasz Napierala break; 2566a39cdcd7SEdward Tomasz Napierala default: 2567a39cdcd7SEdward Tomasz Napierala break; 2568a39cdcd7SEdward Tomasz Napierala }; 25695f2336efSEd Maste break; 25705f2336efSEd Maste /* linux_getcwd */ 25715f2336efSEd Maste case 17: 25725f2336efSEd Maste switch (ndx) { 25735f2336efSEd Maste case 0: 25745f2336efSEd Maste p = "userland char *"; 25755f2336efSEd Maste break; 25765f2336efSEd Maste case 1: 25775f2336efSEd Maste p = "l_ulong"; 25785f2336efSEd Maste break; 25795f2336efSEd Maste default: 25805f2336efSEd Maste break; 25815f2336efSEd Maste }; 25825f2336efSEd Maste break; 25835f2336efSEd Maste /* linux_lookup_dcookie */ 25845f2336efSEd Maste case 18: 25855f2336efSEd Maste break; 25865f2336efSEd Maste /* linux_eventfd2 */ 25875f2336efSEd Maste case 19: 25885f2336efSEd Maste switch (ndx) { 25895f2336efSEd Maste case 0: 25905f2336efSEd Maste p = "l_uint"; 25915f2336efSEd Maste break; 25925f2336efSEd Maste case 1: 25935f2336efSEd Maste p = "l_int"; 25945f2336efSEd Maste break; 25955f2336efSEd Maste default: 25965f2336efSEd Maste break; 25975f2336efSEd Maste }; 25985f2336efSEd Maste break; 25995f2336efSEd Maste /* linux_epoll_create1 */ 26005f2336efSEd Maste case 20: 26015f2336efSEd Maste switch (ndx) { 26025f2336efSEd Maste case 0: 26035f2336efSEd Maste p = "l_int"; 26045f2336efSEd Maste break; 26055f2336efSEd Maste default: 26065f2336efSEd Maste break; 26075f2336efSEd Maste }; 26085f2336efSEd Maste break; 26095f2336efSEd Maste /* linux_epoll_ctl */ 26105f2336efSEd Maste case 21: 26115f2336efSEd Maste switch (ndx) { 26125f2336efSEd Maste case 0: 26135f2336efSEd Maste p = "l_int"; 26145f2336efSEd Maste break; 26155f2336efSEd Maste case 1: 26165f2336efSEd Maste p = "l_int"; 26175f2336efSEd Maste break; 26185f2336efSEd Maste case 2: 26195f2336efSEd Maste p = "l_int"; 26205f2336efSEd Maste break; 26215f2336efSEd Maste case 3: 26225f2336efSEd Maste p = "userland struct epoll_event *"; 26235f2336efSEd Maste break; 26245f2336efSEd Maste default: 26255f2336efSEd Maste break; 26265f2336efSEd Maste }; 26275f2336efSEd Maste break; 26285f2336efSEd Maste /* linux_epoll_pwait */ 26295f2336efSEd Maste case 22: 26305f2336efSEd Maste switch (ndx) { 26315f2336efSEd Maste case 0: 26325f2336efSEd Maste p = "l_int"; 26335f2336efSEd Maste break; 26345f2336efSEd Maste case 1: 26355f2336efSEd Maste p = "userland struct epoll_event *"; 26365f2336efSEd Maste break; 26375f2336efSEd Maste case 2: 26385f2336efSEd Maste p = "l_int"; 26395f2336efSEd Maste break; 26405f2336efSEd Maste case 3: 26415f2336efSEd Maste p = "l_int"; 26425f2336efSEd Maste break; 26435f2336efSEd Maste case 4: 26445f2336efSEd Maste p = "userland l_sigset_t *"; 26455f2336efSEd Maste break; 26465f2336efSEd Maste case 5: 26475f2336efSEd Maste p = "l_size_t"; 26485f2336efSEd Maste break; 26495f2336efSEd Maste default: 26505f2336efSEd Maste break; 26515f2336efSEd Maste }; 26525f2336efSEd Maste break; 2653c4db0baaSEd Maste /* dup */ 2654c4db0baaSEd Maste case 23: 2655c4db0baaSEd Maste switch (ndx) { 2656c4db0baaSEd Maste case 0: 2657c4db0baaSEd Maste p = "u_int"; 2658c4db0baaSEd Maste break; 2659c4db0baaSEd Maste default: 2660c4db0baaSEd Maste break; 2661c4db0baaSEd Maste }; 2662c4db0baaSEd Maste break; 26635f2336efSEd Maste /* linux_dup3 */ 26645f2336efSEd Maste case 24: 26655f2336efSEd Maste switch (ndx) { 26665f2336efSEd Maste case 0: 26675f2336efSEd Maste p = "l_int"; 26685f2336efSEd Maste break; 26695f2336efSEd Maste case 1: 26705f2336efSEd Maste p = "l_int"; 26715f2336efSEd Maste break; 26725f2336efSEd Maste case 2: 26735f2336efSEd Maste p = "l_int"; 26745f2336efSEd Maste break; 26755f2336efSEd Maste default: 26765f2336efSEd Maste break; 26775f2336efSEd Maste }; 26785f2336efSEd Maste break; 26795f2336efSEd Maste /* linux_fcntl */ 26805f2336efSEd Maste case 25: 26815f2336efSEd Maste switch (ndx) { 26825f2336efSEd Maste case 0: 26835f2336efSEd Maste p = "l_uint"; 26845f2336efSEd Maste break; 26855f2336efSEd Maste case 1: 26865f2336efSEd Maste p = "l_uint"; 26875f2336efSEd Maste break; 26885f2336efSEd Maste case 2: 26895f2336efSEd Maste p = "l_ulong"; 26905f2336efSEd Maste break; 26915f2336efSEd Maste default: 26925f2336efSEd Maste break; 26935f2336efSEd Maste }; 26945f2336efSEd Maste break; 26955f2336efSEd Maste /* linux_inotify_init1 */ 26965f2336efSEd Maste case 26: 26975f2336efSEd Maste switch (ndx) { 26985f2336efSEd Maste case 0: 26995f2336efSEd Maste p = "l_int"; 27005f2336efSEd Maste break; 27015f2336efSEd Maste default: 27025f2336efSEd Maste break; 27035f2336efSEd Maste }; 27045f2336efSEd Maste break; 27055f2336efSEd Maste /* linux_inotify_add_watch */ 27065f2336efSEd Maste case 27: 27075f2336efSEd Maste break; 27085f2336efSEd Maste /* linux_inotify_rm_watch */ 27095f2336efSEd Maste case 28: 27105f2336efSEd Maste break; 27115f2336efSEd Maste /* linux_ioctl */ 27125f2336efSEd Maste case 29: 27135f2336efSEd Maste switch (ndx) { 27145f2336efSEd Maste case 0: 27155f2336efSEd Maste p = "l_uint"; 27165f2336efSEd Maste break; 27175f2336efSEd Maste case 1: 27185f2336efSEd Maste p = "l_uint"; 27195f2336efSEd Maste break; 27205f2336efSEd Maste case 2: 2721a39cdcd7SEdward Tomasz Napierala p = "l_ulong"; 27225f2336efSEd Maste break; 27235f2336efSEd Maste default: 27245f2336efSEd Maste break; 27255f2336efSEd Maste }; 27265f2336efSEd Maste break; 27275f2336efSEd Maste /* linux_ioprio_set */ 27285f2336efSEd Maste case 30: 27295f2336efSEd Maste break; 27305f2336efSEd Maste /* linux_ioprio_get */ 27315f2336efSEd Maste case 31: 27325f2336efSEd Maste break; 27335f2336efSEd Maste /* flock */ 27345f2336efSEd Maste case 32: 27355f2336efSEd Maste switch (ndx) { 27365f2336efSEd Maste case 0: 27375f2336efSEd Maste p = "int"; 27385f2336efSEd Maste break; 27395f2336efSEd Maste case 1: 27405f2336efSEd Maste p = "int"; 27415f2336efSEd Maste break; 27425f2336efSEd Maste default: 27435f2336efSEd Maste break; 27445f2336efSEd Maste }; 27455f2336efSEd Maste break; 27465f2336efSEd Maste /* linux_mknodat */ 27475f2336efSEd Maste case 33: 27485f2336efSEd Maste switch (ndx) { 27495f2336efSEd Maste case 0: 27505f2336efSEd Maste p = "l_int"; 27515f2336efSEd Maste break; 27525f2336efSEd Maste case 1: 27535f2336efSEd Maste p = "userland const char *"; 27545f2336efSEd Maste break; 27555f2336efSEd Maste case 2: 27565f2336efSEd Maste p = "l_int"; 27575f2336efSEd Maste break; 27585f2336efSEd Maste case 3: 27595f2336efSEd Maste p = "l_uint"; 27605f2336efSEd Maste break; 27615f2336efSEd Maste default: 27625f2336efSEd Maste break; 27635f2336efSEd Maste }; 27645f2336efSEd Maste break; 27655f2336efSEd Maste /* linux_mkdirat */ 27665f2336efSEd Maste case 34: 27675f2336efSEd Maste switch (ndx) { 27685f2336efSEd Maste case 0: 27695f2336efSEd Maste p = "l_int"; 27705f2336efSEd Maste break; 27715f2336efSEd Maste case 1: 27725f2336efSEd Maste p = "userland const char *"; 27735f2336efSEd Maste break; 27745f2336efSEd Maste case 2: 2775a39cdcd7SEdward Tomasz Napierala p = "l_mode_t"; 27765f2336efSEd Maste break; 27775f2336efSEd Maste default: 27785f2336efSEd Maste break; 27795f2336efSEd Maste }; 27805f2336efSEd Maste break; 27815f2336efSEd Maste /* linux_unlinkat */ 27825f2336efSEd Maste case 35: 27835f2336efSEd Maste switch (ndx) { 27845f2336efSEd Maste case 0: 27855f2336efSEd Maste p = "l_int"; 27865f2336efSEd Maste break; 27875f2336efSEd Maste case 1: 27885f2336efSEd Maste p = "userland const char *"; 27895f2336efSEd Maste break; 27905f2336efSEd Maste case 2: 27915f2336efSEd Maste p = "l_int"; 27925f2336efSEd Maste break; 27935f2336efSEd Maste default: 27945f2336efSEd Maste break; 27955f2336efSEd Maste }; 27965f2336efSEd Maste break; 27975f2336efSEd Maste /* linux_symlinkat */ 27985f2336efSEd Maste case 36: 27995f2336efSEd Maste switch (ndx) { 28005f2336efSEd Maste case 0: 28015f2336efSEd Maste p = "userland const char *"; 28025f2336efSEd Maste break; 28035f2336efSEd Maste case 1: 28045f2336efSEd Maste p = "l_int"; 28055f2336efSEd Maste break; 28065f2336efSEd Maste case 2: 28075f2336efSEd Maste p = "userland const char *"; 28085f2336efSEd Maste break; 28095f2336efSEd Maste default: 28105f2336efSEd Maste break; 28115f2336efSEd Maste }; 28125f2336efSEd Maste break; 28135f2336efSEd Maste /* linux_linkat */ 28145f2336efSEd Maste case 37: 28155f2336efSEd Maste switch (ndx) { 28165f2336efSEd Maste case 0: 28175f2336efSEd Maste p = "l_int"; 28185f2336efSEd Maste break; 28195f2336efSEd Maste case 1: 28205f2336efSEd Maste p = "userland const char *"; 28215f2336efSEd Maste break; 28225f2336efSEd Maste case 2: 28235f2336efSEd Maste p = "l_int"; 28245f2336efSEd Maste break; 28255f2336efSEd Maste case 3: 28265f2336efSEd Maste p = "userland const char *"; 28275f2336efSEd Maste break; 28285f2336efSEd Maste case 4: 28295f2336efSEd Maste p = "l_int"; 28305f2336efSEd Maste break; 28315f2336efSEd Maste default: 28325f2336efSEd Maste break; 28335f2336efSEd Maste }; 28345f2336efSEd Maste break; 28355f2336efSEd Maste /* linux_renameat */ 28365f2336efSEd Maste case 38: 28375f2336efSEd Maste switch (ndx) { 28385f2336efSEd Maste case 0: 28395f2336efSEd Maste p = "l_int"; 28405f2336efSEd Maste break; 28415f2336efSEd Maste case 1: 28425f2336efSEd Maste p = "userland const char *"; 28435f2336efSEd Maste break; 28445f2336efSEd Maste case 2: 28455f2336efSEd Maste p = "l_int"; 28465f2336efSEd Maste break; 28475f2336efSEd Maste case 3: 28485f2336efSEd Maste p = "userland const char *"; 28495f2336efSEd Maste break; 28505f2336efSEd Maste default: 28515f2336efSEd Maste break; 28525f2336efSEd Maste }; 28535f2336efSEd Maste break; 28545f2336efSEd Maste /* linux_mount */ 28555f2336efSEd Maste case 40: 28565f2336efSEd Maste switch (ndx) { 28575f2336efSEd Maste case 0: 28585f2336efSEd Maste p = "userland char *"; 28595f2336efSEd Maste break; 28605f2336efSEd Maste case 1: 28615f2336efSEd Maste p = "userland char *"; 28625f2336efSEd Maste break; 28635f2336efSEd Maste case 2: 28645f2336efSEd Maste p = "userland char *"; 28655f2336efSEd Maste break; 28665f2336efSEd Maste case 3: 28675f2336efSEd Maste p = "l_ulong"; 28685f2336efSEd Maste break; 28695f2336efSEd Maste case 4: 28705f2336efSEd Maste p = "userland void *"; 28715f2336efSEd Maste break; 28725f2336efSEd Maste default: 28735f2336efSEd Maste break; 28745f2336efSEd Maste }; 28755f2336efSEd Maste break; 28765f2336efSEd Maste /* linux_pivot_root */ 28775f2336efSEd Maste case 41: 28785f2336efSEd Maste break; 28795f2336efSEd Maste /* linux_statfs */ 28805f2336efSEd Maste case 43: 28815f2336efSEd Maste switch (ndx) { 28825f2336efSEd Maste case 0: 28835f2336efSEd Maste p = "userland char *"; 28845f2336efSEd Maste break; 28855f2336efSEd Maste case 1: 28865f2336efSEd Maste p = "userland struct l_statfs_buf *"; 28875f2336efSEd Maste break; 28885f2336efSEd Maste default: 28895f2336efSEd Maste break; 28905f2336efSEd Maste }; 28915f2336efSEd Maste break; 28925f2336efSEd Maste /* linux_fstatfs */ 28935f2336efSEd Maste case 44: 28945f2336efSEd Maste switch (ndx) { 28955f2336efSEd Maste case 0: 28965f2336efSEd Maste p = "l_uint"; 28975f2336efSEd Maste break; 28985f2336efSEd Maste case 1: 28995f2336efSEd Maste p = "userland struct l_statfs_buf *"; 29005f2336efSEd Maste break; 29015f2336efSEd Maste default: 29025f2336efSEd Maste break; 29035f2336efSEd Maste }; 29045f2336efSEd Maste break; 29055f2336efSEd Maste /* linux_truncate */ 29065f2336efSEd Maste case 45: 29075f2336efSEd Maste switch (ndx) { 29085f2336efSEd Maste case 0: 29095f2336efSEd Maste p = "userland char *"; 29105f2336efSEd Maste break; 29115f2336efSEd Maste case 1: 29125f2336efSEd Maste p = "l_ulong"; 29135f2336efSEd Maste break; 29145f2336efSEd Maste default: 29155f2336efSEd Maste break; 29165f2336efSEd Maste }; 29175f2336efSEd Maste break; 29185f2336efSEd Maste /* linux_ftruncate */ 29195f2336efSEd Maste case 46: 29205f2336efSEd Maste switch (ndx) { 29215f2336efSEd Maste case 0: 29225f2336efSEd Maste p = "l_int"; 29235f2336efSEd Maste break; 29245f2336efSEd Maste case 1: 29255f2336efSEd Maste p = "l_long"; 29265f2336efSEd Maste break; 29275f2336efSEd Maste default: 29285f2336efSEd Maste break; 29295f2336efSEd Maste }; 29305f2336efSEd Maste break; 29315f2336efSEd Maste /* linux_fallocate */ 29325f2336efSEd Maste case 47: 29335f2336efSEd Maste switch (ndx) { 29345f2336efSEd Maste case 0: 29355f2336efSEd Maste p = "l_int"; 29365f2336efSEd Maste break; 29375f2336efSEd Maste case 1: 29385f2336efSEd Maste p = "l_int"; 29395f2336efSEd Maste break; 29405f2336efSEd Maste case 2: 29415f2336efSEd Maste p = "l_loff_t"; 29425f2336efSEd Maste break; 29435f2336efSEd Maste case 3: 29445f2336efSEd Maste p = "l_loff_t"; 29455f2336efSEd Maste break; 29465f2336efSEd Maste default: 29475f2336efSEd Maste break; 29485f2336efSEd Maste }; 29495f2336efSEd Maste break; 29505f2336efSEd Maste /* linux_faccessat */ 29515f2336efSEd Maste case 48: 29525f2336efSEd Maste switch (ndx) { 29535f2336efSEd Maste case 0: 29545f2336efSEd Maste p = "l_int"; 29555f2336efSEd Maste break; 29565f2336efSEd Maste case 1: 29575f2336efSEd Maste p = "userland const char *"; 29585f2336efSEd Maste break; 29595f2336efSEd Maste case 2: 29605f2336efSEd Maste p = "l_int"; 29615f2336efSEd Maste break; 29625f2336efSEd Maste default: 29635f2336efSEd Maste break; 29645f2336efSEd Maste }; 29655f2336efSEd Maste break; 29665f2336efSEd Maste /* linux_chdir */ 29675f2336efSEd Maste case 49: 29685f2336efSEd Maste switch (ndx) { 29695f2336efSEd Maste case 0: 29705f2336efSEd Maste p = "userland char *"; 29715f2336efSEd Maste break; 29725f2336efSEd Maste default: 29735f2336efSEd Maste break; 29745f2336efSEd Maste }; 29755f2336efSEd Maste break; 29765f2336efSEd Maste /* fchdir */ 29775f2336efSEd Maste case 50: 29785f2336efSEd Maste switch (ndx) { 29795f2336efSEd Maste case 0: 29805f2336efSEd Maste p = "int"; 29815f2336efSEd Maste break; 29825f2336efSEd Maste default: 29835f2336efSEd Maste break; 29845f2336efSEd Maste }; 29855f2336efSEd Maste break; 29865f2336efSEd Maste /* chroot */ 29875f2336efSEd Maste case 51: 29885f2336efSEd Maste switch (ndx) { 29895f2336efSEd Maste case 0: 29905f2336efSEd Maste p = "userland char *"; 29915f2336efSEd Maste break; 29925f2336efSEd Maste default: 29935f2336efSEd Maste break; 29945f2336efSEd Maste }; 29955f2336efSEd Maste break; 29965f2336efSEd Maste /* fchmod */ 29975f2336efSEd Maste case 52: 29985f2336efSEd Maste switch (ndx) { 29995f2336efSEd Maste case 0: 30005f2336efSEd Maste p = "int"; 30015f2336efSEd Maste break; 30025f2336efSEd Maste case 1: 30035f2336efSEd Maste p = "int"; 30045f2336efSEd Maste break; 30055f2336efSEd Maste default: 30065f2336efSEd Maste break; 30075f2336efSEd Maste }; 30085f2336efSEd Maste break; 30095f2336efSEd Maste /* linux_fchmodat */ 30105f2336efSEd Maste case 53: 30115f2336efSEd Maste switch (ndx) { 30125f2336efSEd Maste case 0: 30135f2336efSEd Maste p = "l_int"; 30145f2336efSEd Maste break; 30155f2336efSEd Maste case 1: 30165f2336efSEd Maste p = "userland const char *"; 30175f2336efSEd Maste break; 30185f2336efSEd Maste case 2: 30195f2336efSEd Maste p = "l_mode_t"; 30205f2336efSEd Maste break; 30215f2336efSEd Maste default: 30225f2336efSEd Maste break; 30235f2336efSEd Maste }; 30245f2336efSEd Maste break; 30255f2336efSEd Maste /* linux_fchownat */ 30265f2336efSEd Maste case 54: 30275f2336efSEd Maste switch (ndx) { 30285f2336efSEd Maste case 0: 30295f2336efSEd Maste p = "l_int"; 30305f2336efSEd Maste break; 30315f2336efSEd Maste case 1: 30325f2336efSEd Maste p = "userland const char *"; 30335f2336efSEd Maste break; 30345f2336efSEd Maste case 2: 30355f2336efSEd Maste p = "l_uid_t"; 30365f2336efSEd Maste break; 30375f2336efSEd Maste case 3: 30385f2336efSEd Maste p = "l_gid_t"; 30395f2336efSEd Maste break; 30405f2336efSEd Maste case 4: 30415f2336efSEd Maste p = "l_int"; 30425f2336efSEd Maste break; 30435f2336efSEd Maste default: 30445f2336efSEd Maste break; 30455f2336efSEd Maste }; 30465f2336efSEd Maste break; 30475f2336efSEd Maste /* fchown */ 30485f2336efSEd Maste case 55: 30495f2336efSEd Maste switch (ndx) { 30505f2336efSEd Maste case 0: 30515f2336efSEd Maste p = "int"; 30525f2336efSEd Maste break; 30535f2336efSEd Maste case 1: 30545f2336efSEd Maste p = "int"; 30555f2336efSEd Maste break; 30565f2336efSEd Maste case 2: 30575f2336efSEd Maste p = "int"; 30585f2336efSEd Maste break; 30595f2336efSEd Maste default: 30605f2336efSEd Maste break; 30615f2336efSEd Maste }; 30625f2336efSEd Maste break; 30635f2336efSEd Maste /* linux_openat */ 30645f2336efSEd Maste case 56: 30655f2336efSEd Maste switch (ndx) { 30665f2336efSEd Maste case 0: 30675f2336efSEd Maste p = "l_int"; 30685f2336efSEd Maste break; 30695f2336efSEd Maste case 1: 30705f2336efSEd Maste p = "userland const char *"; 30715f2336efSEd Maste break; 30725f2336efSEd Maste case 2: 30735f2336efSEd Maste p = "l_int"; 30745f2336efSEd Maste break; 30755f2336efSEd Maste case 3: 3076a39cdcd7SEdward Tomasz Napierala p = "l_mode_t"; 30775f2336efSEd Maste break; 30785f2336efSEd Maste default: 30795f2336efSEd Maste break; 30805f2336efSEd Maste }; 30815f2336efSEd Maste break; 30825f2336efSEd Maste /* close */ 30835f2336efSEd Maste case 57: 30845f2336efSEd Maste switch (ndx) { 30855f2336efSEd Maste case 0: 30865f2336efSEd Maste p = "int"; 30875f2336efSEd Maste break; 30885f2336efSEd Maste default: 30895f2336efSEd Maste break; 30905f2336efSEd Maste }; 30915f2336efSEd Maste break; 30925f2336efSEd Maste /* linux_vhangup */ 30935f2336efSEd Maste case 58: 30945f2336efSEd Maste break; 30955f2336efSEd Maste /* linux_pipe2 */ 30965f2336efSEd Maste case 59: 30975f2336efSEd Maste switch (ndx) { 30985f2336efSEd Maste case 0: 30995f2336efSEd Maste p = "userland l_int *"; 31005f2336efSEd Maste break; 31015f2336efSEd Maste case 1: 31025f2336efSEd Maste p = "l_int"; 31035f2336efSEd Maste break; 31045f2336efSEd Maste default: 31055f2336efSEd Maste break; 31065f2336efSEd Maste }; 31075f2336efSEd Maste break; 31085f2336efSEd Maste /* linux_getdents64 */ 31095f2336efSEd Maste case 61: 31105f2336efSEd Maste switch (ndx) { 31115f2336efSEd Maste case 0: 31125f2336efSEd Maste p = "l_uint"; 31135f2336efSEd Maste break; 31145f2336efSEd Maste case 1: 31155f2336efSEd Maste p = "userland void *"; 31165f2336efSEd Maste break; 31175f2336efSEd Maste case 2: 31185f2336efSEd Maste p = "l_uint"; 31195f2336efSEd Maste break; 31205f2336efSEd Maste default: 31215f2336efSEd Maste break; 31225f2336efSEd Maste }; 31235f2336efSEd Maste break; 31245f2336efSEd Maste /* linux_lseek */ 31255f2336efSEd Maste case 62: 31265f2336efSEd Maste switch (ndx) { 31275f2336efSEd Maste case 0: 31285f2336efSEd Maste p = "l_uint"; 31295f2336efSEd Maste break; 31305f2336efSEd Maste case 1: 31315f2336efSEd Maste p = "l_off_t"; 31325f2336efSEd Maste break; 31335f2336efSEd Maste case 2: 31345f2336efSEd Maste p = "l_int"; 31355f2336efSEd Maste break; 31365f2336efSEd Maste default: 31375f2336efSEd Maste break; 31385f2336efSEd Maste }; 31395f2336efSEd Maste break; 31405f2336efSEd Maste /* read */ 31415f2336efSEd Maste case 63: 31425f2336efSEd Maste switch (ndx) { 31435f2336efSEd Maste case 0: 31445f2336efSEd Maste p = "int"; 31455f2336efSEd Maste break; 31465f2336efSEd Maste case 1: 31475f2336efSEd Maste p = "userland char *"; 31485f2336efSEd Maste break; 31495f2336efSEd Maste case 2: 3150a39cdcd7SEdward Tomasz Napierala p = "l_size_t"; 31515f2336efSEd Maste break; 31525f2336efSEd Maste default: 31535f2336efSEd Maste break; 31545f2336efSEd Maste }; 31555f2336efSEd Maste break; 31565f2336efSEd Maste /* write */ 31575f2336efSEd Maste case 64: 31585f2336efSEd Maste switch (ndx) { 31595f2336efSEd Maste case 0: 31605f2336efSEd Maste p = "int"; 31615f2336efSEd Maste break; 31625f2336efSEd Maste case 1: 31635f2336efSEd Maste p = "userland char *"; 31645f2336efSEd Maste break; 31655f2336efSEd Maste case 2: 3166a39cdcd7SEdward Tomasz Napierala p = "l_size_t"; 31675f2336efSEd Maste break; 31685f2336efSEd Maste default: 31695f2336efSEd Maste break; 31705f2336efSEd Maste }; 31715f2336efSEd Maste break; 31725f2336efSEd Maste /* readv */ 31735f2336efSEd Maste case 65: 31745f2336efSEd Maste switch (ndx) { 31755f2336efSEd Maste case 0: 31765f2336efSEd Maste p = "int"; 31775f2336efSEd Maste break; 31785f2336efSEd Maste case 1: 31795f2336efSEd Maste p = "userland struct iovec *"; 31805f2336efSEd Maste break; 31815f2336efSEd Maste case 2: 31825f2336efSEd Maste p = "u_int"; 31835f2336efSEd Maste break; 31845f2336efSEd Maste default: 31855f2336efSEd Maste break; 31865f2336efSEd Maste }; 31875f2336efSEd Maste break; 31885f2336efSEd Maste /* writev */ 31895f2336efSEd Maste case 66: 31905f2336efSEd Maste switch (ndx) { 31915f2336efSEd Maste case 0: 31925f2336efSEd Maste p = "int"; 31935f2336efSEd Maste break; 31945f2336efSEd Maste case 1: 31955f2336efSEd Maste p = "userland struct iovec *"; 31965f2336efSEd Maste break; 31975f2336efSEd Maste case 2: 31985f2336efSEd Maste p = "u_int"; 31995f2336efSEd Maste break; 32005f2336efSEd Maste default: 32015f2336efSEd Maste break; 32025f2336efSEd Maste }; 32035f2336efSEd Maste break; 32045f2336efSEd Maste /* linux_pread */ 32055f2336efSEd Maste case 67: 32065f2336efSEd Maste switch (ndx) { 32075f2336efSEd Maste case 0: 32085f2336efSEd Maste p = "l_uint"; 32095f2336efSEd Maste break; 32105f2336efSEd Maste case 1: 32115f2336efSEd Maste p = "userland char *"; 32125f2336efSEd Maste break; 32135f2336efSEd Maste case 2: 32145f2336efSEd Maste p = "l_size_t"; 32155f2336efSEd Maste break; 32165f2336efSEd Maste case 3: 32175f2336efSEd Maste p = "l_loff_t"; 32185f2336efSEd Maste break; 32195f2336efSEd Maste default: 32205f2336efSEd Maste break; 32215f2336efSEd Maste }; 32225f2336efSEd Maste break; 32235f2336efSEd Maste /* linux_pwrite */ 32245f2336efSEd Maste case 68: 32255f2336efSEd Maste switch (ndx) { 32265f2336efSEd Maste case 0: 32275f2336efSEd Maste p = "l_uint"; 32285f2336efSEd Maste break; 32295f2336efSEd Maste case 1: 32305f2336efSEd Maste p = "userland char *"; 32315f2336efSEd Maste break; 32325f2336efSEd Maste case 2: 32335f2336efSEd Maste p = "l_size_t"; 32345f2336efSEd Maste break; 32355f2336efSEd Maste case 3: 32365f2336efSEd Maste p = "l_loff_t"; 32375f2336efSEd Maste break; 32385f2336efSEd Maste default: 32395f2336efSEd Maste break; 32405f2336efSEd Maste }; 32415f2336efSEd Maste break; 32425f2336efSEd Maste /* linux_preadv */ 32435f2336efSEd Maste case 69: 32445f2336efSEd Maste switch (ndx) { 32455f2336efSEd Maste case 0: 32465f2336efSEd Maste p = "l_ulong"; 32475f2336efSEd Maste break; 32485f2336efSEd Maste case 1: 32495f2336efSEd Maste p = "userland struct iovec *"; 32505f2336efSEd Maste break; 32515f2336efSEd Maste case 2: 32525f2336efSEd Maste p = "l_ulong"; 32535f2336efSEd Maste break; 32545f2336efSEd Maste case 3: 32555f2336efSEd Maste p = "l_ulong"; 32565f2336efSEd Maste break; 32575f2336efSEd Maste case 4: 32585f2336efSEd Maste p = "l_ulong"; 32595f2336efSEd Maste break; 32605f2336efSEd Maste default: 32615f2336efSEd Maste break; 32625f2336efSEd Maste }; 32635f2336efSEd Maste break; 32645f2336efSEd Maste /* linux_pwritev */ 32655f2336efSEd Maste case 70: 32665f2336efSEd Maste switch (ndx) { 32675f2336efSEd Maste case 0: 32685f2336efSEd Maste p = "l_ulong"; 32695f2336efSEd Maste break; 32705f2336efSEd Maste case 1: 32715f2336efSEd Maste p = "userland struct iovec *"; 32725f2336efSEd Maste break; 32735f2336efSEd Maste case 2: 32745f2336efSEd Maste p = "l_ulong"; 32755f2336efSEd Maste break; 32765f2336efSEd Maste case 3: 32775f2336efSEd Maste p = "l_ulong"; 32785f2336efSEd Maste break; 32795f2336efSEd Maste case 4: 32805f2336efSEd Maste p = "l_ulong"; 32815f2336efSEd Maste break; 32825f2336efSEd Maste default: 32835f2336efSEd Maste break; 32845f2336efSEd Maste }; 32855f2336efSEd Maste break; 32865f2336efSEd Maste /* linux_sendfile */ 32875f2336efSEd Maste case 71: 32885f2336efSEd Maste switch (ndx) { 32895f2336efSEd Maste case 0: 32905f2336efSEd Maste p = "l_int"; 32915f2336efSEd Maste break; 32925f2336efSEd Maste case 1: 32935f2336efSEd Maste p = "l_int"; 32945f2336efSEd Maste break; 32955f2336efSEd Maste case 2: 3296a39cdcd7SEdward Tomasz Napierala p = "userland l_off_t *"; 32975f2336efSEd Maste break; 32985f2336efSEd Maste case 3: 32995f2336efSEd Maste p = "l_size_t"; 33005f2336efSEd Maste break; 33015f2336efSEd Maste default: 33025f2336efSEd Maste break; 33035f2336efSEd Maste }; 33045f2336efSEd Maste break; 33055f2336efSEd Maste /* linux_pselect6 */ 33065f2336efSEd Maste case 72: 33075f2336efSEd Maste switch (ndx) { 33085f2336efSEd Maste case 0: 33095f2336efSEd Maste p = "l_int"; 33105f2336efSEd Maste break; 33115f2336efSEd Maste case 1: 33125f2336efSEd Maste p = "userland l_fd_set *"; 33135f2336efSEd Maste break; 33145f2336efSEd Maste case 2: 33155f2336efSEd Maste p = "userland l_fd_set *"; 33165f2336efSEd Maste break; 33175f2336efSEd Maste case 3: 33185f2336efSEd Maste p = "userland l_fd_set *"; 33195f2336efSEd Maste break; 33205f2336efSEd Maste case 4: 33215f2336efSEd Maste p = "userland struct l_timespec *"; 33225f2336efSEd Maste break; 33235f2336efSEd Maste case 5: 33245f2336efSEd Maste p = "userland l_uintptr_t *"; 33255f2336efSEd Maste break; 33265f2336efSEd Maste default: 33275f2336efSEd Maste break; 33285f2336efSEd Maste }; 33295f2336efSEd Maste break; 33305f2336efSEd Maste /* linux_ppoll */ 33315f2336efSEd Maste case 73: 33325f2336efSEd Maste switch (ndx) { 33335f2336efSEd Maste case 0: 33345f2336efSEd Maste p = "userland struct pollfd *"; 33355f2336efSEd Maste break; 33365f2336efSEd Maste case 1: 3337a39cdcd7SEdward Tomasz Napierala p = "l_uint"; 33385f2336efSEd Maste break; 33395f2336efSEd Maste case 2: 33405f2336efSEd Maste p = "userland struct l_timespec *"; 33415f2336efSEd Maste break; 33425f2336efSEd Maste case 3: 33435f2336efSEd Maste p = "userland l_sigset_t *"; 33445f2336efSEd Maste break; 33455f2336efSEd Maste case 4: 33465f2336efSEd Maste p = "l_size_t"; 33475f2336efSEd Maste break; 33485f2336efSEd Maste default: 33495f2336efSEd Maste break; 33505f2336efSEd Maste }; 33515f2336efSEd Maste break; 33525f2336efSEd Maste /* linux_signalfd4 */ 33535f2336efSEd Maste case 74: 33545f2336efSEd Maste break; 33555f2336efSEd Maste /* linux_vmsplice */ 33565f2336efSEd Maste case 75: 33575f2336efSEd Maste break; 33585f2336efSEd Maste /* linux_splice */ 33595f2336efSEd Maste case 76: 33603e9a2142SEdward Tomasz Napierala switch (ndx) { 33613e9a2142SEdward Tomasz Napierala case 0: 33623e9a2142SEdward Tomasz Napierala p = "int"; 33633e9a2142SEdward Tomasz Napierala break; 33643e9a2142SEdward Tomasz Napierala case 1: 33653e9a2142SEdward Tomasz Napierala p = "userland l_loff_t *"; 33663e9a2142SEdward Tomasz Napierala break; 33673e9a2142SEdward Tomasz Napierala case 2: 33683e9a2142SEdward Tomasz Napierala p = "int"; 33693e9a2142SEdward Tomasz Napierala break; 33703e9a2142SEdward Tomasz Napierala case 3: 33713e9a2142SEdward Tomasz Napierala p = "userland l_loff_t *"; 33723e9a2142SEdward Tomasz Napierala break; 33733e9a2142SEdward Tomasz Napierala case 4: 33743e9a2142SEdward Tomasz Napierala p = "l_size_t"; 33753e9a2142SEdward Tomasz Napierala break; 33763e9a2142SEdward Tomasz Napierala case 5: 33773e9a2142SEdward Tomasz Napierala p = "l_uint"; 33783e9a2142SEdward Tomasz Napierala break; 33793e9a2142SEdward Tomasz Napierala default: 33803e9a2142SEdward Tomasz Napierala break; 33813e9a2142SEdward Tomasz Napierala }; 33825f2336efSEd Maste break; 33835f2336efSEd Maste /* linux_tee */ 33845f2336efSEd Maste case 77: 33855f2336efSEd Maste break; 33865f2336efSEd Maste /* linux_readlinkat */ 33875f2336efSEd Maste case 78: 33885f2336efSEd Maste switch (ndx) { 33895f2336efSEd Maste case 0: 33905f2336efSEd Maste p = "l_int"; 33915f2336efSEd Maste break; 33925f2336efSEd Maste case 1: 33935f2336efSEd Maste p = "userland const char *"; 33945f2336efSEd Maste break; 33955f2336efSEd Maste case 2: 33965f2336efSEd Maste p = "userland char *"; 33975f2336efSEd Maste break; 33985f2336efSEd Maste case 3: 33995f2336efSEd Maste p = "l_int"; 34005f2336efSEd Maste break; 34015f2336efSEd Maste default: 34025f2336efSEd Maste break; 34035f2336efSEd Maste }; 34045f2336efSEd Maste break; 34055f2336efSEd Maste /* linux_newfstatat */ 34065f2336efSEd Maste case 79: 34075f2336efSEd Maste switch (ndx) { 34085f2336efSEd Maste case 0: 34095f2336efSEd Maste p = "l_int"; 34105f2336efSEd Maste break; 34115f2336efSEd Maste case 1: 34125f2336efSEd Maste p = "userland char *"; 34135f2336efSEd Maste break; 34145f2336efSEd Maste case 2: 34155f2336efSEd Maste p = "userland struct l_stat64 *"; 34165f2336efSEd Maste break; 34175f2336efSEd Maste case 3: 34185f2336efSEd Maste p = "l_int"; 34195f2336efSEd Maste break; 34205f2336efSEd Maste default: 34215f2336efSEd Maste break; 34225f2336efSEd Maste }; 34235f2336efSEd Maste break; 34245f2336efSEd Maste /* linux_newfstat */ 34255f2336efSEd Maste case 80: 34265f2336efSEd Maste switch (ndx) { 34275f2336efSEd Maste case 0: 34285f2336efSEd Maste p = "l_uint"; 34295f2336efSEd Maste break; 34305f2336efSEd Maste case 1: 34315f2336efSEd Maste p = "userland struct l_newstat *"; 34325f2336efSEd Maste break; 34335f2336efSEd Maste default: 34345f2336efSEd Maste break; 34355f2336efSEd Maste }; 34365f2336efSEd Maste break; 34375f2336efSEd Maste /* fsync */ 34385f2336efSEd Maste case 82: 34395f2336efSEd Maste switch (ndx) { 34405f2336efSEd Maste case 0: 34415f2336efSEd Maste p = "int"; 34425f2336efSEd Maste break; 34435f2336efSEd Maste default: 34445f2336efSEd Maste break; 34455f2336efSEd Maste }; 34465f2336efSEd Maste break; 34475f2336efSEd Maste /* linux_fdatasync */ 34485f2336efSEd Maste case 83: 34495f2336efSEd Maste switch (ndx) { 34505f2336efSEd Maste case 0: 34515f2336efSEd Maste p = "l_uint"; 34525f2336efSEd Maste break; 34535f2336efSEd Maste default: 34545f2336efSEd Maste break; 34555f2336efSEd Maste }; 34565f2336efSEd Maste break; 34575f2336efSEd Maste /* linux_sync_file_range */ 34585f2336efSEd Maste case 84: 34590cde2b32SEdward Tomasz Napierala switch (ndx) { 34600cde2b32SEdward Tomasz Napierala case 0: 34610cde2b32SEdward Tomasz Napierala p = "l_int"; 34620cde2b32SEdward Tomasz Napierala break; 34630cde2b32SEdward Tomasz Napierala case 1: 34640cde2b32SEdward Tomasz Napierala p = "l_loff_t"; 34650cde2b32SEdward Tomasz Napierala break; 34660cde2b32SEdward Tomasz Napierala case 2: 34670cde2b32SEdward Tomasz Napierala p = "l_loff_t"; 34680cde2b32SEdward Tomasz Napierala break; 34690cde2b32SEdward Tomasz Napierala case 3: 3470a39cdcd7SEdward Tomasz Napierala p = "l_uint"; 34710cde2b32SEdward Tomasz Napierala break; 34720cde2b32SEdward Tomasz Napierala default: 34730cde2b32SEdward Tomasz Napierala break; 34740cde2b32SEdward Tomasz Napierala }; 34755f2336efSEd Maste break; 34765f2336efSEd Maste /* linux_timerfd_create */ 34775f2336efSEd Maste case 85: 34785f2336efSEd Maste switch (ndx) { 34795f2336efSEd Maste case 0: 34805f2336efSEd Maste p = "l_int"; 34815f2336efSEd Maste break; 34825f2336efSEd Maste case 1: 34835f2336efSEd Maste p = "l_int"; 34845f2336efSEd Maste break; 34855f2336efSEd Maste default: 34865f2336efSEd Maste break; 34875f2336efSEd Maste }; 34885f2336efSEd Maste break; 34895f2336efSEd Maste /* linux_timerfd_settime */ 34905f2336efSEd Maste case 86: 34915f2336efSEd Maste switch (ndx) { 34925f2336efSEd Maste case 0: 34935f2336efSEd Maste p = "l_int"; 34945f2336efSEd Maste break; 34955f2336efSEd Maste case 1: 34965f2336efSEd Maste p = "l_int"; 34975f2336efSEd Maste break; 34985f2336efSEd Maste case 2: 34995f2336efSEd Maste p = "userland const struct l_itimerspec *"; 35005f2336efSEd Maste break; 35015f2336efSEd Maste case 3: 35025f2336efSEd Maste p = "userland struct l_itimerspec *"; 35035f2336efSEd Maste break; 35045f2336efSEd Maste default: 35055f2336efSEd Maste break; 35065f2336efSEd Maste }; 35075f2336efSEd Maste break; 35085f2336efSEd Maste /* linux_timerfd_gettime */ 35095f2336efSEd Maste case 87: 35105f2336efSEd Maste switch (ndx) { 35115f2336efSEd Maste case 0: 35125f2336efSEd Maste p = "l_int"; 35135f2336efSEd Maste break; 35145f2336efSEd Maste case 1: 35155f2336efSEd Maste p = "userland struct l_itimerspec *"; 35165f2336efSEd Maste break; 35175f2336efSEd Maste default: 35185f2336efSEd Maste break; 35195f2336efSEd Maste }; 35205f2336efSEd Maste break; 35215f2336efSEd Maste /* linux_utimensat */ 35225f2336efSEd Maste case 88: 35235f2336efSEd Maste switch (ndx) { 35245f2336efSEd Maste case 0: 35255f2336efSEd Maste p = "l_int"; 35265f2336efSEd Maste break; 35275f2336efSEd Maste case 1: 35285f2336efSEd Maste p = "userland const char *"; 35295f2336efSEd Maste break; 35305f2336efSEd Maste case 2: 35315f2336efSEd Maste p = "userland const struct l_timespec *"; 35325f2336efSEd Maste break; 35335f2336efSEd Maste case 3: 35345f2336efSEd Maste p = "l_int"; 35355f2336efSEd Maste break; 35365f2336efSEd Maste default: 35375f2336efSEd Maste break; 35385f2336efSEd Maste }; 35395f2336efSEd Maste break; 35405f2336efSEd Maste /* acct */ 35415f2336efSEd Maste case 89: 35425f2336efSEd Maste switch (ndx) { 35435f2336efSEd Maste case 0: 35445f2336efSEd Maste p = "userland char *"; 35455f2336efSEd Maste break; 35465f2336efSEd Maste default: 35475f2336efSEd Maste break; 35485f2336efSEd Maste }; 35495f2336efSEd Maste break; 35505f2336efSEd Maste /* linux_capget */ 35515f2336efSEd Maste case 90: 35525f2336efSEd Maste switch (ndx) { 35535f2336efSEd Maste case 0: 35545f2336efSEd Maste p = "userland struct l_user_cap_header *"; 35555f2336efSEd Maste break; 35565f2336efSEd Maste case 1: 35575f2336efSEd Maste p = "userland struct l_user_cap_data *"; 35585f2336efSEd Maste break; 35595f2336efSEd Maste default: 35605f2336efSEd Maste break; 35615f2336efSEd Maste }; 35625f2336efSEd Maste break; 35635f2336efSEd Maste /* linux_capset */ 35645f2336efSEd Maste case 91: 35655f2336efSEd Maste switch (ndx) { 35665f2336efSEd Maste case 0: 35675f2336efSEd Maste p = "userland struct l_user_cap_header *"; 35685f2336efSEd Maste break; 35695f2336efSEd Maste case 1: 35705f2336efSEd Maste p = "userland struct l_user_cap_data *"; 35715f2336efSEd Maste break; 35725f2336efSEd Maste default: 35735f2336efSEd Maste break; 35745f2336efSEd Maste }; 35755f2336efSEd Maste break; 35765f2336efSEd Maste /* linux_personality */ 35775f2336efSEd Maste case 92: 35785f2336efSEd Maste switch (ndx) { 35795f2336efSEd Maste case 0: 35805f2336efSEd Maste p = "l_uint"; 35815f2336efSEd Maste break; 35825f2336efSEd Maste default: 35835f2336efSEd Maste break; 35845f2336efSEd Maste }; 35855f2336efSEd Maste break; 35865f2336efSEd Maste /* linux_exit */ 35875f2336efSEd Maste case 93: 35885f2336efSEd Maste switch (ndx) { 35895f2336efSEd Maste case 0: 3590a39cdcd7SEdward Tomasz Napierala p = "u_int"; 35915f2336efSEd Maste break; 35925f2336efSEd Maste default: 35935f2336efSEd Maste break; 35945f2336efSEd Maste }; 35955f2336efSEd Maste break; 35965f2336efSEd Maste /* linux_exit_group */ 35975f2336efSEd Maste case 94: 35985f2336efSEd Maste switch (ndx) { 35995f2336efSEd Maste case 0: 3600a39cdcd7SEdward Tomasz Napierala p = "l_int"; 36015f2336efSEd Maste break; 36025f2336efSEd Maste default: 36035f2336efSEd Maste break; 36045f2336efSEd Maste }; 36055f2336efSEd Maste break; 36065f2336efSEd Maste /* linux_waitid */ 36075f2336efSEd Maste case 95: 36085f2336efSEd Maste switch (ndx) { 36095f2336efSEd Maste case 0: 36105f2336efSEd Maste p = "l_int"; 36115f2336efSEd Maste break; 36125f2336efSEd Maste case 1: 36135f2336efSEd Maste p = "l_pid_t"; 36145f2336efSEd Maste break; 36155f2336efSEd Maste case 2: 36165f2336efSEd Maste p = "userland l_siginfo_t *"; 36175f2336efSEd Maste break; 36185f2336efSEd Maste case 3: 36195f2336efSEd Maste p = "l_int"; 36205f2336efSEd Maste break; 36215f2336efSEd Maste case 4: 36225f2336efSEd Maste p = "userland struct rusage *"; 36235f2336efSEd Maste break; 36245f2336efSEd Maste default: 36255f2336efSEd Maste break; 36265f2336efSEd Maste }; 36275f2336efSEd Maste break; 36285f2336efSEd Maste /* linux_set_tid_address */ 36295f2336efSEd Maste case 96: 36305f2336efSEd Maste switch (ndx) { 36315f2336efSEd Maste case 0: 3632a39cdcd7SEdward Tomasz Napierala p = "userland l_int *"; 36335f2336efSEd Maste break; 36345f2336efSEd Maste default: 36355f2336efSEd Maste break; 36365f2336efSEd Maste }; 36375f2336efSEd Maste break; 36385f2336efSEd Maste /* linux_unshare */ 36395f2336efSEd Maste case 97: 36405f2336efSEd Maste break; 36415f2336efSEd Maste /* linux_sys_futex */ 36425f2336efSEd Maste case 98: 36435f2336efSEd Maste switch (ndx) { 36445f2336efSEd Maste case 0: 3645ee64d982SDmitry Chagin p = "userland uint32_t *"; 36465f2336efSEd Maste break; 36475f2336efSEd Maste case 1: 3648ee64d982SDmitry Chagin p = "l_int"; 36495f2336efSEd Maste break; 36505f2336efSEd Maste case 2: 3651ee64d982SDmitry Chagin p = "uint32_t"; 36525f2336efSEd Maste break; 36535f2336efSEd Maste case 3: 36545f2336efSEd Maste p = "userland struct l_timespec *"; 36555f2336efSEd Maste break; 36565f2336efSEd Maste case 4: 3657ee64d982SDmitry Chagin p = "userland uint32_t *"; 36585f2336efSEd Maste break; 36595f2336efSEd Maste case 5: 3660ee64d982SDmitry Chagin p = "uint32_t"; 36615f2336efSEd Maste break; 36625f2336efSEd Maste default: 36635f2336efSEd Maste break; 36645f2336efSEd Maste }; 36655f2336efSEd Maste break; 36665f2336efSEd Maste /* linux_set_robust_list */ 36675f2336efSEd Maste case 99: 36685f2336efSEd Maste switch (ndx) { 36695f2336efSEd Maste case 0: 36705f2336efSEd Maste p = "userland struct linux_robust_list_head *"; 36715f2336efSEd Maste break; 36725f2336efSEd Maste case 1: 36735f2336efSEd Maste p = "l_size_t"; 36745f2336efSEd Maste break; 36755f2336efSEd Maste default: 36765f2336efSEd Maste break; 36775f2336efSEd Maste }; 36785f2336efSEd Maste break; 36795f2336efSEd Maste /* linux_get_robust_list */ 36805f2336efSEd Maste case 100: 36815f2336efSEd Maste switch (ndx) { 36825f2336efSEd Maste case 0: 36835f2336efSEd Maste p = "l_int"; 36845f2336efSEd Maste break; 36855f2336efSEd Maste case 1: 36865f2336efSEd Maste p = "userland struct linux_robust_list_head **"; 36875f2336efSEd Maste break; 36885f2336efSEd Maste case 2: 36895f2336efSEd Maste p = "userland l_size_t *"; 36905f2336efSEd Maste break; 36915f2336efSEd Maste default: 36925f2336efSEd Maste break; 36935f2336efSEd Maste }; 36945f2336efSEd Maste break; 36955f2336efSEd Maste /* linux_nanosleep */ 36965f2336efSEd Maste case 101: 36975f2336efSEd Maste switch (ndx) { 36985f2336efSEd Maste case 0: 36995f2336efSEd Maste p = "userland const struct l_timespec *"; 37005f2336efSEd Maste break; 37015f2336efSEd Maste case 1: 37025f2336efSEd Maste p = "userland struct l_timespec *"; 37035f2336efSEd Maste break; 37045f2336efSEd Maste default: 37055f2336efSEd Maste break; 37065f2336efSEd Maste }; 37075f2336efSEd Maste break; 37085f2336efSEd Maste /* linux_getitimer */ 37095f2336efSEd Maste case 102: 37105f2336efSEd Maste switch (ndx) { 37115f2336efSEd Maste case 0: 37125f2336efSEd Maste p = "l_int"; 37135f2336efSEd Maste break; 37145f2336efSEd Maste case 1: 37155f2336efSEd Maste p = "userland struct l_itimerval *"; 37165f2336efSEd Maste break; 37175f2336efSEd Maste default: 37185f2336efSEd Maste break; 37195f2336efSEd Maste }; 37205f2336efSEd Maste break; 37215f2336efSEd Maste /* linux_setitimer */ 37225f2336efSEd Maste case 103: 37235f2336efSEd Maste switch (ndx) { 37245f2336efSEd Maste case 0: 37255f2336efSEd Maste p = "l_int"; 37265f2336efSEd Maste break; 37275f2336efSEd Maste case 1: 37285f2336efSEd Maste p = "userland struct l_itimerval *"; 37295f2336efSEd Maste break; 37305f2336efSEd Maste case 2: 37315f2336efSEd Maste p = "userland struct l_itimerval *"; 37325f2336efSEd Maste break; 37335f2336efSEd Maste default: 37345f2336efSEd Maste break; 37355f2336efSEd Maste }; 37365f2336efSEd Maste break; 37375f2336efSEd Maste /* linux_kexec_load */ 37385f2336efSEd Maste case 104: 37395f2336efSEd Maste break; 37405f2336efSEd Maste /* linux_init_module */ 37415f2336efSEd Maste case 105: 37425f2336efSEd Maste break; 37435f2336efSEd Maste /* linux_delete_module */ 37445f2336efSEd Maste case 106: 37455f2336efSEd Maste break; 37465f2336efSEd Maste /* linux_timer_create */ 37475f2336efSEd Maste case 107: 37485f2336efSEd Maste switch (ndx) { 37495f2336efSEd Maste case 0: 37505f2336efSEd Maste p = "clockid_t"; 37515f2336efSEd Maste break; 37525f2336efSEd Maste case 1: 37535f2336efSEd Maste p = "userland struct sigevent *"; 37545f2336efSEd Maste break; 37555f2336efSEd Maste case 2: 37565f2336efSEd Maste p = "userland l_timer_t *"; 37575f2336efSEd Maste break; 37585f2336efSEd Maste default: 37595f2336efSEd Maste break; 37605f2336efSEd Maste }; 37615f2336efSEd Maste break; 37625f2336efSEd Maste /* linux_timer_gettime */ 37635f2336efSEd Maste case 108: 37645f2336efSEd Maste switch (ndx) { 37655f2336efSEd Maste case 0: 37665f2336efSEd Maste p = "l_timer_t"; 37675f2336efSEd Maste break; 37685f2336efSEd Maste case 1: 37695f2336efSEd Maste p = "userland struct itimerspec *"; 37705f2336efSEd Maste break; 37715f2336efSEd Maste default: 37725f2336efSEd Maste break; 37735f2336efSEd Maste }; 37745f2336efSEd Maste break; 37755f2336efSEd Maste /* linux_timer_getoverrun */ 37765f2336efSEd Maste case 109: 37775f2336efSEd Maste switch (ndx) { 37785f2336efSEd Maste case 0: 37795f2336efSEd Maste p = "l_timer_t"; 37805f2336efSEd Maste break; 37815f2336efSEd Maste default: 37825f2336efSEd Maste break; 37835f2336efSEd Maste }; 37845f2336efSEd Maste break; 37855f2336efSEd Maste /* linux_timer_settime */ 37865f2336efSEd Maste case 110: 37875f2336efSEd Maste switch (ndx) { 37885f2336efSEd Maste case 0: 37895f2336efSEd Maste p = "l_timer_t"; 37905f2336efSEd Maste break; 37915f2336efSEd Maste case 1: 37925f2336efSEd Maste p = "l_int"; 37935f2336efSEd Maste break; 37945f2336efSEd Maste case 2: 37955f2336efSEd Maste p = "userland const struct itimerspec *"; 37965f2336efSEd Maste break; 37975f2336efSEd Maste case 3: 37985f2336efSEd Maste p = "userland struct itimerspec *"; 37995f2336efSEd Maste break; 38005f2336efSEd Maste default: 38015f2336efSEd Maste break; 38025f2336efSEd Maste }; 38035f2336efSEd Maste break; 38045f2336efSEd Maste /* linux_timer_delete */ 38055f2336efSEd Maste case 111: 38065f2336efSEd Maste switch (ndx) { 38075f2336efSEd Maste case 0: 38085f2336efSEd Maste p = "l_timer_t"; 38095f2336efSEd Maste break; 38105f2336efSEd Maste default: 38115f2336efSEd Maste break; 38125f2336efSEd Maste }; 38135f2336efSEd Maste break; 38145f2336efSEd Maste /* linux_clock_settime */ 38155f2336efSEd Maste case 112: 38165f2336efSEd Maste switch (ndx) { 38175f2336efSEd Maste case 0: 38185f2336efSEd Maste p = "clockid_t"; 38195f2336efSEd Maste break; 38205f2336efSEd Maste case 1: 38215f2336efSEd Maste p = "userland struct l_timespec *"; 38225f2336efSEd Maste break; 38235f2336efSEd Maste default: 38245f2336efSEd Maste break; 38255f2336efSEd Maste }; 38265f2336efSEd Maste break; 38275f2336efSEd Maste /* linux_clock_gettime */ 38285f2336efSEd Maste case 113: 38295f2336efSEd Maste switch (ndx) { 38305f2336efSEd Maste case 0: 38315f2336efSEd Maste p = "clockid_t"; 38325f2336efSEd Maste break; 38335f2336efSEd Maste case 1: 38345f2336efSEd Maste p = "userland struct l_timespec *"; 38355f2336efSEd Maste break; 38365f2336efSEd Maste default: 38375f2336efSEd Maste break; 38385f2336efSEd Maste }; 38395f2336efSEd Maste break; 38405f2336efSEd Maste /* linux_clock_getres */ 38415f2336efSEd Maste case 114: 38425f2336efSEd Maste switch (ndx) { 38435f2336efSEd Maste case 0: 38445f2336efSEd Maste p = "clockid_t"; 38455f2336efSEd Maste break; 38465f2336efSEd Maste case 1: 38475f2336efSEd Maste p = "userland struct l_timespec *"; 38485f2336efSEd Maste break; 38495f2336efSEd Maste default: 38505f2336efSEd Maste break; 38515f2336efSEd Maste }; 38525f2336efSEd Maste break; 38535f2336efSEd Maste /* linux_clock_nanosleep */ 38545f2336efSEd Maste case 115: 38555f2336efSEd Maste switch (ndx) { 38565f2336efSEd Maste case 0: 38575f2336efSEd Maste p = "clockid_t"; 38585f2336efSEd Maste break; 38595f2336efSEd Maste case 1: 3860a39cdcd7SEdward Tomasz Napierala p = "l_int"; 38615f2336efSEd Maste break; 38625f2336efSEd Maste case 2: 38635f2336efSEd Maste p = "userland struct l_timespec *"; 38645f2336efSEd Maste break; 38655f2336efSEd Maste case 3: 38665f2336efSEd Maste p = "userland struct l_timespec *"; 38675f2336efSEd Maste break; 38685f2336efSEd Maste default: 38695f2336efSEd Maste break; 38705f2336efSEd Maste }; 38715f2336efSEd Maste break; 38725f2336efSEd Maste /* linux_syslog */ 38735f2336efSEd Maste case 116: 38745f2336efSEd Maste switch (ndx) { 38755f2336efSEd Maste case 0: 38765f2336efSEd Maste p = "l_int"; 38775f2336efSEd Maste break; 38785f2336efSEd Maste case 1: 38795f2336efSEd Maste p = "userland char *"; 38805f2336efSEd Maste break; 38815f2336efSEd Maste case 2: 38825f2336efSEd Maste p = "l_int"; 38835f2336efSEd Maste break; 38845f2336efSEd Maste default: 38855f2336efSEd Maste break; 38865f2336efSEd Maste }; 38875f2336efSEd Maste break; 38885f2336efSEd Maste /* linux_ptrace */ 38895f2336efSEd Maste case 117: 38905f2336efSEd Maste switch (ndx) { 38915f2336efSEd Maste case 0: 38925f2336efSEd Maste p = "l_long"; 38935f2336efSEd Maste break; 38945f2336efSEd Maste case 1: 38955f2336efSEd Maste p = "l_long"; 38965f2336efSEd Maste break; 38975f2336efSEd Maste case 2: 38985f2336efSEd Maste p = "l_ulong"; 38995f2336efSEd Maste break; 39005f2336efSEd Maste case 3: 39015f2336efSEd Maste p = "l_ulong"; 39025f2336efSEd Maste break; 39035f2336efSEd Maste default: 39045f2336efSEd Maste break; 39055f2336efSEd Maste }; 39065f2336efSEd Maste break; 39075f2336efSEd Maste /* linux_sched_setparam */ 39085f2336efSEd Maste case 118: 39095f2336efSEd Maste switch (ndx) { 39105f2336efSEd Maste case 0: 39115f2336efSEd Maste p = "l_pid_t"; 39125f2336efSEd Maste break; 39135f2336efSEd Maste case 1: 39145f2336efSEd Maste p = "userland struct sched_param *"; 39155f2336efSEd Maste break; 39165f2336efSEd Maste default: 39175f2336efSEd Maste break; 39185f2336efSEd Maste }; 39195f2336efSEd Maste break; 39205f2336efSEd Maste /* linux_sched_setscheduler */ 39215f2336efSEd Maste case 119: 39225f2336efSEd Maste switch (ndx) { 39235f2336efSEd Maste case 0: 39245f2336efSEd Maste p = "l_pid_t"; 39255f2336efSEd Maste break; 39265f2336efSEd Maste case 1: 39275f2336efSEd Maste p = "l_int"; 39285f2336efSEd Maste break; 39295f2336efSEd Maste case 2: 39305f2336efSEd Maste p = "userland struct sched_param *"; 39315f2336efSEd Maste break; 39325f2336efSEd Maste default: 39335f2336efSEd Maste break; 39345f2336efSEd Maste }; 39355f2336efSEd Maste break; 39365f2336efSEd Maste /* linux_sched_getscheduler */ 39375f2336efSEd Maste case 120: 39385f2336efSEd Maste switch (ndx) { 39395f2336efSEd Maste case 0: 39405f2336efSEd Maste p = "l_pid_t"; 39415f2336efSEd Maste break; 39425f2336efSEd Maste default: 39435f2336efSEd Maste break; 39445f2336efSEd Maste }; 39455f2336efSEd Maste break; 39465f2336efSEd Maste /* linux_sched_getparam */ 39475f2336efSEd Maste case 121: 39485f2336efSEd Maste switch (ndx) { 39495f2336efSEd Maste case 0: 39505f2336efSEd Maste p = "l_pid_t"; 39515f2336efSEd Maste break; 39525f2336efSEd Maste case 1: 39535f2336efSEd Maste p = "userland struct sched_param *"; 39545f2336efSEd Maste break; 39555f2336efSEd Maste default: 39565f2336efSEd Maste break; 39575f2336efSEd Maste }; 39585f2336efSEd Maste break; 39595f2336efSEd Maste /* linux_sched_setaffinity */ 39605f2336efSEd Maste case 122: 39615f2336efSEd Maste switch (ndx) { 39625f2336efSEd Maste case 0: 39635f2336efSEd Maste p = "l_pid_t"; 39645f2336efSEd Maste break; 39655f2336efSEd Maste case 1: 39665f2336efSEd Maste p = "l_uint"; 39675f2336efSEd Maste break; 39685f2336efSEd Maste case 2: 39695f2336efSEd Maste p = "userland l_ulong *"; 39705f2336efSEd Maste break; 39715f2336efSEd Maste default: 39725f2336efSEd Maste break; 39735f2336efSEd Maste }; 39745f2336efSEd Maste break; 39755f2336efSEd Maste /* linux_sched_getaffinity */ 39765f2336efSEd Maste case 123: 39775f2336efSEd Maste switch (ndx) { 39785f2336efSEd Maste case 0: 39795f2336efSEd Maste p = "l_pid_t"; 39805f2336efSEd Maste break; 39815f2336efSEd Maste case 1: 39825f2336efSEd Maste p = "l_uint"; 39835f2336efSEd Maste break; 39845f2336efSEd Maste case 2: 39855f2336efSEd Maste p = "userland l_ulong *"; 39865f2336efSEd Maste break; 39875f2336efSEd Maste default: 39885f2336efSEd Maste break; 39895f2336efSEd Maste }; 39905f2336efSEd Maste break; 39915f2336efSEd Maste /* sched_yield */ 39925f2336efSEd Maste case 124: 39935f2336efSEd Maste break; 39945f2336efSEd Maste /* linux_sched_get_priority_max */ 39955f2336efSEd Maste case 125: 39965f2336efSEd Maste switch (ndx) { 39975f2336efSEd Maste case 0: 39985f2336efSEd Maste p = "l_int"; 39995f2336efSEd Maste break; 40005f2336efSEd Maste default: 40015f2336efSEd Maste break; 40025f2336efSEd Maste }; 40035f2336efSEd Maste break; 40045f2336efSEd Maste /* linux_sched_get_priority_min */ 40055f2336efSEd Maste case 126: 40065f2336efSEd Maste switch (ndx) { 40075f2336efSEd Maste case 0: 40085f2336efSEd Maste p = "l_int"; 40095f2336efSEd Maste break; 40105f2336efSEd Maste default: 40115f2336efSEd Maste break; 40125f2336efSEd Maste }; 40135f2336efSEd Maste break; 40145f2336efSEd Maste /* linux_sched_rr_get_interval */ 40155f2336efSEd Maste case 127: 40165f2336efSEd Maste switch (ndx) { 40175f2336efSEd Maste case 0: 40185f2336efSEd Maste p = "l_pid_t"; 40195f2336efSEd Maste break; 40205f2336efSEd Maste case 1: 40215f2336efSEd Maste p = "userland struct l_timespec *"; 40225f2336efSEd Maste break; 40235f2336efSEd Maste default: 40245f2336efSEd Maste break; 40255f2336efSEd Maste }; 40265f2336efSEd Maste break; 40275f2336efSEd Maste /* linux_kill */ 40285f2336efSEd Maste case 129: 40295f2336efSEd Maste switch (ndx) { 40305f2336efSEd Maste case 0: 4031a39cdcd7SEdward Tomasz Napierala p = "l_pid_t"; 40325f2336efSEd Maste break; 40335f2336efSEd Maste case 1: 40345f2336efSEd Maste p = "l_int"; 40355f2336efSEd Maste break; 40365f2336efSEd Maste default: 40375f2336efSEd Maste break; 40385f2336efSEd Maste }; 40395f2336efSEd Maste break; 40405f2336efSEd Maste /* linux_tkill */ 40415f2336efSEd Maste case 130: 40425f2336efSEd Maste switch (ndx) { 40435f2336efSEd Maste case 0: 4044a39cdcd7SEdward Tomasz Napierala p = "l_pid_t"; 40455f2336efSEd Maste break; 40465f2336efSEd Maste case 1: 40475f2336efSEd Maste p = "l_int"; 40485f2336efSEd Maste break; 40495f2336efSEd Maste default: 40505f2336efSEd Maste break; 40515f2336efSEd Maste }; 40525f2336efSEd Maste break; 40535f2336efSEd Maste /* linux_tgkill */ 40545f2336efSEd Maste case 131: 40555f2336efSEd Maste switch (ndx) { 40565f2336efSEd Maste case 0: 4057a39cdcd7SEdward Tomasz Napierala p = "l_pid_t"; 40585f2336efSEd Maste break; 40595f2336efSEd Maste case 1: 4060a39cdcd7SEdward Tomasz Napierala p = "l_pid_t"; 40615f2336efSEd Maste break; 40625f2336efSEd Maste case 2: 40635f2336efSEd Maste p = "l_int"; 40645f2336efSEd Maste break; 40655f2336efSEd Maste default: 40665f2336efSEd Maste break; 40675f2336efSEd Maste }; 40685f2336efSEd Maste break; 40695f2336efSEd Maste /* linux_sigaltstack */ 40705f2336efSEd Maste case 132: 40715f2336efSEd Maste switch (ndx) { 40725f2336efSEd Maste case 0: 40735f2336efSEd Maste p = "userland l_stack_t *"; 40745f2336efSEd Maste break; 40755f2336efSEd Maste case 1: 40765f2336efSEd Maste p = "userland l_stack_t *"; 40775f2336efSEd Maste break; 40785f2336efSEd Maste default: 40795f2336efSEd Maste break; 40805f2336efSEd Maste }; 40815f2336efSEd Maste break; 40825f2336efSEd Maste /* linux_rt_sigsuspend */ 40835f2336efSEd Maste case 133: 40845f2336efSEd Maste switch (ndx) { 40855f2336efSEd Maste case 0: 40865f2336efSEd Maste p = "userland l_sigset_t *"; 40875f2336efSEd Maste break; 40885f2336efSEd Maste case 1: 40895f2336efSEd Maste p = "l_size_t"; 40905f2336efSEd Maste break; 40915f2336efSEd Maste default: 40925f2336efSEd Maste break; 40935f2336efSEd Maste }; 40945f2336efSEd Maste break; 40955f2336efSEd Maste /* linux_rt_sigaction */ 40965f2336efSEd Maste case 134: 40975f2336efSEd Maste switch (ndx) { 40985f2336efSEd Maste case 0: 40995f2336efSEd Maste p = "l_int"; 41005f2336efSEd Maste break; 41015f2336efSEd Maste case 1: 41025f2336efSEd Maste p = "userland l_sigaction_t *"; 41035f2336efSEd Maste break; 41045f2336efSEd Maste case 2: 41055f2336efSEd Maste p = "userland l_sigaction_t *"; 41065f2336efSEd Maste break; 41075f2336efSEd Maste case 3: 41085f2336efSEd Maste p = "l_size_t"; 41095f2336efSEd Maste break; 41105f2336efSEd Maste default: 41115f2336efSEd Maste break; 41125f2336efSEd Maste }; 41135f2336efSEd Maste break; 41145f2336efSEd Maste /* linux_rt_sigprocmask */ 41155f2336efSEd Maste case 135: 41165f2336efSEd Maste switch (ndx) { 41175f2336efSEd Maste case 0: 41185f2336efSEd Maste p = "l_int"; 41195f2336efSEd Maste break; 41205f2336efSEd Maste case 1: 41215f2336efSEd Maste p = "userland l_sigset_t *"; 41225f2336efSEd Maste break; 41235f2336efSEd Maste case 2: 41245f2336efSEd Maste p = "userland l_sigset_t *"; 41255f2336efSEd Maste break; 41265f2336efSEd Maste case 3: 41275f2336efSEd Maste p = "l_size_t"; 41285f2336efSEd Maste break; 41295f2336efSEd Maste default: 41305f2336efSEd Maste break; 41315f2336efSEd Maste }; 41325f2336efSEd Maste break; 41335f2336efSEd Maste /* linux_rt_sigpending */ 41345f2336efSEd Maste case 136: 41355f2336efSEd Maste switch (ndx) { 41365f2336efSEd Maste case 0: 41375f2336efSEd Maste p = "userland l_sigset_t *"; 41385f2336efSEd Maste break; 41395f2336efSEd Maste case 1: 41405f2336efSEd Maste p = "l_size_t"; 41415f2336efSEd Maste break; 41425f2336efSEd Maste default: 41435f2336efSEd Maste break; 41445f2336efSEd Maste }; 41455f2336efSEd Maste break; 41465f2336efSEd Maste /* linux_rt_sigtimedwait */ 41475f2336efSEd Maste case 137: 41485f2336efSEd Maste switch (ndx) { 41495f2336efSEd Maste case 0: 41505f2336efSEd Maste p = "userland l_sigset_t *"; 41515f2336efSEd Maste break; 41525f2336efSEd Maste case 1: 41535f2336efSEd Maste p = "userland l_siginfo_t *"; 41545f2336efSEd Maste break; 41555f2336efSEd Maste case 2: 4156e29ea22fSDmitry Chagin p = "userland struct l_timespec *"; 41575f2336efSEd Maste break; 41585f2336efSEd Maste case 3: 41595f2336efSEd Maste p = "l_size_t"; 41605f2336efSEd Maste break; 41615f2336efSEd Maste default: 41625f2336efSEd Maste break; 41635f2336efSEd Maste }; 41645f2336efSEd Maste break; 41655f2336efSEd Maste /* linux_rt_sigqueueinfo */ 41665f2336efSEd Maste case 138: 41675f2336efSEd Maste switch (ndx) { 41685f2336efSEd Maste case 0: 41695f2336efSEd Maste p = "l_pid_t"; 41705f2336efSEd Maste break; 41715f2336efSEd Maste case 1: 41725f2336efSEd Maste p = "l_int"; 41735f2336efSEd Maste break; 41745f2336efSEd Maste case 2: 41755f2336efSEd Maste p = "userland l_siginfo_t *"; 41765f2336efSEd Maste break; 41775f2336efSEd Maste default: 41785f2336efSEd Maste break; 41795f2336efSEd Maste }; 41805f2336efSEd Maste break; 41815f2336efSEd Maste /* linux_rt_sigreturn */ 41825f2336efSEd Maste case 139: 41835f2336efSEd Maste break; 41845f2336efSEd Maste /* setpriority */ 41855f2336efSEd Maste case 140: 41865f2336efSEd Maste switch (ndx) { 41875f2336efSEd Maste case 0: 41885f2336efSEd Maste p = "int"; 41895f2336efSEd Maste break; 41905f2336efSEd Maste case 1: 41915f2336efSEd Maste p = "int"; 41925f2336efSEd Maste break; 41935f2336efSEd Maste case 2: 41945f2336efSEd Maste p = "int"; 41955f2336efSEd Maste break; 41965f2336efSEd Maste default: 41975f2336efSEd Maste break; 41985f2336efSEd Maste }; 41995f2336efSEd Maste break; 42005f2336efSEd Maste /* linux_getpriority */ 42015f2336efSEd Maste case 141: 42025f2336efSEd Maste switch (ndx) { 42035f2336efSEd Maste case 0: 42045f2336efSEd Maste p = "l_int"; 42055f2336efSEd Maste break; 42065f2336efSEd Maste case 1: 42075f2336efSEd Maste p = "l_int"; 42085f2336efSEd Maste break; 42095f2336efSEd Maste default: 42105f2336efSEd Maste break; 42115f2336efSEd Maste }; 42125f2336efSEd Maste break; 42135f2336efSEd Maste /* linux_reboot */ 42145f2336efSEd Maste case 142: 42155f2336efSEd Maste switch (ndx) { 42165f2336efSEd Maste case 0: 42175f2336efSEd Maste p = "l_int"; 42185f2336efSEd Maste break; 42195f2336efSEd Maste case 1: 42205f2336efSEd Maste p = "l_int"; 42215f2336efSEd Maste break; 42225f2336efSEd Maste case 2: 42235f2336efSEd Maste p = "l_uint"; 42245f2336efSEd Maste break; 42255f2336efSEd Maste case 3: 42265f2336efSEd Maste p = "userland void *"; 42275f2336efSEd Maste break; 42285f2336efSEd Maste default: 42295f2336efSEd Maste break; 42305f2336efSEd Maste }; 42315f2336efSEd Maste break; 42325f2336efSEd Maste /* setregid */ 42335f2336efSEd Maste case 143: 42345f2336efSEd Maste switch (ndx) { 42355f2336efSEd Maste case 0: 42365f2336efSEd Maste p = "gid_t"; 42375f2336efSEd Maste break; 42385f2336efSEd Maste case 1: 42395f2336efSEd Maste p = "gid_t"; 42405f2336efSEd Maste break; 42415f2336efSEd Maste default: 42425f2336efSEd Maste break; 42435f2336efSEd Maste }; 42445f2336efSEd Maste break; 42455f2336efSEd Maste /* setgid */ 42465f2336efSEd Maste case 144: 42475f2336efSEd Maste switch (ndx) { 42485f2336efSEd Maste case 0: 42495f2336efSEd Maste p = "gid_t"; 42505f2336efSEd Maste break; 42515f2336efSEd Maste default: 42525f2336efSEd Maste break; 42535f2336efSEd Maste }; 42545f2336efSEd Maste break; 42555f2336efSEd Maste /* setreuid */ 42565f2336efSEd Maste case 145: 42575f2336efSEd Maste switch (ndx) { 42585f2336efSEd Maste case 0: 42595f2336efSEd Maste p = "uid_t"; 42605f2336efSEd Maste break; 42615f2336efSEd Maste case 1: 42625f2336efSEd Maste p = "uid_t"; 42635f2336efSEd Maste break; 42645f2336efSEd Maste default: 42655f2336efSEd Maste break; 42665f2336efSEd Maste }; 42675f2336efSEd Maste break; 42685f2336efSEd Maste /* setuid */ 42695f2336efSEd Maste case 146: 42705f2336efSEd Maste switch (ndx) { 42715f2336efSEd Maste case 0: 42725f2336efSEd Maste p = "uid_t"; 42735f2336efSEd Maste break; 42745f2336efSEd Maste default: 42755f2336efSEd Maste break; 42765f2336efSEd Maste }; 42775f2336efSEd Maste break; 42785f2336efSEd Maste /* setresuid */ 42795f2336efSEd Maste case 147: 42805f2336efSEd Maste switch (ndx) { 42815f2336efSEd Maste case 0: 42825f2336efSEd Maste p = "uid_t"; 42835f2336efSEd Maste break; 42845f2336efSEd Maste case 1: 42855f2336efSEd Maste p = "uid_t"; 42865f2336efSEd Maste break; 42875f2336efSEd Maste case 2: 42885f2336efSEd Maste p = "uid_t"; 42895f2336efSEd Maste break; 42905f2336efSEd Maste default: 42915f2336efSEd Maste break; 42925f2336efSEd Maste }; 42935f2336efSEd Maste break; 42945f2336efSEd Maste /* getresuid */ 42955f2336efSEd Maste case 148: 42965f2336efSEd Maste switch (ndx) { 42975f2336efSEd Maste case 0: 42985f2336efSEd Maste p = "userland uid_t *"; 42995f2336efSEd Maste break; 43005f2336efSEd Maste case 1: 43015f2336efSEd Maste p = "userland uid_t *"; 43025f2336efSEd Maste break; 43035f2336efSEd Maste case 2: 43045f2336efSEd Maste p = "userland uid_t *"; 43055f2336efSEd Maste break; 43065f2336efSEd Maste default: 43075f2336efSEd Maste break; 43085f2336efSEd Maste }; 43095f2336efSEd Maste break; 43105f2336efSEd Maste /* setresgid */ 43115f2336efSEd Maste case 149: 43125f2336efSEd Maste switch (ndx) { 43135f2336efSEd Maste case 0: 43145f2336efSEd Maste p = "gid_t"; 43155f2336efSEd Maste break; 43165f2336efSEd Maste case 1: 43175f2336efSEd Maste p = "gid_t"; 43185f2336efSEd Maste break; 43195f2336efSEd Maste case 2: 43205f2336efSEd Maste p = "gid_t"; 43215f2336efSEd Maste break; 43225f2336efSEd Maste default: 43235f2336efSEd Maste break; 43245f2336efSEd Maste }; 43255f2336efSEd Maste break; 43265f2336efSEd Maste /* getresgid */ 43275f2336efSEd Maste case 150: 43285f2336efSEd Maste switch (ndx) { 43295f2336efSEd Maste case 0: 43305f2336efSEd Maste p = "userland gid_t *"; 43315f2336efSEd Maste break; 43325f2336efSEd Maste case 1: 43335f2336efSEd Maste p = "userland gid_t *"; 43345f2336efSEd Maste break; 43355f2336efSEd Maste case 2: 43365f2336efSEd Maste p = "userland gid_t *"; 43375f2336efSEd Maste break; 43385f2336efSEd Maste default: 43395f2336efSEd Maste break; 43405f2336efSEd Maste }; 43415f2336efSEd Maste break; 43425f2336efSEd Maste /* linux_setfsuid */ 43435f2336efSEd Maste case 151: 43445f2336efSEd Maste switch (ndx) { 43455f2336efSEd Maste case 0: 43465f2336efSEd Maste p = "l_uid_t"; 43475f2336efSEd Maste break; 43485f2336efSEd Maste default: 43495f2336efSEd Maste break; 43505f2336efSEd Maste }; 43515f2336efSEd Maste break; 43525f2336efSEd Maste /* linux_setfsgid */ 43535f2336efSEd Maste case 152: 43545f2336efSEd Maste switch (ndx) { 43555f2336efSEd Maste case 0: 43565f2336efSEd Maste p = "l_gid_t"; 43575f2336efSEd Maste break; 43585f2336efSEd Maste default: 43595f2336efSEd Maste break; 43605f2336efSEd Maste }; 43615f2336efSEd Maste break; 43625f2336efSEd Maste /* linux_times */ 43635f2336efSEd Maste case 153: 43645f2336efSEd Maste switch (ndx) { 43655f2336efSEd Maste case 0: 43665f2336efSEd Maste p = "userland struct l_times_argv *"; 43675f2336efSEd Maste break; 43685f2336efSEd Maste default: 43695f2336efSEd Maste break; 43705f2336efSEd Maste }; 43715f2336efSEd Maste break; 43725f2336efSEd Maste /* setpgid */ 43735f2336efSEd Maste case 154: 43745f2336efSEd Maste switch (ndx) { 43755f2336efSEd Maste case 0: 43765f2336efSEd Maste p = "int"; 43775f2336efSEd Maste break; 43785f2336efSEd Maste case 1: 43795f2336efSEd Maste p = "int"; 43805f2336efSEd Maste break; 43815f2336efSEd Maste default: 43825f2336efSEd Maste break; 43835f2336efSEd Maste }; 43845f2336efSEd Maste break; 43855f2336efSEd Maste /* getpgid */ 43865f2336efSEd Maste case 155: 43875f2336efSEd Maste switch (ndx) { 43885f2336efSEd Maste case 0: 43895f2336efSEd Maste p = "int"; 43905f2336efSEd Maste break; 43915f2336efSEd Maste default: 43925f2336efSEd Maste break; 43935f2336efSEd Maste }; 43945f2336efSEd Maste break; 43955f2336efSEd Maste /* linux_getsid */ 43965f2336efSEd Maste case 156: 43975f2336efSEd Maste switch (ndx) { 43985f2336efSEd Maste case 0: 43995f2336efSEd Maste p = "l_pid_t"; 44005f2336efSEd Maste break; 44015f2336efSEd Maste default: 44025f2336efSEd Maste break; 44035f2336efSEd Maste }; 44045f2336efSEd Maste break; 44055f2336efSEd Maste /* setsid */ 44065f2336efSEd Maste case 157: 44075f2336efSEd Maste break; 44085f2336efSEd Maste /* linux_getgroups */ 44095f2336efSEd Maste case 158: 44105f2336efSEd Maste switch (ndx) { 44115f2336efSEd Maste case 0: 44125f2336efSEd Maste p = "l_int"; 44135f2336efSEd Maste break; 44145f2336efSEd Maste case 1: 44155f2336efSEd Maste p = "userland l_gid_t *"; 44165f2336efSEd Maste break; 44175f2336efSEd Maste default: 44185f2336efSEd Maste break; 44195f2336efSEd Maste }; 44205f2336efSEd Maste break; 44215f2336efSEd Maste /* linux_setgroups */ 44225f2336efSEd Maste case 159: 44235f2336efSEd Maste switch (ndx) { 44245f2336efSEd Maste case 0: 44255f2336efSEd Maste p = "l_int"; 44265f2336efSEd Maste break; 44275f2336efSEd Maste case 1: 44285f2336efSEd Maste p = "userland l_gid_t *"; 44295f2336efSEd Maste break; 44305f2336efSEd Maste default: 44315f2336efSEd Maste break; 44325f2336efSEd Maste }; 44335f2336efSEd Maste break; 44345f2336efSEd Maste /* linux_newuname */ 44355f2336efSEd Maste case 160: 44365f2336efSEd Maste switch (ndx) { 44375f2336efSEd Maste case 0: 44385f2336efSEd Maste p = "userland struct l_new_utsname *"; 44395f2336efSEd Maste break; 44405f2336efSEd Maste default: 44415f2336efSEd Maste break; 44425f2336efSEd Maste }; 44435f2336efSEd Maste break; 44445f2336efSEd Maste /* linux_sethostname */ 44455f2336efSEd Maste case 161: 44465f2336efSEd Maste switch (ndx) { 44475f2336efSEd Maste case 0: 44485f2336efSEd Maste p = "userland char *"; 44495f2336efSEd Maste break; 44505f2336efSEd Maste case 1: 44515f2336efSEd Maste p = "l_uint"; 44525f2336efSEd Maste break; 44535f2336efSEd Maste default: 44545f2336efSEd Maste break; 44555f2336efSEd Maste }; 44565f2336efSEd Maste break; 44575f2336efSEd Maste /* linux_setdomainname */ 44585f2336efSEd Maste case 162: 44595f2336efSEd Maste switch (ndx) { 44605f2336efSEd Maste case 0: 44615f2336efSEd Maste p = "userland char *"; 44625f2336efSEd Maste break; 44635f2336efSEd Maste case 1: 44645f2336efSEd Maste p = "l_int"; 44655f2336efSEd Maste break; 44665f2336efSEd Maste default: 44675f2336efSEd Maste break; 44685f2336efSEd Maste }; 44695f2336efSEd Maste break; 44705f2336efSEd Maste /* linux_getrlimit */ 44715f2336efSEd Maste case 163: 44725f2336efSEd Maste switch (ndx) { 44735f2336efSEd Maste case 0: 44745f2336efSEd Maste p = "l_uint"; 44755f2336efSEd Maste break; 44765f2336efSEd Maste case 1: 44775f2336efSEd Maste p = "userland struct l_rlimit *"; 44785f2336efSEd Maste break; 44795f2336efSEd Maste default: 44805f2336efSEd Maste break; 44815f2336efSEd Maste }; 44825f2336efSEd Maste break; 44835f2336efSEd Maste /* linux_setrlimit */ 44845f2336efSEd Maste case 164: 44855f2336efSEd Maste switch (ndx) { 44865f2336efSEd Maste case 0: 44875f2336efSEd Maste p = "l_uint"; 44885f2336efSEd Maste break; 44895f2336efSEd Maste case 1: 44905f2336efSEd Maste p = "userland struct l_rlimit *"; 44915f2336efSEd Maste break; 44925f2336efSEd Maste default: 44935f2336efSEd Maste break; 44945f2336efSEd Maste }; 44955f2336efSEd Maste break; 44965f2336efSEd Maste /* getrusage */ 44975f2336efSEd Maste case 165: 44985f2336efSEd Maste switch (ndx) { 44995f2336efSEd Maste case 0: 45005f2336efSEd Maste p = "int"; 45015f2336efSEd Maste break; 45025f2336efSEd Maste case 1: 45035f2336efSEd Maste p = "userland struct rusage *"; 45045f2336efSEd Maste break; 45055f2336efSEd Maste default: 45065f2336efSEd Maste break; 45075f2336efSEd Maste }; 45085f2336efSEd Maste break; 45095f2336efSEd Maste /* umask */ 45105f2336efSEd Maste case 166: 45115f2336efSEd Maste switch (ndx) { 45125f2336efSEd Maste case 0: 45135f2336efSEd Maste p = "int"; 45145f2336efSEd Maste break; 45155f2336efSEd Maste default: 45165f2336efSEd Maste break; 45175f2336efSEd Maste }; 45185f2336efSEd Maste break; 45195f2336efSEd Maste /* linux_prctl */ 45205f2336efSEd Maste case 167: 45215f2336efSEd Maste switch (ndx) { 45225f2336efSEd Maste case 0: 45235f2336efSEd Maste p = "l_int"; 45245f2336efSEd Maste break; 45255f2336efSEd Maste case 1: 45265f2336efSEd Maste p = "l_uintptr_t"; 45275f2336efSEd Maste break; 45285f2336efSEd Maste case 2: 45295f2336efSEd Maste p = "l_uintptr_t"; 45305f2336efSEd Maste break; 45315f2336efSEd Maste case 3: 45325f2336efSEd Maste p = "l_uintptr_t"; 45335f2336efSEd Maste break; 45345f2336efSEd Maste case 4: 45355f2336efSEd Maste p = "l_uintptr_t"; 45365f2336efSEd Maste break; 45375f2336efSEd Maste default: 45385f2336efSEd Maste break; 45395f2336efSEd Maste }; 45405f2336efSEd Maste break; 45415f2336efSEd Maste /* linux_getcpu */ 45425f2336efSEd Maste case 168: 45435f2336efSEd Maste switch (ndx) { 45445f2336efSEd Maste case 0: 45455f2336efSEd Maste p = "userland l_uint *"; 45465f2336efSEd Maste break; 45475f2336efSEd Maste case 1: 45485f2336efSEd Maste p = "userland l_uint *"; 45495f2336efSEd Maste break; 45505f2336efSEd Maste case 2: 45515f2336efSEd Maste p = "userland void *"; 45525f2336efSEd Maste break; 45535f2336efSEd Maste default: 45545f2336efSEd Maste break; 45555f2336efSEd Maste }; 45565f2336efSEd Maste break; 45575f2336efSEd Maste /* gettimeofday */ 45585f2336efSEd Maste case 169: 45595f2336efSEd Maste switch (ndx) { 45605f2336efSEd Maste case 0: 45615f2336efSEd Maste p = "userland struct l_timeval *"; 45625f2336efSEd Maste break; 45635f2336efSEd Maste case 1: 45645f2336efSEd Maste p = "userland struct timezone *"; 45655f2336efSEd Maste break; 45665f2336efSEd Maste default: 45675f2336efSEd Maste break; 45685f2336efSEd Maste }; 45695f2336efSEd Maste break; 45705f2336efSEd Maste /* settimeofday */ 45715f2336efSEd Maste case 170: 45725f2336efSEd Maste switch (ndx) { 45735f2336efSEd Maste case 0: 45745f2336efSEd Maste p = "userland struct l_timeval *"; 45755f2336efSEd Maste break; 45765f2336efSEd Maste case 1: 45775f2336efSEd Maste p = "userland struct timezone *"; 45785f2336efSEd Maste break; 45795f2336efSEd Maste default: 45805f2336efSEd Maste break; 45815f2336efSEd Maste }; 45825f2336efSEd Maste break; 45835f2336efSEd Maste /* linux_adjtimex */ 45845f2336efSEd Maste case 171: 45855f2336efSEd Maste break; 45865f2336efSEd Maste /* linux_getpid */ 45875f2336efSEd Maste case 172: 45885f2336efSEd Maste break; 45895f2336efSEd Maste /* linux_getppid */ 45905f2336efSEd Maste case 173: 45915f2336efSEd Maste break; 45925f2336efSEd Maste /* linux_getuid */ 45935f2336efSEd Maste case 174: 45945f2336efSEd Maste break; 45955f2336efSEd Maste /* geteuid */ 45965f2336efSEd Maste case 175: 45975f2336efSEd Maste break; 45985f2336efSEd Maste /* linux_getgid */ 45995f2336efSEd Maste case 176: 46005f2336efSEd Maste break; 46015f2336efSEd Maste /* getegid */ 46025f2336efSEd Maste case 177: 46035f2336efSEd Maste break; 46045f2336efSEd Maste /* linux_gettid */ 46055f2336efSEd Maste case 178: 46065f2336efSEd Maste break; 46075f2336efSEd Maste /* linux_sysinfo */ 46085f2336efSEd Maste case 179: 46095f2336efSEd Maste switch (ndx) { 46105f2336efSEd Maste case 0: 46115f2336efSEd Maste p = "userland struct l_sysinfo *"; 46125f2336efSEd Maste break; 46135f2336efSEd Maste default: 46145f2336efSEd Maste break; 46155f2336efSEd Maste }; 46165f2336efSEd Maste break; 46175f2336efSEd Maste /* linux_mq_open */ 46185f2336efSEd Maste case 180: 4619a39cdcd7SEdward Tomasz Napierala switch (ndx) { 4620a39cdcd7SEdward Tomasz Napierala case 0: 4621a39cdcd7SEdward Tomasz Napierala p = "userland const char *"; 4622a39cdcd7SEdward Tomasz Napierala break; 4623a39cdcd7SEdward Tomasz Napierala case 1: 4624a39cdcd7SEdward Tomasz Napierala p = "l_int"; 4625a39cdcd7SEdward Tomasz Napierala break; 4626a39cdcd7SEdward Tomasz Napierala case 2: 4627a39cdcd7SEdward Tomasz Napierala p = "l_mode_t"; 4628a39cdcd7SEdward Tomasz Napierala break; 4629a39cdcd7SEdward Tomasz Napierala case 3: 4630a39cdcd7SEdward Tomasz Napierala p = "userland struct mq_attr *"; 4631a39cdcd7SEdward Tomasz Napierala break; 4632a39cdcd7SEdward Tomasz Napierala default: 4633a39cdcd7SEdward Tomasz Napierala break; 4634a39cdcd7SEdward Tomasz Napierala }; 46355f2336efSEd Maste break; 46365f2336efSEd Maste /* linux_mq_unlink */ 46375f2336efSEd Maste case 181: 4638a39cdcd7SEdward Tomasz Napierala switch (ndx) { 4639a39cdcd7SEdward Tomasz Napierala case 0: 4640a39cdcd7SEdward Tomasz Napierala p = "userland const char *"; 4641a39cdcd7SEdward Tomasz Napierala break; 4642a39cdcd7SEdward Tomasz Napierala default: 4643a39cdcd7SEdward Tomasz Napierala break; 4644a39cdcd7SEdward Tomasz Napierala }; 46455f2336efSEd Maste break; 46465f2336efSEd Maste /* linux_mq_timedsend */ 46475f2336efSEd Maste case 182: 4648a39cdcd7SEdward Tomasz Napierala switch (ndx) { 4649a39cdcd7SEdward Tomasz Napierala case 0: 4650a39cdcd7SEdward Tomasz Napierala p = "l_mqd_t"; 4651a39cdcd7SEdward Tomasz Napierala break; 4652a39cdcd7SEdward Tomasz Napierala case 1: 4653a39cdcd7SEdward Tomasz Napierala p = "userland const char *"; 4654a39cdcd7SEdward Tomasz Napierala break; 4655a39cdcd7SEdward Tomasz Napierala case 2: 4656a39cdcd7SEdward Tomasz Napierala p = "l_size_t"; 4657a39cdcd7SEdward Tomasz Napierala break; 4658a39cdcd7SEdward Tomasz Napierala case 3: 4659a39cdcd7SEdward Tomasz Napierala p = "l_uint"; 4660a39cdcd7SEdward Tomasz Napierala break; 4661a39cdcd7SEdward Tomasz Napierala case 4: 4662a39cdcd7SEdward Tomasz Napierala p = "userland const struct l_timespec *"; 4663a39cdcd7SEdward Tomasz Napierala break; 4664a39cdcd7SEdward Tomasz Napierala default: 4665a39cdcd7SEdward Tomasz Napierala break; 4666a39cdcd7SEdward Tomasz Napierala }; 46675f2336efSEd Maste break; 46685f2336efSEd Maste /* linux_mq_timedreceive */ 46695f2336efSEd Maste case 183: 4670a39cdcd7SEdward Tomasz Napierala switch (ndx) { 4671a39cdcd7SEdward Tomasz Napierala case 0: 4672a39cdcd7SEdward Tomasz Napierala p = "l_mqd_t"; 4673a39cdcd7SEdward Tomasz Napierala break; 4674a39cdcd7SEdward Tomasz Napierala case 1: 4675a39cdcd7SEdward Tomasz Napierala p = "userland char *"; 4676a39cdcd7SEdward Tomasz Napierala break; 4677a39cdcd7SEdward Tomasz Napierala case 2: 4678a39cdcd7SEdward Tomasz Napierala p = "l_size_t"; 4679a39cdcd7SEdward Tomasz Napierala break; 4680a39cdcd7SEdward Tomasz Napierala case 3: 4681a39cdcd7SEdward Tomasz Napierala p = "userland l_uint *"; 4682a39cdcd7SEdward Tomasz Napierala break; 4683a39cdcd7SEdward Tomasz Napierala case 4: 4684a39cdcd7SEdward Tomasz Napierala p = "userland const struct l_timespec *"; 4685a39cdcd7SEdward Tomasz Napierala break; 4686a39cdcd7SEdward Tomasz Napierala default: 4687a39cdcd7SEdward Tomasz Napierala break; 4688a39cdcd7SEdward Tomasz Napierala }; 46895f2336efSEd Maste break; 46905f2336efSEd Maste /* linux_mq_notify */ 46915f2336efSEd Maste case 184: 4692a39cdcd7SEdward Tomasz Napierala switch (ndx) { 4693a39cdcd7SEdward Tomasz Napierala case 0: 4694a39cdcd7SEdward Tomasz Napierala p = "l_mqd_t"; 4695a39cdcd7SEdward Tomasz Napierala break; 4696a39cdcd7SEdward Tomasz Napierala case 1: 4697a39cdcd7SEdward Tomasz Napierala p = "userland const struct l_timespec *"; 4698a39cdcd7SEdward Tomasz Napierala break; 4699a39cdcd7SEdward Tomasz Napierala default: 4700a39cdcd7SEdward Tomasz Napierala break; 4701a39cdcd7SEdward Tomasz Napierala }; 47025f2336efSEd Maste break; 47035f2336efSEd Maste /* linux_mq_getsetattr */ 47045f2336efSEd Maste case 185: 4705a39cdcd7SEdward Tomasz Napierala switch (ndx) { 4706a39cdcd7SEdward Tomasz Napierala case 0: 4707a39cdcd7SEdward Tomasz Napierala p = "l_mqd_t"; 4708a39cdcd7SEdward Tomasz Napierala break; 4709a39cdcd7SEdward Tomasz Napierala case 1: 4710a39cdcd7SEdward Tomasz Napierala p = "userland const struct mq_attr *"; 4711a39cdcd7SEdward Tomasz Napierala break; 4712a39cdcd7SEdward Tomasz Napierala case 2: 4713a39cdcd7SEdward Tomasz Napierala p = "userland struct mq_attr *"; 4714a39cdcd7SEdward Tomasz Napierala break; 4715a39cdcd7SEdward Tomasz Napierala default: 4716a39cdcd7SEdward Tomasz Napierala break; 4717a39cdcd7SEdward Tomasz Napierala }; 47185f2336efSEd Maste break; 47195f2336efSEd Maste /* linux_msgget */ 47205f2336efSEd Maste case 186: 47215f2336efSEd Maste switch (ndx) { 47225f2336efSEd Maste case 0: 47235f2336efSEd Maste p = "l_key_t"; 47245f2336efSEd Maste break; 47255f2336efSEd Maste case 1: 47265f2336efSEd Maste p = "l_int"; 47275f2336efSEd Maste break; 47285f2336efSEd Maste default: 47295f2336efSEd Maste break; 47305f2336efSEd Maste }; 47315f2336efSEd Maste break; 47325f2336efSEd Maste /* linux_msgctl */ 47335f2336efSEd Maste case 187: 47345f2336efSEd Maste switch (ndx) { 47355f2336efSEd Maste case 0: 47365f2336efSEd Maste p = "l_int"; 47375f2336efSEd Maste break; 47385f2336efSEd Maste case 1: 47395f2336efSEd Maste p = "l_int"; 47405f2336efSEd Maste break; 47415f2336efSEd Maste case 2: 47425f2336efSEd Maste p = "userland struct l_msqid_ds *"; 47435f2336efSEd Maste break; 47445f2336efSEd Maste default: 47455f2336efSEd Maste break; 47465f2336efSEd Maste }; 47475f2336efSEd Maste break; 47485f2336efSEd Maste /* linux_msgrcv */ 47495f2336efSEd Maste case 188: 47505f2336efSEd Maste switch (ndx) { 47515f2336efSEd Maste case 0: 47525f2336efSEd Maste p = "l_int"; 47535f2336efSEd Maste break; 47545f2336efSEd Maste case 1: 47555f2336efSEd Maste p = "userland struct l_msgbuf *"; 47565f2336efSEd Maste break; 47575f2336efSEd Maste case 2: 47585f2336efSEd Maste p = "l_size_t"; 47595f2336efSEd Maste break; 47605f2336efSEd Maste case 3: 47615f2336efSEd Maste p = "l_long"; 47625f2336efSEd Maste break; 47635f2336efSEd Maste case 4: 47645f2336efSEd Maste p = "l_int"; 47655f2336efSEd Maste break; 47665f2336efSEd Maste default: 47675f2336efSEd Maste break; 47685f2336efSEd Maste }; 47695f2336efSEd Maste break; 47705f2336efSEd Maste /* linux_msgsnd */ 47715f2336efSEd Maste case 189: 47725f2336efSEd Maste switch (ndx) { 47735f2336efSEd Maste case 0: 47745f2336efSEd Maste p = "l_int"; 47755f2336efSEd Maste break; 47765f2336efSEd Maste case 1: 47775f2336efSEd Maste p = "userland struct l_msgbuf *"; 47785f2336efSEd Maste break; 47795f2336efSEd Maste case 2: 47805f2336efSEd Maste p = "l_size_t"; 47815f2336efSEd Maste break; 47825f2336efSEd Maste case 3: 47835f2336efSEd Maste p = "l_int"; 47845f2336efSEd Maste break; 47855f2336efSEd Maste default: 47865f2336efSEd Maste break; 47875f2336efSEd Maste }; 47885f2336efSEd Maste break; 47895f2336efSEd Maste /* linux_semget */ 47905f2336efSEd Maste case 190: 47915f2336efSEd Maste switch (ndx) { 47925f2336efSEd Maste case 0: 47935f2336efSEd Maste p = "l_key_t"; 47945f2336efSEd Maste break; 47955f2336efSEd Maste case 1: 47965f2336efSEd Maste p = "l_int"; 47975f2336efSEd Maste break; 47985f2336efSEd Maste case 2: 47995f2336efSEd Maste p = "l_int"; 48005f2336efSEd Maste break; 48015f2336efSEd Maste default: 48025f2336efSEd Maste break; 48035f2336efSEd Maste }; 48045f2336efSEd Maste break; 48055f2336efSEd Maste /* linux_semctl */ 48065f2336efSEd Maste case 191: 48075f2336efSEd Maste switch (ndx) { 48085f2336efSEd Maste case 0: 48095f2336efSEd Maste p = "l_int"; 48105f2336efSEd Maste break; 48115f2336efSEd Maste case 1: 48125f2336efSEd Maste p = "l_int"; 48135f2336efSEd Maste break; 48145f2336efSEd Maste case 2: 48155f2336efSEd Maste p = "l_int"; 48165f2336efSEd Maste break; 48175f2336efSEd Maste case 3: 48185f2336efSEd Maste p = "union l_semun"; 48195f2336efSEd Maste break; 48205f2336efSEd Maste default: 48215f2336efSEd Maste break; 48225f2336efSEd Maste }; 48235f2336efSEd Maste break; 48245f2336efSEd Maste /* linux_semtimedop */ 48255f2336efSEd Maste case 192: 48265f2336efSEd Maste break; 48275f2336efSEd Maste /* linux_semop */ 48285f2336efSEd Maste case 193: 48295f2336efSEd Maste switch (ndx) { 48305f2336efSEd Maste case 0: 48315f2336efSEd Maste p = "l_int"; 48325f2336efSEd Maste break; 48335f2336efSEd Maste case 1: 48345f2336efSEd Maste p = "userland struct l_sembuf *"; 48355f2336efSEd Maste break; 48365f2336efSEd Maste case 2: 48375f2336efSEd Maste p = "l_uint"; 48385f2336efSEd Maste break; 48395f2336efSEd Maste default: 48405f2336efSEd Maste break; 48415f2336efSEd Maste }; 48425f2336efSEd Maste break; 48435f2336efSEd Maste /* linux_shmget */ 48445f2336efSEd Maste case 194: 48455f2336efSEd Maste switch (ndx) { 48465f2336efSEd Maste case 0: 48475f2336efSEd Maste p = "l_key_t"; 48485f2336efSEd Maste break; 48495f2336efSEd Maste case 1: 48505f2336efSEd Maste p = "l_size_t"; 48515f2336efSEd Maste break; 48525f2336efSEd Maste case 2: 48535f2336efSEd Maste p = "l_int"; 48545f2336efSEd Maste break; 48555f2336efSEd Maste default: 48565f2336efSEd Maste break; 48575f2336efSEd Maste }; 48585f2336efSEd Maste break; 48595f2336efSEd Maste /* linux_shmctl */ 48605f2336efSEd Maste case 195: 48615f2336efSEd Maste switch (ndx) { 48625f2336efSEd Maste case 0: 48635f2336efSEd Maste p = "l_int"; 48645f2336efSEd Maste break; 48655f2336efSEd Maste case 1: 48665f2336efSEd Maste p = "l_int"; 48675f2336efSEd Maste break; 48685f2336efSEd Maste case 2: 48695f2336efSEd Maste p = "userland struct l_shmid_ds *"; 48705f2336efSEd Maste break; 48715f2336efSEd Maste default: 48725f2336efSEd Maste break; 48735f2336efSEd Maste }; 48745f2336efSEd Maste break; 48755f2336efSEd Maste /* linux_shmat */ 48765f2336efSEd Maste case 196: 48775f2336efSEd Maste switch (ndx) { 48785f2336efSEd Maste case 0: 48795f2336efSEd Maste p = "l_int"; 48805f2336efSEd Maste break; 48815f2336efSEd Maste case 1: 48825f2336efSEd Maste p = "userland char *"; 48835f2336efSEd Maste break; 48845f2336efSEd Maste case 2: 48855f2336efSEd Maste p = "l_int"; 48865f2336efSEd Maste break; 48875f2336efSEd Maste default: 48885f2336efSEd Maste break; 48895f2336efSEd Maste }; 48905f2336efSEd Maste break; 48915f2336efSEd Maste /* linux_shmdt */ 48925f2336efSEd Maste case 197: 48935f2336efSEd Maste switch (ndx) { 48945f2336efSEd Maste case 0: 48955f2336efSEd Maste p = "userland char *"; 48965f2336efSEd Maste break; 48975f2336efSEd Maste default: 48985f2336efSEd Maste break; 48995f2336efSEd Maste }; 49005f2336efSEd Maste break; 49015f2336efSEd Maste /* linux_socket */ 49025f2336efSEd Maste case 198: 49035f2336efSEd Maste switch (ndx) { 49045f2336efSEd Maste case 0: 49055f2336efSEd Maste p = "l_int"; 49065f2336efSEd Maste break; 49075f2336efSEd Maste case 1: 49085f2336efSEd Maste p = "l_int"; 49095f2336efSEd Maste break; 49105f2336efSEd Maste case 2: 49115f2336efSEd Maste p = "l_int"; 49125f2336efSEd Maste break; 49135f2336efSEd Maste default: 49145f2336efSEd Maste break; 49155f2336efSEd Maste }; 49165f2336efSEd Maste break; 49175f2336efSEd Maste /* linux_socketpair */ 49185f2336efSEd Maste case 199: 49195f2336efSEd Maste switch (ndx) { 49205f2336efSEd Maste case 0: 49215f2336efSEd Maste p = "l_int"; 49225f2336efSEd Maste break; 49235f2336efSEd Maste case 1: 49245f2336efSEd Maste p = "l_int"; 49255f2336efSEd Maste break; 49265f2336efSEd Maste case 2: 49275f2336efSEd Maste p = "l_int"; 49285f2336efSEd Maste break; 49295f2336efSEd Maste case 3: 49305f2336efSEd Maste p = "l_uintptr_t"; 49315f2336efSEd Maste break; 49325f2336efSEd Maste default: 49335f2336efSEd Maste break; 49345f2336efSEd Maste }; 49355f2336efSEd Maste break; 49365f2336efSEd Maste /* linux_bind */ 49375f2336efSEd Maste case 200: 49385f2336efSEd Maste switch (ndx) { 49395f2336efSEd Maste case 0: 49405f2336efSEd Maste p = "l_int"; 49415f2336efSEd Maste break; 49425f2336efSEd Maste case 1: 49435f2336efSEd Maste p = "l_uintptr_t"; 49445f2336efSEd Maste break; 49455f2336efSEd Maste case 2: 49465f2336efSEd Maste p = "l_int"; 49475f2336efSEd Maste break; 49485f2336efSEd Maste default: 49495f2336efSEd Maste break; 49505f2336efSEd Maste }; 49515f2336efSEd Maste break; 49525f2336efSEd Maste /* linux_listen */ 49535f2336efSEd Maste case 201: 49545f2336efSEd Maste switch (ndx) { 49555f2336efSEd Maste case 0: 49565f2336efSEd Maste p = "l_int"; 49575f2336efSEd Maste break; 49585f2336efSEd Maste case 1: 49595f2336efSEd Maste p = "l_int"; 49605f2336efSEd Maste break; 49615f2336efSEd Maste default: 49625f2336efSEd Maste break; 49635f2336efSEd Maste }; 49645f2336efSEd Maste break; 49655f2336efSEd Maste /* linux_accept */ 49665f2336efSEd Maste case 202: 49675f2336efSEd Maste switch (ndx) { 49685f2336efSEd Maste case 0: 49695f2336efSEd Maste p = "l_int"; 49705f2336efSEd Maste break; 49715f2336efSEd Maste case 1: 49725f2336efSEd Maste p = "l_uintptr_t"; 49735f2336efSEd Maste break; 49745f2336efSEd Maste case 2: 49755f2336efSEd Maste p = "l_uintptr_t"; 49765f2336efSEd Maste break; 49775f2336efSEd Maste default: 49785f2336efSEd Maste break; 49795f2336efSEd Maste }; 49805f2336efSEd Maste break; 49815f2336efSEd Maste /* linux_connect */ 49825f2336efSEd Maste case 203: 49835f2336efSEd Maste switch (ndx) { 49845f2336efSEd Maste case 0: 49855f2336efSEd Maste p = "l_int"; 49865f2336efSEd Maste break; 49875f2336efSEd Maste case 1: 49885f2336efSEd Maste p = "l_uintptr_t"; 49895f2336efSEd Maste break; 49905f2336efSEd Maste case 2: 49915f2336efSEd Maste p = "l_int"; 49925f2336efSEd Maste break; 49935f2336efSEd Maste default: 49945f2336efSEd Maste break; 49955f2336efSEd Maste }; 49965f2336efSEd Maste break; 49975f2336efSEd Maste /* linux_getsockname */ 49985f2336efSEd Maste case 204: 49995f2336efSEd Maste switch (ndx) { 50005f2336efSEd Maste case 0: 50015f2336efSEd Maste p = "l_int"; 50025f2336efSEd Maste break; 50035f2336efSEd Maste case 1: 50045f2336efSEd Maste p = "l_uintptr_t"; 50055f2336efSEd Maste break; 50065f2336efSEd Maste case 2: 50075f2336efSEd Maste p = "l_uintptr_t"; 50085f2336efSEd Maste break; 50095f2336efSEd Maste default: 50105f2336efSEd Maste break; 50115f2336efSEd Maste }; 50125f2336efSEd Maste break; 50135f2336efSEd Maste /* linux_getpeername */ 50145f2336efSEd Maste case 205: 50155f2336efSEd Maste switch (ndx) { 50165f2336efSEd Maste case 0: 50175f2336efSEd Maste p = "l_int"; 50185f2336efSEd Maste break; 50195f2336efSEd Maste case 1: 50205f2336efSEd Maste p = "l_uintptr_t"; 50215f2336efSEd Maste break; 50225f2336efSEd Maste case 2: 50235f2336efSEd Maste p = "l_uintptr_t"; 50245f2336efSEd Maste break; 50255f2336efSEd Maste default: 50265f2336efSEd Maste break; 50275f2336efSEd Maste }; 50285f2336efSEd Maste break; 50295f2336efSEd Maste /* linux_sendto */ 50305f2336efSEd Maste case 206: 50315f2336efSEd Maste switch (ndx) { 50325f2336efSEd Maste case 0: 50335f2336efSEd Maste p = "l_int"; 50345f2336efSEd Maste break; 50355f2336efSEd Maste case 1: 50365f2336efSEd Maste p = "l_uintptr_t"; 50375f2336efSEd Maste break; 50385f2336efSEd Maste case 2: 5039a39cdcd7SEdward Tomasz Napierala p = "l_size_t"; 50405f2336efSEd Maste break; 50415f2336efSEd Maste case 3: 5042a39cdcd7SEdward Tomasz Napierala p = "l_uint"; 50435f2336efSEd Maste break; 50445f2336efSEd Maste case 4: 50455f2336efSEd Maste p = "l_uintptr_t"; 50465f2336efSEd Maste break; 50475f2336efSEd Maste case 5: 50485f2336efSEd Maste p = "l_int"; 50495f2336efSEd Maste break; 50505f2336efSEd Maste default: 50515f2336efSEd Maste break; 50525f2336efSEd Maste }; 50535f2336efSEd Maste break; 50545f2336efSEd Maste /* linux_recvfrom */ 50555f2336efSEd Maste case 207: 50565f2336efSEd Maste switch (ndx) { 50575f2336efSEd Maste case 0: 50585f2336efSEd Maste p = "l_int"; 50595f2336efSEd Maste break; 50605f2336efSEd Maste case 1: 50615f2336efSEd Maste p = "l_uintptr_t"; 50625f2336efSEd Maste break; 50635f2336efSEd Maste case 2: 50645f2336efSEd Maste p = "l_size_t"; 50655f2336efSEd Maste break; 50665f2336efSEd Maste case 3: 5067a39cdcd7SEdward Tomasz Napierala p = "l_uint"; 50685f2336efSEd Maste break; 50695f2336efSEd Maste case 4: 50705f2336efSEd Maste p = "l_uintptr_t"; 50715f2336efSEd Maste break; 50725f2336efSEd Maste case 5: 50735f2336efSEd Maste p = "l_uintptr_t"; 50745f2336efSEd Maste break; 50755f2336efSEd Maste default: 50765f2336efSEd Maste break; 50775f2336efSEd Maste }; 50785f2336efSEd Maste break; 50795f2336efSEd Maste /* linux_setsockopt */ 50805f2336efSEd Maste case 208: 50815f2336efSEd Maste switch (ndx) { 50825f2336efSEd Maste case 0: 50835f2336efSEd Maste p = "l_int"; 50845f2336efSEd Maste break; 50855f2336efSEd Maste case 1: 50865f2336efSEd Maste p = "l_int"; 50875f2336efSEd Maste break; 50885f2336efSEd Maste case 2: 50895f2336efSEd Maste p = "l_int"; 50905f2336efSEd Maste break; 50915f2336efSEd Maste case 3: 50925f2336efSEd Maste p = "l_uintptr_t"; 50935f2336efSEd Maste break; 50945f2336efSEd Maste case 4: 50955f2336efSEd Maste p = "l_int"; 50965f2336efSEd Maste break; 50975f2336efSEd Maste default: 50985f2336efSEd Maste break; 50995f2336efSEd Maste }; 51005f2336efSEd Maste break; 51015f2336efSEd Maste /* linux_getsockopt */ 51025f2336efSEd Maste case 209: 51035f2336efSEd Maste switch (ndx) { 51045f2336efSEd Maste case 0: 51055f2336efSEd Maste p = "l_int"; 51065f2336efSEd Maste break; 51075f2336efSEd Maste case 1: 51085f2336efSEd Maste p = "l_int"; 51095f2336efSEd Maste break; 51105f2336efSEd Maste case 2: 51115f2336efSEd Maste p = "l_int"; 51125f2336efSEd Maste break; 51135f2336efSEd Maste case 3: 51145f2336efSEd Maste p = "l_uintptr_t"; 51155f2336efSEd Maste break; 51165f2336efSEd Maste case 4: 51175f2336efSEd Maste p = "l_uintptr_t"; 51185f2336efSEd Maste break; 51195f2336efSEd Maste default: 51205f2336efSEd Maste break; 51215f2336efSEd Maste }; 51225f2336efSEd Maste break; 51235f2336efSEd Maste /* linux_shutdown */ 51245f2336efSEd Maste case 210: 51255f2336efSEd Maste switch (ndx) { 51265f2336efSEd Maste case 0: 51275f2336efSEd Maste p = "l_int"; 51285f2336efSEd Maste break; 51295f2336efSEd Maste case 1: 51305f2336efSEd Maste p = "l_int"; 51315f2336efSEd Maste break; 51325f2336efSEd Maste default: 51335f2336efSEd Maste break; 51345f2336efSEd Maste }; 51355f2336efSEd Maste break; 51365f2336efSEd Maste /* linux_sendmsg */ 51375f2336efSEd Maste case 211: 51385f2336efSEd Maste switch (ndx) { 51395f2336efSEd Maste case 0: 51405f2336efSEd Maste p = "l_int"; 51415f2336efSEd Maste break; 51425f2336efSEd Maste case 1: 51435f2336efSEd Maste p = "l_uintptr_t"; 51445f2336efSEd Maste break; 51455f2336efSEd Maste case 2: 5146a39cdcd7SEdward Tomasz Napierala p = "l_uint"; 51475f2336efSEd Maste break; 51485f2336efSEd Maste default: 51495f2336efSEd Maste break; 51505f2336efSEd Maste }; 51515f2336efSEd Maste break; 51525f2336efSEd Maste /* linux_recvmsg */ 51535f2336efSEd Maste case 212: 51545f2336efSEd Maste switch (ndx) { 51555f2336efSEd Maste case 0: 51565f2336efSEd Maste p = "l_int"; 51575f2336efSEd Maste break; 51585f2336efSEd Maste case 1: 51595f2336efSEd Maste p = "l_uintptr_t"; 51605f2336efSEd Maste break; 51615f2336efSEd Maste case 2: 5162a39cdcd7SEdward Tomasz Napierala p = "l_uint"; 51635f2336efSEd Maste break; 51645f2336efSEd Maste default: 51655f2336efSEd Maste break; 51665f2336efSEd Maste }; 51675f2336efSEd Maste break; 51685f2336efSEd Maste /* linux_brk */ 51695f2336efSEd Maste case 214: 51705f2336efSEd Maste switch (ndx) { 51715f2336efSEd Maste case 0: 51725f2336efSEd Maste p = "l_ulong"; 51735f2336efSEd Maste break; 51745f2336efSEd Maste default: 51755f2336efSEd Maste break; 51765f2336efSEd Maste }; 51775f2336efSEd Maste break; 51785f2336efSEd Maste /* munmap */ 51795f2336efSEd Maste case 215: 51805f2336efSEd Maste switch (ndx) { 51815f2336efSEd Maste case 0: 5182a39cdcd7SEdward Tomasz Napierala p = "userland void *"; 51835f2336efSEd Maste break; 51845f2336efSEd Maste case 1: 5185a39cdcd7SEdward Tomasz Napierala p = "l_size_t"; 51865f2336efSEd Maste break; 51875f2336efSEd Maste default: 51885f2336efSEd Maste break; 51895f2336efSEd Maste }; 51905f2336efSEd Maste break; 51915f2336efSEd Maste /* linux_mremap */ 51925f2336efSEd Maste case 216: 51935f2336efSEd Maste switch (ndx) { 51945f2336efSEd Maste case 0: 51955f2336efSEd Maste p = "l_ulong"; 51965f2336efSEd Maste break; 51975f2336efSEd Maste case 1: 51985f2336efSEd Maste p = "l_ulong"; 51995f2336efSEd Maste break; 52005f2336efSEd Maste case 2: 52015f2336efSEd Maste p = "l_ulong"; 52025f2336efSEd Maste break; 52035f2336efSEd Maste case 3: 52045f2336efSEd Maste p = "l_ulong"; 52055f2336efSEd Maste break; 52065f2336efSEd Maste case 4: 52075f2336efSEd Maste p = "l_ulong"; 52085f2336efSEd Maste break; 52095f2336efSEd Maste default: 52105f2336efSEd Maste break; 52115f2336efSEd Maste }; 52125f2336efSEd Maste break; 52135f2336efSEd Maste /* linux_add_key */ 52145f2336efSEd Maste case 217: 52155f2336efSEd Maste break; 52165f2336efSEd Maste /* linux_request_key */ 52175f2336efSEd Maste case 218: 52185f2336efSEd Maste break; 52195f2336efSEd Maste /* linux_keyctl */ 52205f2336efSEd Maste case 219: 52215f2336efSEd Maste break; 52225f2336efSEd Maste /* linux_clone */ 52235f2336efSEd Maste case 220: 52245f2336efSEd Maste switch (ndx) { 52255f2336efSEd Maste case 0: 5226a39cdcd7SEdward Tomasz Napierala p = "l_ulong"; 52275f2336efSEd Maste break; 52285f2336efSEd Maste case 1: 52290c08f34fSDmitry Chagin p = "l_ulong"; 52305f2336efSEd Maste break; 52315f2336efSEd Maste case 2: 52320c08f34fSDmitry Chagin p = "userland l_int *"; 52335f2336efSEd Maste break; 52345f2336efSEd Maste case 3: 52350c08f34fSDmitry Chagin p = "l_ulong"; 52365f2336efSEd Maste break; 52375f2336efSEd Maste case 4: 52380c08f34fSDmitry Chagin p = "userland l_int *"; 52395f2336efSEd Maste break; 52405f2336efSEd Maste default: 52415f2336efSEd Maste break; 52425f2336efSEd Maste }; 52435f2336efSEd Maste break; 52445f2336efSEd Maste /* linux_execve */ 52455f2336efSEd Maste case 221: 52465f2336efSEd Maste switch (ndx) { 52475f2336efSEd Maste case 0: 52485f2336efSEd Maste p = "userland char *"; 52495f2336efSEd Maste break; 52505f2336efSEd Maste case 1: 52515f2336efSEd Maste p = "userland char **"; 52525f2336efSEd Maste break; 52535f2336efSEd Maste case 2: 52545f2336efSEd Maste p = "userland char **"; 52555f2336efSEd Maste break; 52565f2336efSEd Maste default: 52575f2336efSEd Maste break; 52585f2336efSEd Maste }; 52595f2336efSEd Maste break; 52605f2336efSEd Maste /* linux_mmap2 */ 52615f2336efSEd Maste case 222: 52625f2336efSEd Maste switch (ndx) { 52635f2336efSEd Maste case 0: 52645f2336efSEd Maste p = "l_ulong"; 52655f2336efSEd Maste break; 52665f2336efSEd Maste case 1: 52675f2336efSEd Maste p = "l_ulong"; 52685f2336efSEd Maste break; 52695f2336efSEd Maste case 2: 52705f2336efSEd Maste p = "l_ulong"; 52715f2336efSEd Maste break; 52725f2336efSEd Maste case 3: 52735f2336efSEd Maste p = "l_ulong"; 52745f2336efSEd Maste break; 52755f2336efSEd Maste case 4: 52765f2336efSEd Maste p = "l_ulong"; 52775f2336efSEd Maste break; 52785f2336efSEd Maste case 5: 52795f2336efSEd Maste p = "l_ulong"; 52805f2336efSEd Maste break; 52815f2336efSEd Maste default: 52825f2336efSEd Maste break; 52835f2336efSEd Maste }; 52845f2336efSEd Maste break; 52855f2336efSEd Maste /* linux_fadvise64 */ 52865f2336efSEd Maste case 223: 52875f2336efSEd Maste switch (ndx) { 52885f2336efSEd Maste case 0: 52895f2336efSEd Maste p = "l_int"; 52905f2336efSEd Maste break; 52915f2336efSEd Maste case 1: 52925f2336efSEd Maste p = "l_loff_t"; 52935f2336efSEd Maste break; 52945f2336efSEd Maste case 2: 52955f2336efSEd Maste p = "l_size_t"; 52965f2336efSEd Maste break; 52975f2336efSEd Maste case 3: 52985f2336efSEd Maste p = "l_int"; 52995f2336efSEd Maste break; 53005f2336efSEd Maste default: 53015f2336efSEd Maste break; 53025f2336efSEd Maste }; 53035f2336efSEd Maste break; 53045f2336efSEd Maste /* swapon */ 53055f2336efSEd Maste case 224: 53065f2336efSEd Maste switch (ndx) { 53075f2336efSEd Maste case 0: 53085f2336efSEd Maste p = "userland char *"; 53095f2336efSEd Maste break; 53105f2336efSEd Maste default: 53115f2336efSEd Maste break; 53125f2336efSEd Maste }; 53135f2336efSEd Maste break; 53145f2336efSEd Maste /* linux_swapoff */ 53155f2336efSEd Maste case 225: 53165f2336efSEd Maste break; 53175f2336efSEd Maste /* linux_mprotect */ 53185f2336efSEd Maste case 226: 53195f2336efSEd Maste switch (ndx) { 53205f2336efSEd Maste case 0: 5321a39cdcd7SEdward Tomasz Napierala p = "l_ulong"; 53225f2336efSEd Maste break; 53235f2336efSEd Maste case 1: 5324a39cdcd7SEdward Tomasz Napierala p = "l_size_t"; 53255f2336efSEd Maste break; 53265f2336efSEd Maste case 2: 5327a39cdcd7SEdward Tomasz Napierala p = "l_ulong"; 53285f2336efSEd Maste break; 53295f2336efSEd Maste default: 53305f2336efSEd Maste break; 53315f2336efSEd Maste }; 53325f2336efSEd Maste break; 53335f2336efSEd Maste /* linux_msync */ 53345f2336efSEd Maste case 227: 53355f2336efSEd Maste switch (ndx) { 53365f2336efSEd Maste case 0: 53375f2336efSEd Maste p = "l_ulong"; 53385f2336efSEd Maste break; 53395f2336efSEd Maste case 1: 53405f2336efSEd Maste p = "l_size_t"; 53415f2336efSEd Maste break; 53425f2336efSEd Maste case 2: 53435f2336efSEd Maste p = "l_int"; 53445f2336efSEd Maste break; 53455f2336efSEd Maste default: 53465f2336efSEd Maste break; 53475f2336efSEd Maste }; 53485f2336efSEd Maste break; 53495f2336efSEd Maste /* mlock */ 53505f2336efSEd Maste case 228: 53515f2336efSEd Maste switch (ndx) { 53525f2336efSEd Maste case 0: 53535f2336efSEd Maste p = "userland const void *"; 53545f2336efSEd Maste break; 53555f2336efSEd Maste case 1: 53565f2336efSEd Maste p = "size_t"; 53575f2336efSEd Maste break; 53585f2336efSEd Maste default: 53595f2336efSEd Maste break; 53605f2336efSEd Maste }; 53615f2336efSEd Maste break; 53625f2336efSEd Maste /* munlock */ 53635f2336efSEd Maste case 229: 53645f2336efSEd Maste switch (ndx) { 53655f2336efSEd Maste case 0: 53665f2336efSEd Maste p = "userland const void *"; 53675f2336efSEd Maste break; 53685f2336efSEd Maste case 1: 53695f2336efSEd Maste p = "size_t"; 53705f2336efSEd Maste break; 53715f2336efSEd Maste default: 53725f2336efSEd Maste break; 53735f2336efSEd Maste }; 53745f2336efSEd Maste break; 53755f2336efSEd Maste /* mlockall */ 53765f2336efSEd Maste case 230: 53775f2336efSEd Maste switch (ndx) { 53785f2336efSEd Maste case 0: 53795f2336efSEd Maste p = "int"; 53805f2336efSEd Maste break; 53815f2336efSEd Maste default: 53825f2336efSEd Maste break; 53835f2336efSEd Maste }; 53845f2336efSEd Maste break; 53855f2336efSEd Maste /* munlockall */ 53865f2336efSEd Maste case 231: 53875f2336efSEd Maste break; 53885f2336efSEd Maste /* linux_mincore */ 53895f2336efSEd Maste case 232: 53905f2336efSEd Maste switch (ndx) { 53915f2336efSEd Maste case 0: 53925f2336efSEd Maste p = "l_ulong"; 53935f2336efSEd Maste break; 53945f2336efSEd Maste case 1: 53955f2336efSEd Maste p = "l_size_t"; 53965f2336efSEd Maste break; 53975f2336efSEd Maste case 2: 53985f2336efSEd Maste p = "userland u_char *"; 53995f2336efSEd Maste break; 54005f2336efSEd Maste default: 54015f2336efSEd Maste break; 54025f2336efSEd Maste }; 54035f2336efSEd Maste break; 5404bafd96b8SEdward Tomasz Napierala /* linux_madvise */ 54055f2336efSEd Maste case 233: 54065f2336efSEd Maste switch (ndx) { 54075f2336efSEd Maste case 0: 5408a39cdcd7SEdward Tomasz Napierala p = "l_ulong"; 54095f2336efSEd Maste break; 54105f2336efSEd Maste case 1: 5411a39cdcd7SEdward Tomasz Napierala p = "l_size_t"; 54125f2336efSEd Maste break; 54135f2336efSEd Maste case 2: 5414a39cdcd7SEdward Tomasz Napierala p = "l_int"; 54155f2336efSEd Maste break; 54165f2336efSEd Maste default: 54175f2336efSEd Maste break; 54185f2336efSEd Maste }; 54195f2336efSEd Maste break; 54205f2336efSEd Maste /* linux_remap_file_pages */ 54215f2336efSEd Maste case 234: 54225f2336efSEd Maste break; 54235f2336efSEd Maste /* linux_mbind */ 54245f2336efSEd Maste case 235: 54255f2336efSEd Maste break; 54265f2336efSEd Maste /* linux_get_mempolicy */ 54275f2336efSEd Maste case 236: 54285f2336efSEd Maste break; 54295f2336efSEd Maste /* linux_set_mempolicy */ 54305f2336efSEd Maste case 237: 54315f2336efSEd Maste break; 54325f2336efSEd Maste /* linux_migrate_pages */ 54335f2336efSEd Maste case 238: 54345f2336efSEd Maste break; 54355f2336efSEd Maste /* linux_move_pages */ 54365f2336efSEd Maste case 239: 54375f2336efSEd Maste break; 54385f2336efSEd Maste /* linux_rt_tgsigqueueinfo */ 54395f2336efSEd Maste case 240: 54405f2336efSEd Maste switch (ndx) { 54415f2336efSEd Maste case 0: 54425f2336efSEd Maste p = "l_pid_t"; 54435f2336efSEd Maste break; 54445f2336efSEd Maste case 1: 54455f2336efSEd Maste p = "l_pid_t"; 54465f2336efSEd Maste break; 54475f2336efSEd Maste case 2: 54485f2336efSEd Maste p = "l_int"; 54495f2336efSEd Maste break; 54505f2336efSEd Maste case 3: 54515f2336efSEd Maste p = "userland l_siginfo_t *"; 54525f2336efSEd Maste break; 54535f2336efSEd Maste default: 54545f2336efSEd Maste break; 54555f2336efSEd Maste }; 54565f2336efSEd Maste break; 54575f2336efSEd Maste /* linux_perf_event_open */ 54585f2336efSEd Maste case 241: 54595f2336efSEd Maste break; 54605f2336efSEd Maste /* linux_accept4 */ 54615f2336efSEd Maste case 242: 54625f2336efSEd Maste switch (ndx) { 54635f2336efSEd Maste case 0: 54645f2336efSEd Maste p = "l_int"; 54655f2336efSEd Maste break; 54665f2336efSEd Maste case 1: 54675f2336efSEd Maste p = "l_uintptr_t"; 54685f2336efSEd Maste break; 54695f2336efSEd Maste case 2: 54705f2336efSEd Maste p = "l_uintptr_t"; 54715f2336efSEd Maste break; 54725f2336efSEd Maste case 3: 5473a39cdcd7SEdward Tomasz Napierala p = "l_int"; 54745f2336efSEd Maste break; 54755f2336efSEd Maste default: 54765f2336efSEd Maste break; 54775f2336efSEd Maste }; 54785f2336efSEd Maste break; 54795f2336efSEd Maste /* linux_recvmmsg */ 54805f2336efSEd Maste case 243: 54815f2336efSEd Maste switch (ndx) { 54825f2336efSEd Maste case 0: 54835f2336efSEd Maste p = "l_int"; 54845f2336efSEd Maste break; 54855f2336efSEd Maste case 1: 54865f2336efSEd Maste p = "userland struct l_mmsghdr *"; 54875f2336efSEd Maste break; 54885f2336efSEd Maste case 2: 54895f2336efSEd Maste p = "l_uint"; 54905f2336efSEd Maste break; 54915f2336efSEd Maste case 3: 54925f2336efSEd Maste p = "l_uint"; 54935f2336efSEd Maste break; 54945f2336efSEd Maste case 4: 54955f2336efSEd Maste p = "userland struct l_timespec *"; 54965f2336efSEd Maste break; 54975f2336efSEd Maste default: 54985f2336efSEd Maste break; 54995f2336efSEd Maste }; 55005f2336efSEd Maste break; 55015f2336efSEd Maste /* linux_wait4 */ 55025f2336efSEd Maste case 260: 55035f2336efSEd Maste switch (ndx) { 55045f2336efSEd Maste case 0: 55055f2336efSEd Maste p = "l_pid_t"; 55065f2336efSEd Maste break; 55075f2336efSEd Maste case 1: 55085f2336efSEd Maste p = "userland l_int *"; 55095f2336efSEd Maste break; 55105f2336efSEd Maste case 2: 55115f2336efSEd Maste p = "l_int"; 55125f2336efSEd Maste break; 55135f2336efSEd Maste case 3: 55145f2336efSEd Maste p = "userland struct rusage *"; 55155f2336efSEd Maste break; 55165f2336efSEd Maste default: 55175f2336efSEd Maste break; 55185f2336efSEd Maste }; 55195f2336efSEd Maste break; 55205f2336efSEd Maste /* linux_prlimit64 */ 55215f2336efSEd Maste case 261: 55225f2336efSEd Maste switch (ndx) { 55235f2336efSEd Maste case 0: 55245f2336efSEd Maste p = "l_pid_t"; 55255f2336efSEd Maste break; 55265f2336efSEd Maste case 1: 55275f2336efSEd Maste p = "l_uint"; 55285f2336efSEd Maste break; 55295f2336efSEd Maste case 2: 55305f2336efSEd Maste p = "userland struct rlimit *"; 55315f2336efSEd Maste break; 55325f2336efSEd Maste case 3: 55335f2336efSEd Maste p = "userland struct rlimit *"; 55345f2336efSEd Maste break; 55355f2336efSEd Maste default: 55365f2336efSEd Maste break; 55375f2336efSEd Maste }; 55385f2336efSEd Maste break; 55395f2336efSEd Maste /* linux_fanotify_init */ 55405f2336efSEd Maste case 262: 55415f2336efSEd Maste break; 55425f2336efSEd Maste /* linux_fanotify_mark */ 55435f2336efSEd Maste case 263: 55445f2336efSEd Maste break; 55455f2336efSEd Maste /* linux_name_to_handle_at */ 55465f2336efSEd Maste case 264: 554777eb9841SConrad Meyer switch (ndx) { 554877eb9841SConrad Meyer case 0: 554977eb9841SConrad Meyer p = "l_int"; 555077eb9841SConrad Meyer break; 555177eb9841SConrad Meyer case 1: 555277eb9841SConrad Meyer p = "userland const char *"; 555377eb9841SConrad Meyer break; 555477eb9841SConrad Meyer case 2: 555577eb9841SConrad Meyer p = "userland struct l_file_handle *"; 555677eb9841SConrad Meyer break; 555777eb9841SConrad Meyer case 3: 555877eb9841SConrad Meyer p = "userland l_int *"; 555977eb9841SConrad Meyer break; 556077eb9841SConrad Meyer case 4: 556177eb9841SConrad Meyer p = "l_int"; 556277eb9841SConrad Meyer break; 556377eb9841SConrad Meyer default: 556477eb9841SConrad Meyer break; 556577eb9841SConrad Meyer }; 55665f2336efSEd Maste break; 55675f2336efSEd Maste /* linux_open_by_handle_at */ 55685f2336efSEd Maste case 265: 556977eb9841SConrad Meyer switch (ndx) { 557077eb9841SConrad Meyer case 0: 557177eb9841SConrad Meyer p = "l_int"; 557277eb9841SConrad Meyer break; 557377eb9841SConrad Meyer case 1: 557477eb9841SConrad Meyer p = "userland struct l_file_handle *"; 557577eb9841SConrad Meyer break; 557677eb9841SConrad Meyer case 2: 557777eb9841SConrad Meyer p = "l_int"; 557877eb9841SConrad Meyer break; 557977eb9841SConrad Meyer default: 558077eb9841SConrad Meyer break; 558177eb9841SConrad Meyer }; 55825f2336efSEd Maste break; 55835f2336efSEd Maste /* linux_clock_adjtime */ 55845f2336efSEd Maste case 266: 55855f2336efSEd Maste break; 55865f2336efSEd Maste /* linux_syncfs */ 55875f2336efSEd Maste case 267: 55885f2336efSEd Maste switch (ndx) { 55895f2336efSEd Maste case 0: 55905f2336efSEd Maste p = "l_int"; 55915f2336efSEd Maste break; 55925f2336efSEd Maste default: 55935f2336efSEd Maste break; 55945f2336efSEd Maste }; 55955f2336efSEd Maste break; 55965f2336efSEd Maste /* linux_setns */ 55975f2336efSEd Maste case 268: 55985f2336efSEd Maste switch (ndx) { 55995f2336efSEd Maste case 0: 56005f2336efSEd Maste p = "l_int"; 56015f2336efSEd Maste break; 56025f2336efSEd Maste case 1: 56035f2336efSEd Maste p = "l_int"; 56045f2336efSEd Maste break; 56055f2336efSEd Maste default: 56065f2336efSEd Maste break; 56075f2336efSEd Maste }; 56085f2336efSEd Maste break; 56095f2336efSEd Maste /* linux_sendmmsg */ 56105f2336efSEd Maste case 269: 56115f2336efSEd Maste switch (ndx) { 56125f2336efSEd Maste case 0: 56135f2336efSEd Maste p = "l_int"; 56145f2336efSEd Maste break; 56155f2336efSEd Maste case 1: 56165f2336efSEd Maste p = "userland struct l_mmsghdr *"; 56175f2336efSEd Maste break; 56185f2336efSEd Maste case 2: 56195f2336efSEd Maste p = "l_uint"; 56205f2336efSEd Maste break; 56215f2336efSEd Maste case 3: 56225f2336efSEd Maste p = "l_uint"; 56235f2336efSEd Maste break; 56245f2336efSEd Maste default: 56255f2336efSEd Maste break; 56265f2336efSEd Maste }; 56275f2336efSEd Maste break; 56285f2336efSEd Maste /* linux_process_vm_readv */ 56295f2336efSEd Maste case 270: 56305f2336efSEd Maste switch (ndx) { 56315f2336efSEd Maste case 0: 56325f2336efSEd Maste p = "l_pid_t"; 56335f2336efSEd Maste break; 56345f2336efSEd Maste case 1: 56355f2336efSEd Maste p = "userland const struct iovec *"; 56365f2336efSEd Maste break; 56375f2336efSEd Maste case 2: 56385f2336efSEd Maste p = "l_ulong"; 56395f2336efSEd Maste break; 56405f2336efSEd Maste case 3: 56415f2336efSEd Maste p = "userland const struct iovec *"; 56425f2336efSEd Maste break; 56435f2336efSEd Maste case 4: 56445f2336efSEd Maste p = "l_ulong"; 56455f2336efSEd Maste break; 56465f2336efSEd Maste case 5: 56475f2336efSEd Maste p = "l_ulong"; 56485f2336efSEd Maste break; 56495f2336efSEd Maste default: 56505f2336efSEd Maste break; 56515f2336efSEd Maste }; 56525f2336efSEd Maste break; 56535f2336efSEd Maste /* linux_process_vm_writev */ 56545f2336efSEd Maste case 271: 56555f2336efSEd Maste switch (ndx) { 56565f2336efSEd Maste case 0: 56575f2336efSEd Maste p = "l_pid_t"; 56585f2336efSEd Maste break; 56595f2336efSEd Maste case 1: 56605f2336efSEd Maste p = "userland const struct iovec *"; 56615f2336efSEd Maste break; 56625f2336efSEd Maste case 2: 56635f2336efSEd Maste p = "l_ulong"; 56645f2336efSEd Maste break; 56655f2336efSEd Maste case 3: 56665f2336efSEd Maste p = "userland const struct iovec *"; 56675f2336efSEd Maste break; 56685f2336efSEd Maste case 4: 56695f2336efSEd Maste p = "l_ulong"; 56705f2336efSEd Maste break; 56715f2336efSEd Maste case 5: 56725f2336efSEd Maste p = "l_ulong"; 56735f2336efSEd Maste break; 56745f2336efSEd Maste default: 56755f2336efSEd Maste break; 56765f2336efSEd Maste }; 56775f2336efSEd Maste break; 56785f2336efSEd Maste /* linux_kcmp */ 56795f2336efSEd Maste case 272: 56805f2336efSEd Maste switch (ndx) { 56815f2336efSEd Maste case 0: 56825f2336efSEd Maste p = "l_pid_t"; 56835f2336efSEd Maste break; 56845f2336efSEd Maste case 1: 56855f2336efSEd Maste p = "l_pid_t"; 56865f2336efSEd Maste break; 56875f2336efSEd Maste case 2: 56885f2336efSEd Maste p = "l_int"; 56895f2336efSEd Maste break; 56905f2336efSEd Maste case 3: 56915f2336efSEd Maste p = "l_ulong"; 56925f2336efSEd Maste break; 56935f2336efSEd Maste case 4: 56945f2336efSEd Maste p = "l_ulong"; 56955f2336efSEd Maste break; 56965f2336efSEd Maste default: 56975f2336efSEd Maste break; 56985f2336efSEd Maste }; 56995f2336efSEd Maste break; 57005f2336efSEd Maste /* linux_finit_module */ 57015f2336efSEd Maste case 273: 57025f2336efSEd Maste switch (ndx) { 57035f2336efSEd Maste case 0: 57045f2336efSEd Maste p = "l_int"; 57055f2336efSEd Maste break; 57065f2336efSEd Maste case 1: 57075f2336efSEd Maste p = "userland const char *"; 57085f2336efSEd Maste break; 57095f2336efSEd Maste case 2: 57105f2336efSEd Maste p = "l_int"; 57115f2336efSEd Maste break; 57125f2336efSEd Maste default: 57135f2336efSEd Maste break; 57145f2336efSEd Maste }; 57155f2336efSEd Maste break; 57165f2336efSEd Maste /* linux_sched_setattr */ 57175f2336efSEd Maste case 274: 57185f2336efSEd Maste switch (ndx) { 57195f2336efSEd Maste case 0: 57205f2336efSEd Maste p = "l_pid_t"; 57215f2336efSEd Maste break; 57225f2336efSEd Maste case 1: 57235f2336efSEd Maste p = "userland void *"; 57245f2336efSEd Maste break; 57255f2336efSEd Maste case 2: 57265f2336efSEd Maste p = "l_uint"; 57275f2336efSEd Maste break; 57285f2336efSEd Maste default: 57295f2336efSEd Maste break; 57305f2336efSEd Maste }; 57315f2336efSEd Maste break; 57325f2336efSEd Maste /* linux_sched_getattr */ 57335f2336efSEd Maste case 275: 57345f2336efSEd Maste switch (ndx) { 57355f2336efSEd Maste case 0: 57365f2336efSEd Maste p = "l_pid_t"; 57375f2336efSEd Maste break; 57385f2336efSEd Maste case 1: 57395f2336efSEd Maste p = "userland void *"; 57405f2336efSEd Maste break; 57415f2336efSEd Maste case 2: 57425f2336efSEd Maste p = "l_uint"; 57435f2336efSEd Maste break; 57445f2336efSEd Maste case 3: 57455f2336efSEd Maste p = "l_uint"; 57465f2336efSEd Maste break; 57475f2336efSEd Maste default: 57485f2336efSEd Maste break; 57495f2336efSEd Maste }; 57505f2336efSEd Maste break; 57515f2336efSEd Maste /* linux_renameat2 */ 57525f2336efSEd Maste case 276: 57535f2336efSEd Maste switch (ndx) { 57545f2336efSEd Maste case 0: 57555f2336efSEd Maste p = "l_int"; 57565f2336efSEd Maste break; 57575f2336efSEd Maste case 1: 57585f2336efSEd Maste p = "userland const char *"; 57595f2336efSEd Maste break; 57605f2336efSEd Maste case 2: 57615f2336efSEd Maste p = "l_int"; 57625f2336efSEd Maste break; 57635f2336efSEd Maste case 3: 57645f2336efSEd Maste p = "userland const char *"; 57655f2336efSEd Maste break; 57665f2336efSEd Maste case 4: 5767a39cdcd7SEdward Tomasz Napierala p = "l_uint"; 57685f2336efSEd Maste break; 57695f2336efSEd Maste default: 57705f2336efSEd Maste break; 57715f2336efSEd Maste }; 57725f2336efSEd Maste break; 57735f2336efSEd Maste /* linux_seccomp */ 57745f2336efSEd Maste case 277: 57755f2336efSEd Maste switch (ndx) { 57765f2336efSEd Maste case 0: 57775f2336efSEd Maste p = "l_uint"; 57785f2336efSEd Maste break; 57795f2336efSEd Maste case 1: 57805f2336efSEd Maste p = "l_uint"; 57815f2336efSEd Maste break; 57825f2336efSEd Maste case 2: 57835f2336efSEd Maste p = "userland const char *"; 57845f2336efSEd Maste break; 57855f2336efSEd Maste default: 57865f2336efSEd Maste break; 57875f2336efSEd Maste }; 57885f2336efSEd Maste break; 57895f2336efSEd Maste /* linux_getrandom */ 57905f2336efSEd Maste case 278: 57915f2336efSEd Maste switch (ndx) { 57925f2336efSEd Maste case 0: 57935f2336efSEd Maste p = "userland char *"; 57945f2336efSEd Maste break; 57955f2336efSEd Maste case 1: 57965f2336efSEd Maste p = "l_size_t"; 57975f2336efSEd Maste break; 57985f2336efSEd Maste case 2: 57995f2336efSEd Maste p = "l_uint"; 58005f2336efSEd Maste break; 58015f2336efSEd Maste default: 58025f2336efSEd Maste break; 58035f2336efSEd Maste }; 58045f2336efSEd Maste break; 58055f2336efSEd Maste /* linux_memfd_create */ 58065f2336efSEd Maste case 279: 58075f2336efSEd Maste switch (ndx) { 58085f2336efSEd Maste case 0: 58095f2336efSEd Maste p = "userland const char *"; 58105f2336efSEd Maste break; 58115f2336efSEd Maste case 1: 58125f2336efSEd Maste p = "l_uint"; 58135f2336efSEd Maste break; 58145f2336efSEd Maste default: 58155f2336efSEd Maste break; 58165f2336efSEd Maste }; 58175f2336efSEd Maste break; 58185f2336efSEd Maste /* linux_bpf */ 58195f2336efSEd Maste case 280: 58205f2336efSEd Maste switch (ndx) { 58215f2336efSEd Maste case 0: 58225f2336efSEd Maste p = "l_int"; 58235f2336efSEd Maste break; 58245f2336efSEd Maste case 1: 58255f2336efSEd Maste p = "userland void *"; 58265f2336efSEd Maste break; 58275f2336efSEd Maste case 2: 58285f2336efSEd Maste p = "l_uint"; 58295f2336efSEd Maste break; 58305f2336efSEd Maste default: 58315f2336efSEd Maste break; 58325f2336efSEd Maste }; 58335f2336efSEd Maste break; 58345f2336efSEd Maste /* linux_execveat */ 58355f2336efSEd Maste case 281: 58365f2336efSEd Maste switch (ndx) { 58375f2336efSEd Maste case 0: 58385f2336efSEd Maste p = "l_int"; 58395f2336efSEd Maste break; 58405f2336efSEd Maste case 1: 58415f2336efSEd Maste p = "userland const char *"; 58425f2336efSEd Maste break; 58435f2336efSEd Maste case 2: 58445f2336efSEd Maste p = "userland const char **"; 58455f2336efSEd Maste break; 58465f2336efSEd Maste case 3: 58475f2336efSEd Maste p = "userland const char **"; 58485f2336efSEd Maste break; 58495f2336efSEd Maste case 4: 58505f2336efSEd Maste p = "l_int"; 58515f2336efSEd Maste break; 58525f2336efSEd Maste default: 58535f2336efSEd Maste break; 58545f2336efSEd Maste }; 58555f2336efSEd Maste break; 58565f2336efSEd Maste /* linux_userfaultfd */ 58575f2336efSEd Maste case 282: 58585f2336efSEd Maste switch (ndx) { 58595f2336efSEd Maste case 0: 58605f2336efSEd Maste p = "l_int"; 58615f2336efSEd Maste break; 58625f2336efSEd Maste default: 58635f2336efSEd Maste break; 58645f2336efSEd Maste }; 58655f2336efSEd Maste break; 58665f2336efSEd Maste /* linux_membarrier */ 58675f2336efSEd Maste case 283: 58685f2336efSEd Maste switch (ndx) { 58695f2336efSEd Maste case 0: 58705f2336efSEd Maste p = "l_int"; 58715f2336efSEd Maste break; 58725f2336efSEd Maste case 1: 58735f2336efSEd Maste p = "l_int"; 58745f2336efSEd Maste break; 58755f2336efSEd Maste default: 58765f2336efSEd Maste break; 58775f2336efSEd Maste }; 58785f2336efSEd Maste break; 58795f2336efSEd Maste /* linux_mlock2 */ 58805f2336efSEd Maste case 284: 58815f2336efSEd Maste switch (ndx) { 58825f2336efSEd Maste case 0: 58835f2336efSEd Maste p = "l_ulong"; 58845f2336efSEd Maste break; 58855f2336efSEd Maste case 1: 58865f2336efSEd Maste p = "l_size_t"; 58875f2336efSEd Maste break; 58885f2336efSEd Maste case 2: 58895f2336efSEd Maste p = "l_int"; 58905f2336efSEd Maste break; 58915f2336efSEd Maste default: 58925f2336efSEd Maste break; 58935f2336efSEd Maste }; 58945f2336efSEd Maste break; 58955f2336efSEd Maste /* linux_copy_file_range */ 58965f2336efSEd Maste case 285: 58975f2336efSEd Maste switch (ndx) { 58985f2336efSEd Maste case 0: 58995f2336efSEd Maste p = "l_int"; 59005f2336efSEd Maste break; 59015f2336efSEd Maste case 1: 59025f2336efSEd Maste p = "userland l_loff_t *"; 59035f2336efSEd Maste break; 59045f2336efSEd Maste case 2: 59055f2336efSEd Maste p = "l_int"; 59065f2336efSEd Maste break; 59075f2336efSEd Maste case 3: 59085f2336efSEd Maste p = "userland l_loff_t *"; 59095f2336efSEd Maste break; 59105f2336efSEd Maste case 4: 59115f2336efSEd Maste p = "l_size_t"; 59125f2336efSEd Maste break; 59135f2336efSEd Maste case 5: 59145f2336efSEd Maste p = "l_uint"; 59155f2336efSEd Maste break; 59165f2336efSEd Maste default: 59175f2336efSEd Maste break; 59185f2336efSEd Maste }; 59195f2336efSEd Maste break; 59205f2336efSEd Maste /* linux_preadv2 */ 59215f2336efSEd Maste case 286: 59225f2336efSEd Maste switch (ndx) { 59235f2336efSEd Maste case 0: 59245f2336efSEd Maste p = "l_ulong"; 59255f2336efSEd Maste break; 59265f2336efSEd Maste case 1: 59275f2336efSEd Maste p = "userland const struct iovec *"; 59285f2336efSEd Maste break; 59295f2336efSEd Maste case 2: 59305f2336efSEd Maste p = "l_ulong"; 59315f2336efSEd Maste break; 59325f2336efSEd Maste case 3: 59335f2336efSEd Maste p = "l_ulong"; 59345f2336efSEd Maste break; 59355f2336efSEd Maste case 4: 59365f2336efSEd Maste p = "l_ulong"; 59375f2336efSEd Maste break; 59385f2336efSEd Maste case 5: 59395f2336efSEd Maste p = "l_int"; 59405f2336efSEd Maste break; 59415f2336efSEd Maste default: 59425f2336efSEd Maste break; 59435f2336efSEd Maste }; 59445f2336efSEd Maste break; 59455f2336efSEd Maste /* linux_pwritev2 */ 59465f2336efSEd Maste case 287: 59475f2336efSEd Maste switch (ndx) { 59485f2336efSEd Maste case 0: 59495f2336efSEd Maste p = "l_ulong"; 59505f2336efSEd Maste break; 59515f2336efSEd Maste case 1: 59525f2336efSEd Maste p = "userland const struct iovec *"; 59535f2336efSEd Maste break; 59545f2336efSEd Maste case 2: 59555f2336efSEd Maste p = "l_ulong"; 59565f2336efSEd Maste break; 59575f2336efSEd Maste case 3: 59585f2336efSEd Maste p = "l_ulong"; 59595f2336efSEd Maste break; 59605f2336efSEd Maste case 4: 59615f2336efSEd Maste p = "l_ulong"; 59625f2336efSEd Maste break; 59635f2336efSEd Maste case 5: 59645f2336efSEd Maste p = "l_int"; 59655f2336efSEd Maste break; 59665f2336efSEd Maste default: 59675f2336efSEd Maste break; 59685f2336efSEd Maste }; 59695f2336efSEd Maste break; 59705f2336efSEd Maste /* linux_pkey_mprotect */ 59715f2336efSEd Maste case 288: 59725f2336efSEd Maste switch (ndx) { 59735f2336efSEd Maste case 0: 59745f2336efSEd Maste p = "l_ulong"; 59755f2336efSEd Maste break; 59765f2336efSEd Maste case 1: 59775f2336efSEd Maste p = "l_size_t"; 59785f2336efSEd Maste break; 59795f2336efSEd Maste case 2: 59805f2336efSEd Maste p = "l_ulong"; 59815f2336efSEd Maste break; 59825f2336efSEd Maste case 3: 59835f2336efSEd Maste p = "l_int"; 59845f2336efSEd Maste break; 59855f2336efSEd Maste default: 59865f2336efSEd Maste break; 59875f2336efSEd Maste }; 59885f2336efSEd Maste break; 59895f2336efSEd Maste /* linux_pkey_alloc */ 59905f2336efSEd Maste case 289: 59915f2336efSEd Maste switch (ndx) { 59925f2336efSEd Maste case 0: 59935f2336efSEd Maste p = "l_ulong"; 59945f2336efSEd Maste break; 59955f2336efSEd Maste case 1: 59965f2336efSEd Maste p = "l_ulong"; 59975f2336efSEd Maste break; 59985f2336efSEd Maste default: 59995f2336efSEd Maste break; 60005f2336efSEd Maste }; 60015f2336efSEd Maste break; 60025f2336efSEd Maste /* linux_pkey_free */ 60035f2336efSEd Maste case 290: 60045f2336efSEd Maste switch (ndx) { 60055f2336efSEd Maste case 0: 60065f2336efSEd Maste p = "l_int"; 60075f2336efSEd Maste break; 60085f2336efSEd Maste default: 60095f2336efSEd Maste break; 60105f2336efSEd Maste }; 60115f2336efSEd Maste break; 6012c0f17173SEdward Tomasz Napierala /* linux_statx */ 6013c0f17173SEdward Tomasz Napierala case 291: 6014c0f17173SEdward Tomasz Napierala switch (ndx) { 6015c0f17173SEdward Tomasz Napierala case 0: 6016c0f17173SEdward Tomasz Napierala p = "l_int"; 6017c0f17173SEdward Tomasz Napierala break; 6018c0f17173SEdward Tomasz Napierala case 1: 6019c0f17173SEdward Tomasz Napierala p = "userland const char *"; 6020c0f17173SEdward Tomasz Napierala break; 6021c0f17173SEdward Tomasz Napierala case 2: 6022c0f17173SEdward Tomasz Napierala p = "l_uint"; 6023c0f17173SEdward Tomasz Napierala break; 6024c0f17173SEdward Tomasz Napierala case 3: 6025c0f17173SEdward Tomasz Napierala p = "l_uint"; 6026c0f17173SEdward Tomasz Napierala break; 6027c0f17173SEdward Tomasz Napierala case 4: 6028c0f17173SEdward Tomasz Napierala p = "userland void *"; 6029c0f17173SEdward Tomasz Napierala break; 6030c0f17173SEdward Tomasz Napierala default: 6031c0f17173SEdward Tomasz Napierala break; 6032c0f17173SEdward Tomasz Napierala }; 6033c0f17173SEdward Tomasz Napierala break; 6034c0f17173SEdward Tomasz Napierala /* linux_io_pgetevents */ 6035c0f17173SEdward Tomasz Napierala case 292: 6036c0f17173SEdward Tomasz Napierala break; 6037c0f17173SEdward Tomasz Napierala /* linux_rseq */ 6038c0f17173SEdward Tomasz Napierala case 293: 6039c0f17173SEdward Tomasz Napierala break; 6040c0f17173SEdward Tomasz Napierala /* linux_kexec_file_load */ 6041c0f17173SEdward Tomasz Napierala case 294: 6042c0f17173SEdward Tomasz Napierala break; 6043c0f17173SEdward Tomasz Napierala /* linux_pidfd_send_signal */ 6044c0f17173SEdward Tomasz Napierala case 424: 6045c0f17173SEdward Tomasz Napierala switch (ndx) { 6046c0f17173SEdward Tomasz Napierala case 0: 6047c0f17173SEdward Tomasz Napierala p = "l_int"; 6048c0f17173SEdward Tomasz Napierala break; 6049c0f17173SEdward Tomasz Napierala case 1: 6050c0f17173SEdward Tomasz Napierala p = "l_int"; 6051c0f17173SEdward Tomasz Napierala break; 6052c0f17173SEdward Tomasz Napierala case 2: 6053c0f17173SEdward Tomasz Napierala p = "userland l_siginfo_t *"; 6054c0f17173SEdward Tomasz Napierala break; 6055c0f17173SEdward Tomasz Napierala case 3: 6056c0f17173SEdward Tomasz Napierala p = "l_uint"; 6057c0f17173SEdward Tomasz Napierala break; 6058c0f17173SEdward Tomasz Napierala default: 6059c0f17173SEdward Tomasz Napierala break; 6060c0f17173SEdward Tomasz Napierala }; 6061c0f17173SEdward Tomasz Napierala break; 6062c0f17173SEdward Tomasz Napierala /* linux_io_uring_setup */ 6063c0f17173SEdward Tomasz Napierala case 425: 6064c0f17173SEdward Tomasz Napierala break; 6065c0f17173SEdward Tomasz Napierala /* linux_io_uring_enter */ 6066c0f17173SEdward Tomasz Napierala case 426: 6067c0f17173SEdward Tomasz Napierala break; 6068c0f17173SEdward Tomasz Napierala /* linux_io_uring_register */ 6069c0f17173SEdward Tomasz Napierala case 427: 6070c0f17173SEdward Tomasz Napierala break; 6071c0f17173SEdward Tomasz Napierala /* linux_open_tree */ 6072c0f17173SEdward Tomasz Napierala case 428: 6073c0f17173SEdward Tomasz Napierala break; 6074c0f17173SEdward Tomasz Napierala /* linux_move_mount */ 6075c0f17173SEdward Tomasz Napierala case 429: 6076c0f17173SEdward Tomasz Napierala break; 6077c0f17173SEdward Tomasz Napierala /* linux_fsopen */ 6078c0f17173SEdward Tomasz Napierala case 430: 6079c0f17173SEdward Tomasz Napierala break; 6080c0f17173SEdward Tomasz Napierala /* linux_fsconfig */ 6081c0f17173SEdward Tomasz Napierala case 431: 6082c0f17173SEdward Tomasz Napierala break; 6083c0f17173SEdward Tomasz Napierala /* linux_fsmount */ 6084c0f17173SEdward Tomasz Napierala case 432: 6085c0f17173SEdward Tomasz Napierala break; 6086c0f17173SEdward Tomasz Napierala /* linux_fspick */ 6087c0f17173SEdward Tomasz Napierala case 433: 6088c0f17173SEdward Tomasz Napierala break; 6089c0f17173SEdward Tomasz Napierala /* linux_pidfd_open */ 6090c0f17173SEdward Tomasz Napierala case 434: 6091c0f17173SEdward Tomasz Napierala break; 6092c0f17173SEdward Tomasz Napierala /* linux_clone3 */ 6093c0f17173SEdward Tomasz Napierala case 435: 6094b356030eSDmitry Chagin switch (ndx) { 6095b356030eSDmitry Chagin case 0: 6096b356030eSDmitry Chagin p = "userland struct l_user_clone_args *"; 6097b356030eSDmitry Chagin break; 6098b356030eSDmitry Chagin case 1: 6099b356030eSDmitry Chagin p = "l_size_t"; 6100b356030eSDmitry Chagin break; 6101b356030eSDmitry Chagin default: 6102b356030eSDmitry Chagin break; 6103b356030eSDmitry Chagin }; 6104c0f17173SEdward Tomasz Napierala break; 6105c0f17173SEdward Tomasz Napierala /* linux_close_range */ 6106c0f17173SEdward Tomasz Napierala case 436: 6107c0f17173SEdward Tomasz Napierala break; 6108c0f17173SEdward Tomasz Napierala /* linux_openat2 */ 6109c0f17173SEdward Tomasz Napierala case 437: 6110c0f17173SEdward Tomasz Napierala break; 6111c0f17173SEdward Tomasz Napierala /* linux_pidfd_getfd */ 6112c0f17173SEdward Tomasz Napierala case 438: 6113c0f17173SEdward Tomasz Napierala break; 6114c0f17173SEdward Tomasz Napierala /* linux_faccessat2 */ 6115c0f17173SEdward Tomasz Napierala case 439: 6116bee191e4SDmitry Chagin switch (ndx) { 6117bee191e4SDmitry Chagin case 0: 6118bee191e4SDmitry Chagin p = "l_int"; 6119bee191e4SDmitry Chagin break; 6120bee191e4SDmitry Chagin case 1: 6121bee191e4SDmitry Chagin p = "userland const char *"; 6122bee191e4SDmitry Chagin break; 6123bee191e4SDmitry Chagin case 2: 6124bee191e4SDmitry Chagin p = "l_int"; 6125bee191e4SDmitry Chagin break; 6126bee191e4SDmitry Chagin case 3: 6127bee191e4SDmitry Chagin p = "l_int"; 6128bee191e4SDmitry Chagin break; 6129bee191e4SDmitry Chagin default: 6130bee191e4SDmitry Chagin break; 6131bee191e4SDmitry Chagin }; 6132c0f17173SEdward Tomasz Napierala break; 6133c0f17173SEdward Tomasz Napierala /* linux_process_madvise */ 6134c0f17173SEdward Tomasz Napierala case 440: 6135c0f17173SEdward Tomasz Napierala break; 6136c0f17173SEdward Tomasz Napierala /* linux_epoll_pwait2 */ 6137c0f17173SEdward Tomasz Napierala case 441: 6138c0f17173SEdward Tomasz Napierala break; 6139c0f17173SEdward Tomasz Napierala /* linux_mount_setattr */ 6140c0f17173SEdward Tomasz Napierala case 442: 6141c0f17173SEdward Tomasz Napierala break; 61425f2336efSEd Maste default: 61435f2336efSEd Maste break; 61445f2336efSEd Maste }; 61455f2336efSEd Maste if (p != NULL) 61465f2336efSEd Maste strlcpy(desc, p, descsz); 61475f2336efSEd Maste } 61485f2336efSEd Maste static void 61495f2336efSEd Maste systrace_return_setargdesc(int sysnum, int ndx, char *desc, size_t descsz) 61505f2336efSEd Maste { 61515f2336efSEd Maste const char *p = NULL; 61525f2336efSEd Maste switch (sysnum) { 61535f2336efSEd Maste #define nosys linux_nosys 61545f2336efSEd Maste /* linux_setxattr */ 61555f2336efSEd Maste case 5: 6156a39cdcd7SEdward Tomasz Napierala if (ndx == 0 || ndx == 1) 6157a39cdcd7SEdward Tomasz Napierala p = "int"; 6158a39cdcd7SEdward Tomasz Napierala break; 61595f2336efSEd Maste /* linux_lsetxattr */ 61605f2336efSEd Maste case 6: 6161a39cdcd7SEdward Tomasz Napierala if (ndx == 0 || ndx == 1) 6162a39cdcd7SEdward Tomasz Napierala p = "int"; 6163a39cdcd7SEdward Tomasz Napierala break; 61645f2336efSEd Maste /* linux_fsetxattr */ 61655f2336efSEd Maste case 7: 6166a39cdcd7SEdward Tomasz Napierala if (ndx == 0 || ndx == 1) 6167a39cdcd7SEdward Tomasz Napierala p = "int"; 6168a39cdcd7SEdward Tomasz Napierala break; 61695f2336efSEd Maste /* linux_getxattr */ 61705f2336efSEd Maste case 8: 6171a39cdcd7SEdward Tomasz Napierala if (ndx == 0 || ndx == 1) 6172a39cdcd7SEdward Tomasz Napierala p = "int"; 6173a39cdcd7SEdward Tomasz Napierala break; 61745f2336efSEd Maste /* linux_lgetxattr */ 61755f2336efSEd Maste case 9: 6176a39cdcd7SEdward Tomasz Napierala if (ndx == 0 || ndx == 1) 6177a39cdcd7SEdward Tomasz Napierala p = "int"; 6178a39cdcd7SEdward Tomasz Napierala break; 61795f2336efSEd Maste /* linux_fgetxattr */ 61805f2336efSEd Maste case 10: 6181a39cdcd7SEdward Tomasz Napierala if (ndx == 0 || ndx == 1) 6182a39cdcd7SEdward Tomasz Napierala p = "int"; 6183a39cdcd7SEdward Tomasz Napierala break; 61845f2336efSEd Maste /* linux_listxattr */ 61855f2336efSEd Maste case 11: 6186a39cdcd7SEdward Tomasz Napierala if (ndx == 0 || ndx == 1) 6187a39cdcd7SEdward Tomasz Napierala p = "int"; 6188a39cdcd7SEdward Tomasz Napierala break; 61895f2336efSEd Maste /* linux_llistxattr */ 61905f2336efSEd Maste case 12: 6191a39cdcd7SEdward Tomasz Napierala if (ndx == 0 || ndx == 1) 6192a39cdcd7SEdward Tomasz Napierala p = "int"; 6193a39cdcd7SEdward Tomasz Napierala break; 61945f2336efSEd Maste /* linux_flistxattr */ 61955f2336efSEd Maste case 13: 6196a39cdcd7SEdward Tomasz Napierala if (ndx == 0 || ndx == 1) 6197a39cdcd7SEdward Tomasz Napierala p = "int"; 6198a39cdcd7SEdward Tomasz Napierala break; 61995f2336efSEd Maste /* linux_removexattr */ 62005f2336efSEd Maste case 14: 6201a39cdcd7SEdward Tomasz Napierala if (ndx == 0 || ndx == 1) 6202a39cdcd7SEdward Tomasz Napierala p = "int"; 6203a39cdcd7SEdward Tomasz Napierala break; 62045f2336efSEd Maste /* linux_lremovexattr */ 62055f2336efSEd Maste case 15: 6206a39cdcd7SEdward Tomasz Napierala if (ndx == 0 || ndx == 1) 6207a39cdcd7SEdward Tomasz Napierala p = "int"; 6208a39cdcd7SEdward Tomasz Napierala break; 62095f2336efSEd Maste /* linux_fremovexattr */ 62105f2336efSEd Maste case 16: 6211a39cdcd7SEdward Tomasz Napierala if (ndx == 0 || ndx == 1) 6212a39cdcd7SEdward Tomasz Napierala p = "int"; 6213a39cdcd7SEdward Tomasz Napierala break; 62145f2336efSEd Maste /* linux_getcwd */ 62155f2336efSEd Maste case 17: 62165f2336efSEd Maste if (ndx == 0 || ndx == 1) 62175f2336efSEd Maste p = "int"; 62185f2336efSEd Maste break; 62195f2336efSEd Maste /* linux_lookup_dcookie */ 62205f2336efSEd Maste case 18: 62215f2336efSEd Maste /* linux_eventfd2 */ 62225f2336efSEd Maste case 19: 62235f2336efSEd Maste if (ndx == 0 || ndx == 1) 62245f2336efSEd Maste p = "int"; 62255f2336efSEd Maste break; 62265f2336efSEd Maste /* linux_epoll_create1 */ 62275f2336efSEd Maste case 20: 62285f2336efSEd Maste if (ndx == 0 || ndx == 1) 62295f2336efSEd Maste p = "int"; 62305f2336efSEd Maste break; 62315f2336efSEd Maste /* linux_epoll_ctl */ 62325f2336efSEd Maste case 21: 62335f2336efSEd Maste if (ndx == 0 || ndx == 1) 62345f2336efSEd Maste p = "int"; 62355f2336efSEd Maste break; 62365f2336efSEd Maste /* linux_epoll_pwait */ 62375f2336efSEd Maste case 22: 62385f2336efSEd Maste if (ndx == 0 || ndx == 1) 62395f2336efSEd Maste p = "int"; 62405f2336efSEd Maste break; 6241c4db0baaSEd Maste /* dup */ 6242c4db0baaSEd Maste case 23: 6243c4db0baaSEd Maste if (ndx == 0 || ndx == 1) 6244c4db0baaSEd Maste p = "int"; 6245c4db0baaSEd Maste break; 62465f2336efSEd Maste /* linux_dup3 */ 62475f2336efSEd Maste case 24: 62485f2336efSEd Maste if (ndx == 0 || ndx == 1) 62495f2336efSEd Maste p = "int"; 62505f2336efSEd Maste break; 62515f2336efSEd Maste /* linux_fcntl */ 62525f2336efSEd Maste case 25: 62535f2336efSEd Maste if (ndx == 0 || ndx == 1) 62545f2336efSEd Maste p = "int"; 62555f2336efSEd Maste break; 62565f2336efSEd Maste /* linux_inotify_init1 */ 62575f2336efSEd Maste case 26: 62585f2336efSEd Maste if (ndx == 0 || ndx == 1) 62595f2336efSEd Maste p = "int"; 62605f2336efSEd Maste break; 62615f2336efSEd Maste /* linux_inotify_add_watch */ 62625f2336efSEd Maste case 27: 62635f2336efSEd Maste /* linux_inotify_rm_watch */ 62645f2336efSEd Maste case 28: 62655f2336efSEd Maste /* linux_ioctl */ 62665f2336efSEd Maste case 29: 62675f2336efSEd Maste if (ndx == 0 || ndx == 1) 62685f2336efSEd Maste p = "int"; 62695f2336efSEd Maste break; 62705f2336efSEd Maste /* linux_ioprio_set */ 62715f2336efSEd Maste case 30: 62725f2336efSEd Maste /* linux_ioprio_get */ 62735f2336efSEd Maste case 31: 62745f2336efSEd Maste /* flock */ 62755f2336efSEd Maste case 32: 62765f2336efSEd Maste if (ndx == 0 || ndx == 1) 62775f2336efSEd Maste p = "int"; 62785f2336efSEd Maste break; 62795f2336efSEd Maste /* linux_mknodat */ 62805f2336efSEd Maste case 33: 62815f2336efSEd Maste if (ndx == 0 || ndx == 1) 62825f2336efSEd Maste p = "int"; 62835f2336efSEd Maste break; 62845f2336efSEd Maste /* linux_mkdirat */ 62855f2336efSEd Maste case 34: 62865f2336efSEd Maste if (ndx == 0 || ndx == 1) 62875f2336efSEd Maste p = "int"; 62885f2336efSEd Maste break; 62895f2336efSEd Maste /* linux_unlinkat */ 62905f2336efSEd Maste case 35: 62915f2336efSEd Maste if (ndx == 0 || ndx == 1) 62925f2336efSEd Maste p = "int"; 62935f2336efSEd Maste break; 62945f2336efSEd Maste /* linux_symlinkat */ 62955f2336efSEd Maste case 36: 62965f2336efSEd Maste if (ndx == 0 || ndx == 1) 62975f2336efSEd Maste p = "int"; 62985f2336efSEd Maste break; 62995f2336efSEd Maste /* linux_linkat */ 63005f2336efSEd Maste case 37: 63015f2336efSEd Maste if (ndx == 0 || ndx == 1) 63025f2336efSEd Maste p = "int"; 63035f2336efSEd Maste break; 63045f2336efSEd Maste /* linux_renameat */ 63055f2336efSEd Maste case 38: 63065f2336efSEd Maste if (ndx == 0 || ndx == 1) 63075f2336efSEd Maste p = "int"; 63085f2336efSEd Maste break; 63095f2336efSEd Maste /* linux_mount */ 63105f2336efSEd Maste case 40: 63115f2336efSEd Maste if (ndx == 0 || ndx == 1) 63125f2336efSEd Maste p = "int"; 63135f2336efSEd Maste break; 63145f2336efSEd Maste /* linux_pivot_root */ 63155f2336efSEd Maste case 41: 63165f2336efSEd Maste /* linux_statfs */ 63175f2336efSEd Maste case 43: 63185f2336efSEd Maste if (ndx == 0 || ndx == 1) 63195f2336efSEd Maste p = "int"; 63205f2336efSEd Maste break; 63215f2336efSEd Maste /* linux_fstatfs */ 63225f2336efSEd Maste case 44: 63235f2336efSEd Maste if (ndx == 0 || ndx == 1) 63245f2336efSEd Maste p = "int"; 63255f2336efSEd Maste break; 63265f2336efSEd Maste /* linux_truncate */ 63275f2336efSEd Maste case 45: 63285f2336efSEd Maste if (ndx == 0 || ndx == 1) 63295f2336efSEd Maste p = "int"; 63305f2336efSEd Maste break; 63315f2336efSEd Maste /* linux_ftruncate */ 63325f2336efSEd Maste case 46: 63335f2336efSEd Maste if (ndx == 0 || ndx == 1) 63345f2336efSEd Maste p = "int"; 63355f2336efSEd Maste break; 63365f2336efSEd Maste /* linux_fallocate */ 63375f2336efSEd Maste case 47: 63385f2336efSEd Maste if (ndx == 0 || ndx == 1) 63395f2336efSEd Maste p = "int"; 63405f2336efSEd Maste break; 63415f2336efSEd Maste /* linux_faccessat */ 63425f2336efSEd Maste case 48: 63435f2336efSEd Maste if (ndx == 0 || ndx == 1) 63445f2336efSEd Maste p = "int"; 63455f2336efSEd Maste break; 63465f2336efSEd Maste /* linux_chdir */ 63475f2336efSEd Maste case 49: 63485f2336efSEd Maste if (ndx == 0 || ndx == 1) 63495f2336efSEd Maste p = "int"; 63505f2336efSEd Maste break; 63515f2336efSEd Maste /* fchdir */ 63525f2336efSEd Maste case 50: 63535f2336efSEd Maste if (ndx == 0 || ndx == 1) 63545f2336efSEd Maste p = "int"; 63555f2336efSEd Maste break; 63565f2336efSEd Maste /* chroot */ 63575f2336efSEd Maste case 51: 63585f2336efSEd Maste if (ndx == 0 || ndx == 1) 63595f2336efSEd Maste p = "int"; 63605f2336efSEd Maste break; 63615f2336efSEd Maste /* fchmod */ 63625f2336efSEd Maste case 52: 63635f2336efSEd Maste if (ndx == 0 || ndx == 1) 63645f2336efSEd Maste p = "int"; 63655f2336efSEd Maste break; 63665f2336efSEd Maste /* linux_fchmodat */ 63675f2336efSEd Maste case 53: 63685f2336efSEd Maste if (ndx == 0 || ndx == 1) 63695f2336efSEd Maste p = "int"; 63705f2336efSEd Maste break; 63715f2336efSEd Maste /* linux_fchownat */ 63725f2336efSEd Maste case 54: 63735f2336efSEd Maste if (ndx == 0 || ndx == 1) 63745f2336efSEd Maste p = "int"; 63755f2336efSEd Maste break; 63765f2336efSEd Maste /* fchown */ 63775f2336efSEd Maste case 55: 63785f2336efSEd Maste if (ndx == 0 || ndx == 1) 63795f2336efSEd Maste p = "int"; 63805f2336efSEd Maste break; 63815f2336efSEd Maste /* linux_openat */ 63825f2336efSEd Maste case 56: 63835f2336efSEd Maste if (ndx == 0 || ndx == 1) 63845f2336efSEd Maste p = "int"; 63855f2336efSEd Maste break; 63865f2336efSEd Maste /* close */ 63875f2336efSEd Maste case 57: 63885f2336efSEd Maste if (ndx == 0 || ndx == 1) 63895f2336efSEd Maste p = "int"; 63905f2336efSEd Maste break; 63915f2336efSEd Maste /* linux_vhangup */ 63925f2336efSEd Maste case 58: 63935f2336efSEd Maste /* linux_pipe2 */ 63945f2336efSEd Maste case 59: 63955f2336efSEd Maste if (ndx == 0 || ndx == 1) 63965f2336efSEd Maste p = "int"; 63975f2336efSEd Maste break; 63985f2336efSEd Maste /* linux_getdents64 */ 63995f2336efSEd Maste case 61: 64005f2336efSEd Maste if (ndx == 0 || ndx == 1) 64015f2336efSEd Maste p = "int"; 64025f2336efSEd Maste break; 64035f2336efSEd Maste /* linux_lseek */ 64045f2336efSEd Maste case 62: 64055f2336efSEd Maste if (ndx == 0 || ndx == 1) 64065f2336efSEd Maste p = "int"; 64075f2336efSEd Maste break; 64085f2336efSEd Maste /* read */ 64095f2336efSEd Maste case 63: 64105f2336efSEd Maste if (ndx == 0 || ndx == 1) 64115f2336efSEd Maste p = "int"; 64125f2336efSEd Maste break; 64135f2336efSEd Maste /* write */ 64145f2336efSEd Maste case 64: 64155f2336efSEd Maste if (ndx == 0 || ndx == 1) 64165f2336efSEd Maste p = "int"; 64175f2336efSEd Maste break; 64185f2336efSEd Maste /* readv */ 64195f2336efSEd Maste case 65: 64205f2336efSEd Maste if (ndx == 0 || ndx == 1) 64215f2336efSEd Maste p = "int"; 64225f2336efSEd Maste break; 64235f2336efSEd Maste /* writev */ 64245f2336efSEd Maste case 66: 64255f2336efSEd Maste if (ndx == 0 || ndx == 1) 64265f2336efSEd Maste p = "int"; 64275f2336efSEd Maste break; 64285f2336efSEd Maste /* linux_pread */ 64295f2336efSEd Maste case 67: 64305f2336efSEd Maste if (ndx == 0 || ndx == 1) 64315f2336efSEd Maste p = "int"; 64325f2336efSEd Maste break; 64335f2336efSEd Maste /* linux_pwrite */ 64345f2336efSEd Maste case 68: 64355f2336efSEd Maste if (ndx == 0 || ndx == 1) 64365f2336efSEd Maste p = "int"; 64375f2336efSEd Maste break; 64385f2336efSEd Maste /* linux_preadv */ 64395f2336efSEd Maste case 69: 64405f2336efSEd Maste if (ndx == 0 || ndx == 1) 64415f2336efSEd Maste p = "int"; 64425f2336efSEd Maste break; 64435f2336efSEd Maste /* linux_pwritev */ 64445f2336efSEd Maste case 70: 64455f2336efSEd Maste if (ndx == 0 || ndx == 1) 64465f2336efSEd Maste p = "int"; 64475f2336efSEd Maste break; 64485f2336efSEd Maste /* linux_sendfile */ 64495f2336efSEd Maste case 71: 64505f2336efSEd Maste if (ndx == 0 || ndx == 1) 64515f2336efSEd Maste p = "int"; 64525f2336efSEd Maste break; 64535f2336efSEd Maste /* linux_pselect6 */ 64545f2336efSEd Maste case 72: 64555f2336efSEd Maste if (ndx == 0 || ndx == 1) 64565f2336efSEd Maste p = "int"; 64575f2336efSEd Maste break; 64585f2336efSEd Maste /* linux_ppoll */ 64595f2336efSEd Maste case 73: 64605f2336efSEd Maste if (ndx == 0 || ndx == 1) 64615f2336efSEd Maste p = "int"; 64625f2336efSEd Maste break; 64635f2336efSEd Maste /* linux_signalfd4 */ 64645f2336efSEd Maste case 74: 64655f2336efSEd Maste /* linux_vmsplice */ 64665f2336efSEd Maste case 75: 64675f2336efSEd Maste /* linux_splice */ 64685f2336efSEd Maste case 76: 64693e9a2142SEdward Tomasz Napierala if (ndx == 0 || ndx == 1) 64703e9a2142SEdward Tomasz Napierala p = "int"; 64713e9a2142SEdward Tomasz Napierala break; 64725f2336efSEd Maste /* linux_tee */ 64735f2336efSEd Maste case 77: 64745f2336efSEd Maste /* linux_readlinkat */ 64755f2336efSEd Maste case 78: 64765f2336efSEd Maste if (ndx == 0 || ndx == 1) 64775f2336efSEd Maste p = "int"; 64785f2336efSEd Maste break; 64795f2336efSEd Maste /* linux_newfstatat */ 64805f2336efSEd Maste case 79: 64815f2336efSEd Maste if (ndx == 0 || ndx == 1) 64825f2336efSEd Maste p = "int"; 64835f2336efSEd Maste break; 64845f2336efSEd Maste /* linux_newfstat */ 64855f2336efSEd Maste case 80: 64865f2336efSEd Maste if (ndx == 0 || ndx == 1) 64875f2336efSEd Maste p = "int"; 64885f2336efSEd Maste break; 64895f2336efSEd Maste /* fsync */ 64905f2336efSEd Maste case 82: 64915f2336efSEd Maste if (ndx == 0 || ndx == 1) 64925f2336efSEd Maste p = "int"; 64935f2336efSEd Maste break; 64945f2336efSEd Maste /* linux_fdatasync */ 64955f2336efSEd Maste case 83: 64965f2336efSEd Maste if (ndx == 0 || ndx == 1) 64975f2336efSEd Maste p = "int"; 64985f2336efSEd Maste break; 64995f2336efSEd Maste /* linux_sync_file_range */ 65005f2336efSEd Maste case 84: 65010cde2b32SEdward Tomasz Napierala if (ndx == 0 || ndx == 1) 65020cde2b32SEdward Tomasz Napierala p = "int"; 65030cde2b32SEdward Tomasz Napierala break; 65045f2336efSEd Maste /* linux_timerfd_create */ 65055f2336efSEd Maste case 85: 65065f2336efSEd Maste if (ndx == 0 || ndx == 1) 65075f2336efSEd Maste p = "int"; 65085f2336efSEd Maste break; 65095f2336efSEd Maste /* linux_timerfd_settime */ 65105f2336efSEd Maste case 86: 65115f2336efSEd Maste if (ndx == 0 || ndx == 1) 65125f2336efSEd Maste p = "int"; 65135f2336efSEd Maste break; 65145f2336efSEd Maste /* linux_timerfd_gettime */ 65155f2336efSEd Maste case 87: 65165f2336efSEd Maste if (ndx == 0 || ndx == 1) 65175f2336efSEd Maste p = "int"; 65185f2336efSEd Maste break; 65195f2336efSEd Maste /* linux_utimensat */ 65205f2336efSEd Maste case 88: 65215f2336efSEd Maste if (ndx == 0 || ndx == 1) 65225f2336efSEd Maste p = "int"; 65235f2336efSEd Maste break; 65245f2336efSEd Maste /* acct */ 65255f2336efSEd Maste case 89: 65265f2336efSEd Maste if (ndx == 0 || ndx == 1) 65275f2336efSEd Maste p = "int"; 65285f2336efSEd Maste break; 65295f2336efSEd Maste /* linux_capget */ 65305f2336efSEd Maste case 90: 65315f2336efSEd Maste if (ndx == 0 || ndx == 1) 65325f2336efSEd Maste p = "int"; 65335f2336efSEd Maste break; 65345f2336efSEd Maste /* linux_capset */ 65355f2336efSEd Maste case 91: 65365f2336efSEd Maste if (ndx == 0 || ndx == 1) 65375f2336efSEd Maste p = "int"; 65385f2336efSEd Maste break; 65395f2336efSEd Maste /* linux_personality */ 65405f2336efSEd Maste case 92: 65415f2336efSEd Maste if (ndx == 0 || ndx == 1) 65425f2336efSEd Maste p = "int"; 65435f2336efSEd Maste break; 65445f2336efSEd Maste /* linux_exit */ 65455f2336efSEd Maste case 93: 65465f2336efSEd Maste if (ndx == 0 || ndx == 1) 65475f2336efSEd Maste p = "int"; 65485f2336efSEd Maste break; 65495f2336efSEd Maste /* linux_exit_group */ 65505f2336efSEd Maste case 94: 65515f2336efSEd Maste if (ndx == 0 || ndx == 1) 65525f2336efSEd Maste p = "int"; 65535f2336efSEd Maste break; 65545f2336efSEd Maste /* linux_waitid */ 65555f2336efSEd Maste case 95: 65565f2336efSEd Maste if (ndx == 0 || ndx == 1) 65575f2336efSEd Maste p = "int"; 65585f2336efSEd Maste break; 65595f2336efSEd Maste /* linux_set_tid_address */ 65605f2336efSEd Maste case 96: 65615f2336efSEd Maste if (ndx == 0 || ndx == 1) 65625f2336efSEd Maste p = "int"; 65635f2336efSEd Maste break; 65645f2336efSEd Maste /* linux_unshare */ 65655f2336efSEd Maste case 97: 65665f2336efSEd Maste /* linux_sys_futex */ 65675f2336efSEd Maste case 98: 65685f2336efSEd Maste if (ndx == 0 || ndx == 1) 65695f2336efSEd Maste p = "int"; 65705f2336efSEd Maste break; 65715f2336efSEd Maste /* linux_set_robust_list */ 65725f2336efSEd Maste case 99: 65735f2336efSEd Maste if (ndx == 0 || ndx == 1) 65745f2336efSEd Maste p = "int"; 65755f2336efSEd Maste break; 65765f2336efSEd Maste /* linux_get_robust_list */ 65775f2336efSEd Maste case 100: 65785f2336efSEd Maste if (ndx == 0 || ndx == 1) 65795f2336efSEd Maste p = "int"; 65805f2336efSEd Maste break; 65815f2336efSEd Maste /* linux_nanosleep */ 65825f2336efSEd Maste case 101: 65835f2336efSEd Maste if (ndx == 0 || ndx == 1) 65845f2336efSEd Maste p = "int"; 65855f2336efSEd Maste break; 65865f2336efSEd Maste /* linux_getitimer */ 65875f2336efSEd Maste case 102: 65885f2336efSEd Maste if (ndx == 0 || ndx == 1) 65895f2336efSEd Maste p = "int"; 65905f2336efSEd Maste break; 65915f2336efSEd Maste /* linux_setitimer */ 65925f2336efSEd Maste case 103: 65935f2336efSEd Maste if (ndx == 0 || ndx == 1) 65945f2336efSEd Maste p = "int"; 65955f2336efSEd Maste break; 65965f2336efSEd Maste /* linux_kexec_load */ 65975f2336efSEd Maste case 104: 65985f2336efSEd Maste /* linux_init_module */ 65995f2336efSEd Maste case 105: 66005f2336efSEd Maste /* linux_delete_module */ 66015f2336efSEd Maste case 106: 66025f2336efSEd Maste /* linux_timer_create */ 66035f2336efSEd Maste case 107: 66045f2336efSEd Maste if (ndx == 0 || ndx == 1) 66055f2336efSEd Maste p = "int"; 66065f2336efSEd Maste break; 66075f2336efSEd Maste /* linux_timer_gettime */ 66085f2336efSEd Maste case 108: 66095f2336efSEd Maste if (ndx == 0 || ndx == 1) 66105f2336efSEd Maste p = "int"; 66115f2336efSEd Maste break; 66125f2336efSEd Maste /* linux_timer_getoverrun */ 66135f2336efSEd Maste case 109: 66145f2336efSEd Maste if (ndx == 0 || ndx == 1) 66155f2336efSEd Maste p = "int"; 66165f2336efSEd Maste break; 66175f2336efSEd Maste /* linux_timer_settime */ 66185f2336efSEd Maste case 110: 66195f2336efSEd Maste if (ndx == 0 || ndx == 1) 66205f2336efSEd Maste p = "int"; 66215f2336efSEd Maste break; 66225f2336efSEd Maste /* linux_timer_delete */ 66235f2336efSEd Maste case 111: 66245f2336efSEd Maste if (ndx == 0 || ndx == 1) 66255f2336efSEd Maste p = "int"; 66265f2336efSEd Maste break; 66275f2336efSEd Maste /* linux_clock_settime */ 66285f2336efSEd Maste case 112: 66295f2336efSEd Maste if (ndx == 0 || ndx == 1) 66305f2336efSEd Maste p = "int"; 66315f2336efSEd Maste break; 66325f2336efSEd Maste /* linux_clock_gettime */ 66335f2336efSEd Maste case 113: 66345f2336efSEd Maste if (ndx == 0 || ndx == 1) 66355f2336efSEd Maste p = "int"; 66365f2336efSEd Maste break; 66375f2336efSEd Maste /* linux_clock_getres */ 66385f2336efSEd Maste case 114: 66395f2336efSEd Maste if (ndx == 0 || ndx == 1) 66405f2336efSEd Maste p = "int"; 66415f2336efSEd Maste break; 66425f2336efSEd Maste /* linux_clock_nanosleep */ 66435f2336efSEd Maste case 115: 66445f2336efSEd Maste if (ndx == 0 || ndx == 1) 66455f2336efSEd Maste p = "int"; 66465f2336efSEd Maste break; 66475f2336efSEd Maste /* linux_syslog */ 66485f2336efSEd Maste case 116: 66495f2336efSEd Maste if (ndx == 0 || ndx == 1) 66505f2336efSEd Maste p = "int"; 66515f2336efSEd Maste break; 66525f2336efSEd Maste /* linux_ptrace */ 66535f2336efSEd Maste case 117: 66545f2336efSEd Maste if (ndx == 0 || ndx == 1) 66555f2336efSEd Maste p = "int"; 66565f2336efSEd Maste break; 66575f2336efSEd Maste /* linux_sched_setparam */ 66585f2336efSEd Maste case 118: 66595f2336efSEd Maste if (ndx == 0 || ndx == 1) 66605f2336efSEd Maste p = "int"; 66615f2336efSEd Maste break; 66625f2336efSEd Maste /* linux_sched_setscheduler */ 66635f2336efSEd Maste case 119: 66645f2336efSEd Maste if (ndx == 0 || ndx == 1) 66655f2336efSEd Maste p = "int"; 66665f2336efSEd Maste break; 66675f2336efSEd Maste /* linux_sched_getscheduler */ 66685f2336efSEd Maste case 120: 66695f2336efSEd Maste if (ndx == 0 || ndx == 1) 66705f2336efSEd Maste p = "int"; 66715f2336efSEd Maste break; 66725f2336efSEd Maste /* linux_sched_getparam */ 66735f2336efSEd Maste case 121: 66745f2336efSEd Maste if (ndx == 0 || ndx == 1) 66755f2336efSEd Maste p = "int"; 66765f2336efSEd Maste break; 66775f2336efSEd Maste /* linux_sched_setaffinity */ 66785f2336efSEd Maste case 122: 66795f2336efSEd Maste if (ndx == 0 || ndx == 1) 66805f2336efSEd Maste p = "int"; 66815f2336efSEd Maste break; 66825f2336efSEd Maste /* linux_sched_getaffinity */ 66835f2336efSEd Maste case 123: 66845f2336efSEd Maste if (ndx == 0 || ndx == 1) 66855f2336efSEd Maste p = "int"; 66865f2336efSEd Maste break; 66875f2336efSEd Maste /* sched_yield */ 66885f2336efSEd Maste case 124: 66895f2336efSEd Maste /* linux_sched_get_priority_max */ 66905f2336efSEd Maste case 125: 66915f2336efSEd Maste if (ndx == 0 || ndx == 1) 66925f2336efSEd Maste p = "int"; 66935f2336efSEd Maste break; 66945f2336efSEd Maste /* linux_sched_get_priority_min */ 66955f2336efSEd Maste case 126: 66965f2336efSEd Maste if (ndx == 0 || ndx == 1) 66975f2336efSEd Maste p = "int"; 66985f2336efSEd Maste break; 66995f2336efSEd Maste /* linux_sched_rr_get_interval */ 67005f2336efSEd Maste case 127: 67015f2336efSEd Maste if (ndx == 0 || ndx == 1) 67025f2336efSEd Maste p = "int"; 67035f2336efSEd Maste break; 67045f2336efSEd Maste /* linux_kill */ 67055f2336efSEd Maste case 129: 67065f2336efSEd Maste if (ndx == 0 || ndx == 1) 67075f2336efSEd Maste p = "int"; 67085f2336efSEd Maste break; 67095f2336efSEd Maste /* linux_tkill */ 67105f2336efSEd Maste case 130: 67115f2336efSEd Maste if (ndx == 0 || ndx == 1) 67125f2336efSEd Maste p = "int"; 67135f2336efSEd Maste break; 67145f2336efSEd Maste /* linux_tgkill */ 67155f2336efSEd Maste case 131: 67165f2336efSEd Maste if (ndx == 0 || ndx == 1) 67175f2336efSEd Maste p = "int"; 67185f2336efSEd Maste break; 67195f2336efSEd Maste /* linux_sigaltstack */ 67205f2336efSEd Maste case 132: 67215f2336efSEd Maste if (ndx == 0 || ndx == 1) 67225f2336efSEd Maste p = "int"; 67235f2336efSEd Maste break; 67245f2336efSEd Maste /* linux_rt_sigsuspend */ 67255f2336efSEd Maste case 133: 67265f2336efSEd Maste if (ndx == 0 || ndx == 1) 67275f2336efSEd Maste p = "int"; 67285f2336efSEd Maste break; 67295f2336efSEd Maste /* linux_rt_sigaction */ 67305f2336efSEd Maste case 134: 67315f2336efSEd Maste if (ndx == 0 || ndx == 1) 67325f2336efSEd Maste p = "int"; 67335f2336efSEd Maste break; 67345f2336efSEd Maste /* linux_rt_sigprocmask */ 67355f2336efSEd Maste case 135: 67365f2336efSEd Maste if (ndx == 0 || ndx == 1) 67375f2336efSEd Maste p = "int"; 67385f2336efSEd Maste break; 67395f2336efSEd Maste /* linux_rt_sigpending */ 67405f2336efSEd Maste case 136: 67415f2336efSEd Maste if (ndx == 0 || ndx == 1) 67425f2336efSEd Maste p = "int"; 67435f2336efSEd Maste break; 67445f2336efSEd Maste /* linux_rt_sigtimedwait */ 67455f2336efSEd Maste case 137: 67465f2336efSEd Maste if (ndx == 0 || ndx == 1) 67475f2336efSEd Maste p = "int"; 67485f2336efSEd Maste break; 67495f2336efSEd Maste /* linux_rt_sigqueueinfo */ 67505f2336efSEd Maste case 138: 67515f2336efSEd Maste if (ndx == 0 || ndx == 1) 67525f2336efSEd Maste p = "int"; 67535f2336efSEd Maste break; 67545f2336efSEd Maste /* linux_rt_sigreturn */ 67555f2336efSEd Maste case 139: 67565f2336efSEd Maste /* setpriority */ 67575f2336efSEd Maste case 140: 67585f2336efSEd Maste if (ndx == 0 || ndx == 1) 67595f2336efSEd Maste p = "int"; 67605f2336efSEd Maste break; 67615f2336efSEd Maste /* linux_getpriority */ 67625f2336efSEd Maste case 141: 67635f2336efSEd Maste if (ndx == 0 || ndx == 1) 67645f2336efSEd Maste p = "int"; 67655f2336efSEd Maste break; 67665f2336efSEd Maste /* linux_reboot */ 67675f2336efSEd Maste case 142: 67685f2336efSEd Maste if (ndx == 0 || ndx == 1) 67695f2336efSEd Maste p = "int"; 67705f2336efSEd Maste break; 67715f2336efSEd Maste /* setregid */ 67725f2336efSEd Maste case 143: 67735f2336efSEd Maste if (ndx == 0 || ndx == 1) 67745f2336efSEd Maste p = "int"; 67755f2336efSEd Maste break; 67765f2336efSEd Maste /* setgid */ 67775f2336efSEd Maste case 144: 67785f2336efSEd Maste if (ndx == 0 || ndx == 1) 67795f2336efSEd Maste p = "int"; 67805f2336efSEd Maste break; 67815f2336efSEd Maste /* setreuid */ 67825f2336efSEd Maste case 145: 67835f2336efSEd Maste if (ndx == 0 || ndx == 1) 67845f2336efSEd Maste p = "int"; 67855f2336efSEd Maste break; 67865f2336efSEd Maste /* setuid */ 67875f2336efSEd Maste case 146: 67885f2336efSEd Maste if (ndx == 0 || ndx == 1) 67895f2336efSEd Maste p = "int"; 67905f2336efSEd Maste break; 67915f2336efSEd Maste /* setresuid */ 67925f2336efSEd Maste case 147: 67935f2336efSEd Maste if (ndx == 0 || ndx == 1) 67945f2336efSEd Maste p = "int"; 67955f2336efSEd Maste break; 67965f2336efSEd Maste /* getresuid */ 67975f2336efSEd Maste case 148: 67985f2336efSEd Maste if (ndx == 0 || ndx == 1) 67995f2336efSEd Maste p = "int"; 68005f2336efSEd Maste break; 68015f2336efSEd Maste /* setresgid */ 68025f2336efSEd Maste case 149: 68035f2336efSEd Maste if (ndx == 0 || ndx == 1) 68045f2336efSEd Maste p = "int"; 68055f2336efSEd Maste break; 68065f2336efSEd Maste /* getresgid */ 68075f2336efSEd Maste case 150: 68085f2336efSEd Maste if (ndx == 0 || ndx == 1) 68095f2336efSEd Maste p = "int"; 68105f2336efSEd Maste break; 68115f2336efSEd Maste /* linux_setfsuid */ 68125f2336efSEd Maste case 151: 68135f2336efSEd Maste if (ndx == 0 || ndx == 1) 68145f2336efSEd Maste p = "int"; 68155f2336efSEd Maste break; 68165f2336efSEd Maste /* linux_setfsgid */ 68175f2336efSEd Maste case 152: 68185f2336efSEd Maste if (ndx == 0 || ndx == 1) 68195f2336efSEd Maste p = "int"; 68205f2336efSEd Maste break; 68215f2336efSEd Maste /* linux_times */ 68225f2336efSEd Maste case 153: 68235f2336efSEd Maste if (ndx == 0 || ndx == 1) 68245f2336efSEd Maste p = "int"; 68255f2336efSEd Maste break; 68265f2336efSEd Maste /* setpgid */ 68275f2336efSEd Maste case 154: 68285f2336efSEd Maste if (ndx == 0 || ndx == 1) 68295f2336efSEd Maste p = "int"; 68305f2336efSEd Maste break; 68315f2336efSEd Maste /* getpgid */ 68325f2336efSEd Maste case 155: 68335f2336efSEd Maste if (ndx == 0 || ndx == 1) 68345f2336efSEd Maste p = "int"; 68355f2336efSEd Maste break; 68365f2336efSEd Maste /* linux_getsid */ 68375f2336efSEd Maste case 156: 68385f2336efSEd Maste if (ndx == 0 || ndx == 1) 68395f2336efSEd Maste p = "int"; 68405f2336efSEd Maste break; 68415f2336efSEd Maste /* setsid */ 68425f2336efSEd Maste case 157: 68435f2336efSEd Maste /* linux_getgroups */ 68445f2336efSEd Maste case 158: 68455f2336efSEd Maste if (ndx == 0 || ndx == 1) 68465f2336efSEd Maste p = "int"; 68475f2336efSEd Maste break; 68485f2336efSEd Maste /* linux_setgroups */ 68495f2336efSEd Maste case 159: 68505f2336efSEd Maste if (ndx == 0 || ndx == 1) 68515f2336efSEd Maste p = "int"; 68525f2336efSEd Maste break; 68535f2336efSEd Maste /* linux_newuname */ 68545f2336efSEd Maste case 160: 68555f2336efSEd Maste if (ndx == 0 || ndx == 1) 68565f2336efSEd Maste p = "int"; 68575f2336efSEd Maste break; 68585f2336efSEd Maste /* linux_sethostname */ 68595f2336efSEd Maste case 161: 68605f2336efSEd Maste if (ndx == 0 || ndx == 1) 68615f2336efSEd Maste p = "int"; 68625f2336efSEd Maste break; 68635f2336efSEd Maste /* linux_setdomainname */ 68645f2336efSEd Maste case 162: 68655f2336efSEd Maste if (ndx == 0 || ndx == 1) 68665f2336efSEd Maste p = "int"; 68675f2336efSEd Maste break; 68685f2336efSEd Maste /* linux_getrlimit */ 68695f2336efSEd Maste case 163: 68705f2336efSEd Maste if (ndx == 0 || ndx == 1) 68715f2336efSEd Maste p = "int"; 68725f2336efSEd Maste break; 68735f2336efSEd Maste /* linux_setrlimit */ 68745f2336efSEd Maste case 164: 68755f2336efSEd Maste if (ndx == 0 || ndx == 1) 68765f2336efSEd Maste p = "int"; 68775f2336efSEd Maste break; 68785f2336efSEd Maste /* getrusage */ 68795f2336efSEd Maste case 165: 68805f2336efSEd Maste if (ndx == 0 || ndx == 1) 68815f2336efSEd Maste p = "int"; 68825f2336efSEd Maste break; 68835f2336efSEd Maste /* umask */ 68845f2336efSEd Maste case 166: 68855f2336efSEd Maste if (ndx == 0 || ndx == 1) 68865f2336efSEd Maste p = "int"; 68875f2336efSEd Maste break; 68885f2336efSEd Maste /* linux_prctl */ 68895f2336efSEd Maste case 167: 68905f2336efSEd Maste if (ndx == 0 || ndx == 1) 68915f2336efSEd Maste p = "int"; 68925f2336efSEd Maste break; 68935f2336efSEd Maste /* linux_getcpu */ 68945f2336efSEd Maste case 168: 68955f2336efSEd Maste if (ndx == 0 || ndx == 1) 68965f2336efSEd Maste p = "int"; 68975f2336efSEd Maste break; 68985f2336efSEd Maste /* gettimeofday */ 68995f2336efSEd Maste case 169: 69005f2336efSEd Maste if (ndx == 0 || ndx == 1) 69015f2336efSEd Maste p = "int"; 69025f2336efSEd Maste break; 69035f2336efSEd Maste /* settimeofday */ 69045f2336efSEd Maste case 170: 69055f2336efSEd Maste if (ndx == 0 || ndx == 1) 69065f2336efSEd Maste p = "int"; 69075f2336efSEd Maste break; 69085f2336efSEd Maste /* linux_adjtimex */ 69095f2336efSEd Maste case 171: 69105f2336efSEd Maste /* linux_getpid */ 69115f2336efSEd Maste case 172: 69125f2336efSEd Maste /* linux_getppid */ 69135f2336efSEd Maste case 173: 69145f2336efSEd Maste /* linux_getuid */ 69155f2336efSEd Maste case 174: 69165f2336efSEd Maste /* geteuid */ 69175f2336efSEd Maste case 175: 69185f2336efSEd Maste /* linux_getgid */ 69195f2336efSEd Maste case 176: 69205f2336efSEd Maste /* getegid */ 69215f2336efSEd Maste case 177: 69225f2336efSEd Maste /* linux_gettid */ 69235f2336efSEd Maste case 178: 69245f2336efSEd Maste /* linux_sysinfo */ 69255f2336efSEd Maste case 179: 69265f2336efSEd Maste if (ndx == 0 || ndx == 1) 69275f2336efSEd Maste p = "int"; 69285f2336efSEd Maste break; 69295f2336efSEd Maste /* linux_mq_open */ 69305f2336efSEd Maste case 180: 6931a39cdcd7SEdward Tomasz Napierala if (ndx == 0 || ndx == 1) 6932a39cdcd7SEdward Tomasz Napierala p = "int"; 6933a39cdcd7SEdward Tomasz Napierala break; 69345f2336efSEd Maste /* linux_mq_unlink */ 69355f2336efSEd Maste case 181: 6936a39cdcd7SEdward Tomasz Napierala if (ndx == 0 || ndx == 1) 6937a39cdcd7SEdward Tomasz Napierala p = "int"; 6938a39cdcd7SEdward Tomasz Napierala break; 69395f2336efSEd Maste /* linux_mq_timedsend */ 69405f2336efSEd Maste case 182: 6941a39cdcd7SEdward Tomasz Napierala if (ndx == 0 || ndx == 1) 6942a39cdcd7SEdward Tomasz Napierala p = "int"; 6943a39cdcd7SEdward Tomasz Napierala break; 69445f2336efSEd Maste /* linux_mq_timedreceive */ 69455f2336efSEd Maste case 183: 6946a39cdcd7SEdward Tomasz Napierala if (ndx == 0 || ndx == 1) 6947a39cdcd7SEdward Tomasz Napierala p = "int"; 6948a39cdcd7SEdward Tomasz Napierala break; 69495f2336efSEd Maste /* linux_mq_notify */ 69505f2336efSEd Maste case 184: 6951a39cdcd7SEdward Tomasz Napierala if (ndx == 0 || ndx == 1) 6952a39cdcd7SEdward Tomasz Napierala p = "int"; 6953a39cdcd7SEdward Tomasz Napierala break; 69545f2336efSEd Maste /* linux_mq_getsetattr */ 69555f2336efSEd Maste case 185: 6956a39cdcd7SEdward Tomasz Napierala if (ndx == 0 || ndx == 1) 6957a39cdcd7SEdward Tomasz Napierala p = "int"; 6958a39cdcd7SEdward Tomasz Napierala break; 69595f2336efSEd Maste /* linux_msgget */ 69605f2336efSEd Maste case 186: 69615f2336efSEd Maste if (ndx == 0 || ndx == 1) 69625f2336efSEd Maste p = "int"; 69635f2336efSEd Maste break; 69645f2336efSEd Maste /* linux_msgctl */ 69655f2336efSEd Maste case 187: 69665f2336efSEd Maste if (ndx == 0 || ndx == 1) 69675f2336efSEd Maste p = "int"; 69685f2336efSEd Maste break; 69695f2336efSEd Maste /* linux_msgrcv */ 69705f2336efSEd Maste case 188: 69715f2336efSEd Maste if (ndx == 0 || ndx == 1) 69725f2336efSEd Maste p = "int"; 69735f2336efSEd Maste break; 69745f2336efSEd Maste /* linux_msgsnd */ 69755f2336efSEd Maste case 189: 69765f2336efSEd Maste if (ndx == 0 || ndx == 1) 69775f2336efSEd Maste p = "int"; 69785f2336efSEd Maste break; 69795f2336efSEd Maste /* linux_semget */ 69805f2336efSEd Maste case 190: 69815f2336efSEd Maste if (ndx == 0 || ndx == 1) 69825f2336efSEd Maste p = "int"; 69835f2336efSEd Maste break; 69845f2336efSEd Maste /* linux_semctl */ 69855f2336efSEd Maste case 191: 69865f2336efSEd Maste if (ndx == 0 || ndx == 1) 69875f2336efSEd Maste p = "int"; 69885f2336efSEd Maste break; 69895f2336efSEd Maste /* linux_semtimedop */ 69905f2336efSEd Maste case 192: 69915f2336efSEd Maste /* linux_semop */ 69925f2336efSEd Maste case 193: 69935f2336efSEd Maste if (ndx == 0 || ndx == 1) 69945f2336efSEd Maste p = "int"; 69955f2336efSEd Maste break; 69965f2336efSEd Maste /* linux_shmget */ 69975f2336efSEd Maste case 194: 69985f2336efSEd Maste if (ndx == 0 || ndx == 1) 69995f2336efSEd Maste p = "int"; 70005f2336efSEd Maste break; 70015f2336efSEd Maste /* linux_shmctl */ 70025f2336efSEd Maste case 195: 70035f2336efSEd Maste if (ndx == 0 || ndx == 1) 70045f2336efSEd Maste p = "int"; 70055f2336efSEd Maste break; 70065f2336efSEd Maste /* linux_shmat */ 70075f2336efSEd Maste case 196: 70085f2336efSEd Maste if (ndx == 0 || ndx == 1) 70095f2336efSEd Maste p = "int"; 70105f2336efSEd Maste break; 70115f2336efSEd Maste /* linux_shmdt */ 70125f2336efSEd Maste case 197: 70135f2336efSEd Maste if (ndx == 0 || ndx == 1) 70145f2336efSEd Maste p = "int"; 70155f2336efSEd Maste break; 70165f2336efSEd Maste /* linux_socket */ 70175f2336efSEd Maste case 198: 70185f2336efSEd Maste if (ndx == 0 || ndx == 1) 70195f2336efSEd Maste p = "int"; 70205f2336efSEd Maste break; 70215f2336efSEd Maste /* linux_socketpair */ 70225f2336efSEd Maste case 199: 70235f2336efSEd Maste if (ndx == 0 || ndx == 1) 70245f2336efSEd Maste p = "int"; 70255f2336efSEd Maste break; 70265f2336efSEd Maste /* linux_bind */ 70275f2336efSEd Maste case 200: 70285f2336efSEd Maste if (ndx == 0 || ndx == 1) 70295f2336efSEd Maste p = "int"; 70305f2336efSEd Maste break; 70315f2336efSEd Maste /* linux_listen */ 70325f2336efSEd Maste case 201: 70335f2336efSEd Maste if (ndx == 0 || ndx == 1) 70345f2336efSEd Maste p = "int"; 70355f2336efSEd Maste break; 70365f2336efSEd Maste /* linux_accept */ 70375f2336efSEd Maste case 202: 70385f2336efSEd Maste if (ndx == 0 || ndx == 1) 70395f2336efSEd Maste p = "int"; 70405f2336efSEd Maste break; 70415f2336efSEd Maste /* linux_connect */ 70425f2336efSEd Maste case 203: 70435f2336efSEd Maste if (ndx == 0 || ndx == 1) 70445f2336efSEd Maste p = "int"; 70455f2336efSEd Maste break; 70465f2336efSEd Maste /* linux_getsockname */ 70475f2336efSEd Maste case 204: 70485f2336efSEd Maste if (ndx == 0 || ndx == 1) 70495f2336efSEd Maste p = "int"; 70505f2336efSEd Maste break; 70515f2336efSEd Maste /* linux_getpeername */ 70525f2336efSEd Maste case 205: 70535f2336efSEd Maste if (ndx == 0 || ndx == 1) 70545f2336efSEd Maste p = "int"; 70555f2336efSEd Maste break; 70565f2336efSEd Maste /* linux_sendto */ 70575f2336efSEd Maste case 206: 70585f2336efSEd Maste if (ndx == 0 || ndx == 1) 70595f2336efSEd Maste p = "int"; 70605f2336efSEd Maste break; 70615f2336efSEd Maste /* linux_recvfrom */ 70625f2336efSEd Maste case 207: 70635f2336efSEd Maste if (ndx == 0 || ndx == 1) 70645f2336efSEd Maste p = "int"; 70655f2336efSEd Maste break; 70665f2336efSEd Maste /* linux_setsockopt */ 70675f2336efSEd Maste case 208: 70685f2336efSEd Maste if (ndx == 0 || ndx == 1) 70695f2336efSEd Maste p = "int"; 70705f2336efSEd Maste break; 70715f2336efSEd Maste /* linux_getsockopt */ 70725f2336efSEd Maste case 209: 70735f2336efSEd Maste if (ndx == 0 || ndx == 1) 70745f2336efSEd Maste p = "int"; 70755f2336efSEd Maste break; 70765f2336efSEd Maste /* linux_shutdown */ 70775f2336efSEd Maste case 210: 70785f2336efSEd Maste if (ndx == 0 || ndx == 1) 70795f2336efSEd Maste p = "int"; 70805f2336efSEd Maste break; 70815f2336efSEd Maste /* linux_sendmsg */ 70825f2336efSEd Maste case 211: 70835f2336efSEd Maste if (ndx == 0 || ndx == 1) 70845f2336efSEd Maste p = "int"; 70855f2336efSEd Maste break; 70865f2336efSEd Maste /* linux_recvmsg */ 70875f2336efSEd Maste case 212: 70885f2336efSEd Maste if (ndx == 0 || ndx == 1) 70895f2336efSEd Maste p = "int"; 70905f2336efSEd Maste break; 70915f2336efSEd Maste /* linux_brk */ 70925f2336efSEd Maste case 214: 70935f2336efSEd Maste if (ndx == 0 || ndx == 1) 70945f2336efSEd Maste p = "int"; 70955f2336efSEd Maste break; 70965f2336efSEd Maste /* munmap */ 70975f2336efSEd Maste case 215: 70985f2336efSEd Maste if (ndx == 0 || ndx == 1) 70995f2336efSEd Maste p = "int"; 71005f2336efSEd Maste break; 71015f2336efSEd Maste /* linux_mremap */ 71025f2336efSEd Maste case 216: 71035f2336efSEd Maste if (ndx == 0 || ndx == 1) 71045f2336efSEd Maste p = "int"; 71055f2336efSEd Maste break; 71065f2336efSEd Maste /* linux_add_key */ 71075f2336efSEd Maste case 217: 71085f2336efSEd Maste /* linux_request_key */ 71095f2336efSEd Maste case 218: 71105f2336efSEd Maste /* linux_keyctl */ 71115f2336efSEd Maste case 219: 71125f2336efSEd Maste /* linux_clone */ 71135f2336efSEd Maste case 220: 71145f2336efSEd Maste if (ndx == 0 || ndx == 1) 71155f2336efSEd Maste p = "int"; 71165f2336efSEd Maste break; 71175f2336efSEd Maste /* linux_execve */ 71185f2336efSEd Maste case 221: 71195f2336efSEd Maste if (ndx == 0 || ndx == 1) 71205f2336efSEd Maste p = "int"; 71215f2336efSEd Maste break; 71225f2336efSEd Maste /* linux_mmap2 */ 71235f2336efSEd Maste case 222: 71245f2336efSEd Maste if (ndx == 0 || ndx == 1) 71255f2336efSEd Maste p = "int"; 71265f2336efSEd Maste break; 71275f2336efSEd Maste /* linux_fadvise64 */ 71285f2336efSEd Maste case 223: 71295f2336efSEd Maste if (ndx == 0 || ndx == 1) 71305f2336efSEd Maste p = "int"; 71315f2336efSEd Maste break; 71325f2336efSEd Maste /* swapon */ 71335f2336efSEd Maste case 224: 71345f2336efSEd Maste if (ndx == 0 || ndx == 1) 71355f2336efSEd Maste p = "int"; 71365f2336efSEd Maste break; 71375f2336efSEd Maste /* linux_swapoff */ 71385f2336efSEd Maste case 225: 71395f2336efSEd Maste /* linux_mprotect */ 71405f2336efSEd Maste case 226: 71415f2336efSEd Maste if (ndx == 0 || ndx == 1) 71425f2336efSEd Maste p = "int"; 71435f2336efSEd Maste break; 71445f2336efSEd Maste /* linux_msync */ 71455f2336efSEd Maste case 227: 71465f2336efSEd Maste if (ndx == 0 || ndx == 1) 71475f2336efSEd Maste p = "int"; 71485f2336efSEd Maste break; 71495f2336efSEd Maste /* mlock */ 71505f2336efSEd Maste case 228: 71515f2336efSEd Maste if (ndx == 0 || ndx == 1) 71525f2336efSEd Maste p = "int"; 71535f2336efSEd Maste break; 71545f2336efSEd Maste /* munlock */ 71555f2336efSEd Maste case 229: 71565f2336efSEd Maste if (ndx == 0 || ndx == 1) 71575f2336efSEd Maste p = "int"; 71585f2336efSEd Maste break; 71595f2336efSEd Maste /* mlockall */ 71605f2336efSEd Maste case 230: 71615f2336efSEd Maste if (ndx == 0 || ndx == 1) 71625f2336efSEd Maste p = "int"; 71635f2336efSEd Maste break; 71645f2336efSEd Maste /* munlockall */ 71655f2336efSEd Maste case 231: 71665f2336efSEd Maste /* linux_mincore */ 71675f2336efSEd Maste case 232: 71685f2336efSEd Maste if (ndx == 0 || ndx == 1) 71695f2336efSEd Maste p = "int"; 71705f2336efSEd Maste break; 7171bafd96b8SEdward Tomasz Napierala /* linux_madvise */ 71725f2336efSEd Maste case 233: 71735f2336efSEd Maste if (ndx == 0 || ndx == 1) 71745f2336efSEd Maste p = "int"; 71755f2336efSEd Maste break; 71765f2336efSEd Maste /* linux_remap_file_pages */ 71775f2336efSEd Maste case 234: 71785f2336efSEd Maste /* linux_mbind */ 71795f2336efSEd Maste case 235: 71805f2336efSEd Maste /* linux_get_mempolicy */ 71815f2336efSEd Maste case 236: 71825f2336efSEd Maste /* linux_set_mempolicy */ 71835f2336efSEd Maste case 237: 71845f2336efSEd Maste /* linux_migrate_pages */ 71855f2336efSEd Maste case 238: 71865f2336efSEd Maste /* linux_move_pages */ 71875f2336efSEd Maste case 239: 71885f2336efSEd Maste /* linux_rt_tgsigqueueinfo */ 71895f2336efSEd Maste case 240: 71905f2336efSEd Maste if (ndx == 0 || ndx == 1) 71915f2336efSEd Maste p = "int"; 71925f2336efSEd Maste break; 71935f2336efSEd Maste /* linux_perf_event_open */ 71945f2336efSEd Maste case 241: 71955f2336efSEd Maste /* linux_accept4 */ 71965f2336efSEd Maste case 242: 71975f2336efSEd Maste if (ndx == 0 || ndx == 1) 71985f2336efSEd Maste p = "int"; 71995f2336efSEd Maste break; 72005f2336efSEd Maste /* linux_recvmmsg */ 72015f2336efSEd Maste case 243: 72025f2336efSEd Maste if (ndx == 0 || ndx == 1) 72035f2336efSEd Maste p = "int"; 72045f2336efSEd Maste break; 72055f2336efSEd Maste /* linux_wait4 */ 72065f2336efSEd Maste case 260: 72075f2336efSEd Maste if (ndx == 0 || ndx == 1) 72085f2336efSEd Maste p = "int"; 72095f2336efSEd Maste break; 72105f2336efSEd Maste /* linux_prlimit64 */ 72115f2336efSEd Maste case 261: 72125f2336efSEd Maste if (ndx == 0 || ndx == 1) 72135f2336efSEd Maste p = "int"; 72145f2336efSEd Maste break; 72155f2336efSEd Maste /* linux_fanotify_init */ 72165f2336efSEd Maste case 262: 72175f2336efSEd Maste /* linux_fanotify_mark */ 72185f2336efSEd Maste case 263: 72195f2336efSEd Maste /* linux_name_to_handle_at */ 72205f2336efSEd Maste case 264: 722177eb9841SConrad Meyer if (ndx == 0 || ndx == 1) 722277eb9841SConrad Meyer p = "int"; 722377eb9841SConrad Meyer break; 72245f2336efSEd Maste /* linux_open_by_handle_at */ 72255f2336efSEd Maste case 265: 722677eb9841SConrad Meyer if (ndx == 0 || ndx == 1) 722777eb9841SConrad Meyer p = "int"; 722877eb9841SConrad Meyer break; 72295f2336efSEd Maste /* linux_clock_adjtime */ 72305f2336efSEd Maste case 266: 72315f2336efSEd Maste /* linux_syncfs */ 72325f2336efSEd Maste case 267: 72335f2336efSEd Maste if (ndx == 0 || ndx == 1) 72345f2336efSEd Maste p = "int"; 72355f2336efSEd Maste break; 72365f2336efSEd Maste /* linux_setns */ 72375f2336efSEd Maste case 268: 72385f2336efSEd Maste if (ndx == 0 || ndx == 1) 72395f2336efSEd Maste p = "int"; 72405f2336efSEd Maste break; 72415f2336efSEd Maste /* linux_sendmmsg */ 72425f2336efSEd Maste case 269: 72435f2336efSEd Maste if (ndx == 0 || ndx == 1) 72445f2336efSEd Maste p = "int"; 72455f2336efSEd Maste break; 72465f2336efSEd Maste /* linux_process_vm_readv */ 72475f2336efSEd Maste case 270: 72485f2336efSEd Maste if (ndx == 0 || ndx == 1) 72495f2336efSEd Maste p = "int"; 72505f2336efSEd Maste break; 72515f2336efSEd Maste /* linux_process_vm_writev */ 72525f2336efSEd Maste case 271: 72535f2336efSEd Maste if (ndx == 0 || ndx == 1) 72545f2336efSEd Maste p = "int"; 72555f2336efSEd Maste break; 72565f2336efSEd Maste /* linux_kcmp */ 72575f2336efSEd Maste case 272: 72585f2336efSEd Maste if (ndx == 0 || ndx == 1) 72595f2336efSEd Maste p = "int"; 72605f2336efSEd Maste break; 72615f2336efSEd Maste /* linux_finit_module */ 72625f2336efSEd Maste case 273: 72635f2336efSEd Maste if (ndx == 0 || ndx == 1) 72645f2336efSEd Maste p = "int"; 72655f2336efSEd Maste break; 72665f2336efSEd Maste /* linux_sched_setattr */ 72675f2336efSEd Maste case 274: 72685f2336efSEd Maste if (ndx == 0 || ndx == 1) 72695f2336efSEd Maste p = "int"; 72705f2336efSEd Maste break; 72715f2336efSEd Maste /* linux_sched_getattr */ 72725f2336efSEd Maste case 275: 72735f2336efSEd Maste if (ndx == 0 || ndx == 1) 72745f2336efSEd Maste p = "int"; 72755f2336efSEd Maste break; 72765f2336efSEd Maste /* linux_renameat2 */ 72775f2336efSEd Maste case 276: 72785f2336efSEd Maste if (ndx == 0 || ndx == 1) 72795f2336efSEd Maste p = "int"; 72805f2336efSEd Maste break; 72815f2336efSEd Maste /* linux_seccomp */ 72825f2336efSEd Maste case 277: 72835f2336efSEd Maste if (ndx == 0 || ndx == 1) 72845f2336efSEd Maste p = "int"; 72855f2336efSEd Maste break; 72865f2336efSEd Maste /* linux_getrandom */ 72875f2336efSEd Maste case 278: 72885f2336efSEd Maste if (ndx == 0 || ndx == 1) 72895f2336efSEd Maste p = "int"; 72905f2336efSEd Maste break; 72915f2336efSEd Maste /* linux_memfd_create */ 72925f2336efSEd Maste case 279: 72935f2336efSEd Maste if (ndx == 0 || ndx == 1) 72945f2336efSEd Maste p = "int"; 72955f2336efSEd Maste break; 72965f2336efSEd Maste /* linux_bpf */ 72975f2336efSEd Maste case 280: 72985f2336efSEd Maste if (ndx == 0 || ndx == 1) 72995f2336efSEd Maste p = "int"; 73005f2336efSEd Maste break; 73015f2336efSEd Maste /* linux_execveat */ 73025f2336efSEd Maste case 281: 73035f2336efSEd Maste if (ndx == 0 || ndx == 1) 73045f2336efSEd Maste p = "int"; 73055f2336efSEd Maste break; 73065f2336efSEd Maste /* linux_userfaultfd */ 73075f2336efSEd Maste case 282: 73085f2336efSEd Maste if (ndx == 0 || ndx == 1) 73095f2336efSEd Maste p = "int"; 73105f2336efSEd Maste break; 73115f2336efSEd Maste /* linux_membarrier */ 73125f2336efSEd Maste case 283: 73135f2336efSEd Maste if (ndx == 0 || ndx == 1) 73145f2336efSEd Maste p = "int"; 73155f2336efSEd Maste break; 73165f2336efSEd Maste /* linux_mlock2 */ 73175f2336efSEd Maste case 284: 73185f2336efSEd Maste if (ndx == 0 || ndx == 1) 73195f2336efSEd Maste p = "int"; 73205f2336efSEd Maste break; 73215f2336efSEd Maste /* linux_copy_file_range */ 73225f2336efSEd Maste case 285: 73235f2336efSEd Maste if (ndx == 0 || ndx == 1) 73245f2336efSEd Maste p = "int"; 73255f2336efSEd Maste break; 73265f2336efSEd Maste /* linux_preadv2 */ 73275f2336efSEd Maste case 286: 73285f2336efSEd Maste if (ndx == 0 || ndx == 1) 73295f2336efSEd Maste p = "int"; 73305f2336efSEd Maste break; 73315f2336efSEd Maste /* linux_pwritev2 */ 73325f2336efSEd Maste case 287: 73335f2336efSEd Maste if (ndx == 0 || ndx == 1) 73345f2336efSEd Maste p = "int"; 73355f2336efSEd Maste break; 73365f2336efSEd Maste /* linux_pkey_mprotect */ 73375f2336efSEd Maste case 288: 73385f2336efSEd Maste if (ndx == 0 || ndx == 1) 73395f2336efSEd Maste p = "int"; 73405f2336efSEd Maste break; 73415f2336efSEd Maste /* linux_pkey_alloc */ 73425f2336efSEd Maste case 289: 73435f2336efSEd Maste if (ndx == 0 || ndx == 1) 73445f2336efSEd Maste p = "int"; 73455f2336efSEd Maste break; 73465f2336efSEd Maste /* linux_pkey_free */ 73475f2336efSEd Maste case 290: 73485f2336efSEd Maste if (ndx == 0 || ndx == 1) 73495f2336efSEd Maste p = "int"; 73505f2336efSEd Maste break; 7351c0f17173SEdward Tomasz Napierala /* linux_statx */ 7352c0f17173SEdward Tomasz Napierala case 291: 7353c0f17173SEdward Tomasz Napierala if (ndx == 0 || ndx == 1) 7354c0f17173SEdward Tomasz Napierala p = "int"; 7355c0f17173SEdward Tomasz Napierala break; 7356c0f17173SEdward Tomasz Napierala /* linux_io_pgetevents */ 7357c0f17173SEdward Tomasz Napierala case 292: 7358c0f17173SEdward Tomasz Napierala /* linux_rseq */ 7359c0f17173SEdward Tomasz Napierala case 293: 7360c0f17173SEdward Tomasz Napierala /* linux_kexec_file_load */ 7361c0f17173SEdward Tomasz Napierala case 294: 7362c0f17173SEdward Tomasz Napierala /* linux_pidfd_send_signal */ 7363c0f17173SEdward Tomasz Napierala case 424: 7364c0f17173SEdward Tomasz Napierala if (ndx == 0 || ndx == 1) 7365c0f17173SEdward Tomasz Napierala p = "int"; 7366c0f17173SEdward Tomasz Napierala break; 7367c0f17173SEdward Tomasz Napierala /* linux_io_uring_setup */ 7368c0f17173SEdward Tomasz Napierala case 425: 7369c0f17173SEdward Tomasz Napierala /* linux_io_uring_enter */ 7370c0f17173SEdward Tomasz Napierala case 426: 7371c0f17173SEdward Tomasz Napierala /* linux_io_uring_register */ 7372c0f17173SEdward Tomasz Napierala case 427: 7373c0f17173SEdward Tomasz Napierala /* linux_open_tree */ 7374c0f17173SEdward Tomasz Napierala case 428: 7375c0f17173SEdward Tomasz Napierala /* linux_move_mount */ 7376c0f17173SEdward Tomasz Napierala case 429: 7377c0f17173SEdward Tomasz Napierala /* linux_fsopen */ 7378c0f17173SEdward Tomasz Napierala case 430: 7379c0f17173SEdward Tomasz Napierala /* linux_fsconfig */ 7380c0f17173SEdward Tomasz Napierala case 431: 7381c0f17173SEdward Tomasz Napierala /* linux_fsmount */ 7382c0f17173SEdward Tomasz Napierala case 432: 7383c0f17173SEdward Tomasz Napierala /* linux_fspick */ 7384c0f17173SEdward Tomasz Napierala case 433: 7385c0f17173SEdward Tomasz Napierala /* linux_pidfd_open */ 7386c0f17173SEdward Tomasz Napierala case 434: 7387c0f17173SEdward Tomasz Napierala /* linux_clone3 */ 7388c0f17173SEdward Tomasz Napierala case 435: 7389b356030eSDmitry Chagin if (ndx == 0 || ndx == 1) 7390b356030eSDmitry Chagin p = "int"; 7391b356030eSDmitry Chagin break; 7392c0f17173SEdward Tomasz Napierala /* linux_close_range */ 7393c0f17173SEdward Tomasz Napierala case 436: 7394c0f17173SEdward Tomasz Napierala /* linux_openat2 */ 7395c0f17173SEdward Tomasz Napierala case 437: 7396c0f17173SEdward Tomasz Napierala /* linux_pidfd_getfd */ 7397c0f17173SEdward Tomasz Napierala case 438: 7398c0f17173SEdward Tomasz Napierala /* linux_faccessat2 */ 7399c0f17173SEdward Tomasz Napierala case 439: 7400bee191e4SDmitry Chagin if (ndx == 0 || ndx == 1) 7401bee191e4SDmitry Chagin p = "int"; 7402bee191e4SDmitry Chagin break; 7403c0f17173SEdward Tomasz Napierala /* linux_process_madvise */ 7404c0f17173SEdward Tomasz Napierala case 440: 7405c0f17173SEdward Tomasz Napierala /* linux_epoll_pwait2 */ 7406c0f17173SEdward Tomasz Napierala case 441: 7407c0f17173SEdward Tomasz Napierala /* linux_mount_setattr */ 7408c0f17173SEdward Tomasz Napierala case 442: 74095f2336efSEd Maste default: 74105f2336efSEd Maste break; 74115f2336efSEd Maste }; 74125f2336efSEd Maste if (p != NULL) 74135f2336efSEd Maste strlcpy(desc, p, descsz); 74145f2336efSEd Maste } 7415