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