Searched refs:target_schp (Results 1 – 1 of 1) sorted by relevance
/openbmc/qemu/linux-user/ |
H A D | syscall.c | 11439 struct target_sched_param *target_schp; in _syscall2() local 11445 if (!lock_user_struct(VERIFY_READ, target_schp, arg2, 1)) { in _syscall2() 11448 schp.sched_priority = tswap32(target_schp->sched_priority); in _syscall2() 11449 unlock_user_struct(target_schp, arg2, 0); in _syscall2() 11454 struct target_sched_param *target_schp; in _syscall2() local 11462 if (!lock_user_struct(VERIFY_WRITE, target_schp, arg2, 0)) { in _syscall2() 11465 target_schp->sched_priority = tswap32(schp.sched_priority); in _syscall2() 11466 unlock_user_struct(target_schp, arg2, 1); in _syscall2() 11472 struct target_sched_param *target_schp; in _syscall2() local 11477 if (!lock_user_struct(VERIFY_READ, target_schp, arg3, 1)) { in _syscall2() [all …]
|