Home
last modified time | relevance | path

Searched refs:target_fox (Results 1 – 1 of 1) sorted by relevance

/openbmc/qemu/linux-user/
H A Dsyscall.c7021 struct target_f_owner_ex *target_fox; in do_fcntl() local
7093 if (!lock_user_struct(VERIFY_WRITE, target_fox, arg, 0)) in do_fcntl()
7095 target_fox->type = tswap32(fox.type); in do_fcntl()
7096 target_fox->pid = tswap32(fox.pid); in do_fcntl()
7097 unlock_user_struct(target_fox, arg, 1); in do_fcntl()
7104 if (!lock_user_struct(VERIFY_READ, target_fox, arg, 1)) in do_fcntl()
7106 fox.type = tswap32(target_fox->type); in do_fcntl()
7107 fox.pid = tswap32(target_fox->pid); in do_fcntl()
7108 unlock_user_struct(target_fox, arg, 0); in do_fcntl()