Searched refs:target_stfs (Results 1 – 1 of 1) sorted by relevance
/openbmc/qemu/linux-user/ |
H A D | syscall.c | 10715 struct target_statfs *target_stfs; in _syscall2() local 10717 if (!lock_user_struct(VERIFY_WRITE, target_stfs, arg2, 0)) in _syscall2() 10719 __put_user(stfs.f_type, &target_stfs->f_type); in _syscall2() 10720 __put_user(stfs.f_bsize, &target_stfs->f_bsize); in _syscall2() 10721 __put_user(stfs.f_blocks, &target_stfs->f_blocks); in _syscall2() 10722 __put_user(stfs.f_bfree, &target_stfs->f_bfree); in _syscall2() 10723 __put_user(stfs.f_bavail, &target_stfs->f_bavail); in _syscall2() 10724 __put_user(stfs.f_files, &target_stfs->f_files); in _syscall2() 10725 __put_user(stfs.f_ffree, &target_stfs->f_ffree); in _syscall2() 10726 __put_user(stfs.f_fsid.__val[0], &target_stfs->f_fsid.val[0]); in _syscall2() [all …]
|