Home
last modified time | relevance | path

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

/openbmc/openbmc/poky/meta/recipes-devtools/qemu/qemu/
H A D0002-linux-user-Replace-use-of-lfs64-related-functions-an.patch201 struct target_f_owner_ex *target_fox;
/openbmc/qemu/linux-user/
H A Dsyscall.c6994 struct target_f_owner_ex *target_fox; in do_fcntl() local
7066 if (!lock_user_struct(VERIFY_WRITE, target_fox, arg, 0)) in do_fcntl()
7068 target_fox->type = tswap32(fox.type); in do_fcntl()
7069 target_fox->pid = tswap32(fox.pid); in do_fcntl()
7070 unlock_user_struct(target_fox, arg, 1); in do_fcntl()
7077 if (!lock_user_struct(VERIFY_READ, target_fox, arg, 1)) in do_fcntl()
7079 fox.type = tswap32(target_fox->type); in do_fcntl()
7080 fox.pid = tswap32(target_fox->pid); in do_fcntl()
7081 unlock_user_struct(target_fox, arg, 0); in do_fcntl()