Home
last modified time | relevance | path

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

/qemu/linux-user/
H A Dsyscall.c7000 struct target_f_owner_ex *target_fox; in do_fcntl() local
7072 if (!lock_user_struct(VERIFY_WRITE, target_fox, arg, 0)) in do_fcntl()
7074 target_fox->type = tswap32(fox.type); in do_fcntl()
7075 target_fox->pid = tswap32(fox.pid); in do_fcntl()
7076 unlock_user_struct(target_fox, arg, 1); in do_fcntl()
7083 if (!lock_user_struct(VERIFY_READ, target_fox, arg, 1)) in do_fcntl()
7085 fox.type = tswap32(target_fox->type); in do_fcntl()
7086 fox.pid = tswap32(target_fox->pid); in do_fcntl()
7087 unlock_user_struct(target_fox, arg, 0); in do_fcntl()