Lines Matching refs:v
1736 struct compat_semid64_ds v; in copy_compat_semid_to_user() local
1737 memset(&v, 0, sizeof(v)); in copy_compat_semid_to_user()
1738 to_compat_ipc64_perm(&v.sem_perm, &in->sem_perm); in copy_compat_semid_to_user()
1739 v.sem_otime = lower_32_bits(in->sem_otime); in copy_compat_semid_to_user()
1740 v.sem_otime_high = upper_32_bits(in->sem_otime); in copy_compat_semid_to_user()
1741 v.sem_ctime = lower_32_bits(in->sem_ctime); in copy_compat_semid_to_user()
1742 v.sem_ctime_high = upper_32_bits(in->sem_ctime); in copy_compat_semid_to_user()
1743 v.sem_nsems = in->sem_nsems; in copy_compat_semid_to_user()
1744 return copy_to_user(buf, &v, sizeof(v)); in copy_compat_semid_to_user()
1746 struct compat_semid_ds v; in copy_compat_semid_to_user() local
1747 memset(&v, 0, sizeof(v)); in copy_compat_semid_to_user()
1748 to_compat_ipc_perm(&v.sem_perm, &in->sem_perm); in copy_compat_semid_to_user()
1749 v.sem_otime = in->sem_otime; in copy_compat_semid_to_user()
1750 v.sem_ctime = in->sem_ctime; in copy_compat_semid_to_user()
1751 v.sem_nsems = in->sem_nsems; in copy_compat_semid_to_user()
1752 return copy_to_user(buf, &v, sizeof(v)); in copy_compat_semid_to_user()