Searched refs:target_schp (Results 1 – 1 of 1) sorted by relevance
/openbmc/qemu/linux-user/ |
H A D | syscall.c | 11442 struct target_sched_param *target_schp; in _syscall2() local 11448 if (!lock_user_struct(VERIFY_READ, target_schp, arg2, 1)) { in _syscall2() 11451 schp.sched_priority = tswap32(target_schp->sched_priority); in _syscall2() 11452 unlock_user_struct(target_schp, arg2, 0); in _syscall2() 11457 struct target_sched_param *target_schp; in _syscall2() local 11465 if (!lock_user_struct(VERIFY_WRITE, target_schp, arg2, 0)) { in _syscall2() 11468 target_schp->sched_priority = tswap32(schp.sched_priority); in _syscall2() 11469 unlock_user_struct(target_schp, arg2, 1); in _syscall2() 11475 struct target_sched_param *target_schp; in _syscall2() local 11480 if (!lock_user_struct(VERIFY_READ, target_schp, arg3, 1)) { in _syscall2() [all …]
|