Lines Matching refs:v
1754 struct compat_semid64_ds v; in copy_compat_semid_to_user() local
1755 memset(&v, 0, sizeof(v)); in copy_compat_semid_to_user()
1756 to_compat_ipc64_perm(&v.sem_perm, &in->sem_perm); in copy_compat_semid_to_user()
1757 v.sem_otime = lower_32_bits(in->sem_otime); in copy_compat_semid_to_user()
1758 v.sem_otime_high = upper_32_bits(in->sem_otime); in copy_compat_semid_to_user()
1759 v.sem_ctime = lower_32_bits(in->sem_ctime); in copy_compat_semid_to_user()
1760 v.sem_ctime_high = upper_32_bits(in->sem_ctime); in copy_compat_semid_to_user()
1761 v.sem_nsems = in->sem_nsems; in copy_compat_semid_to_user()
1762 return copy_to_user(buf, &v, sizeof(v)); in copy_compat_semid_to_user()
1764 struct compat_semid_ds v; in copy_compat_semid_to_user() local
1765 memset(&v, 0, sizeof(v)); in copy_compat_semid_to_user()
1766 to_compat_ipc_perm(&v.sem_perm, &in->sem_perm); in copy_compat_semid_to_user()
1767 v.sem_otime = in->sem_otime; in copy_compat_semid_to_user()
1768 v.sem_ctime = in->sem_ctime; in copy_compat_semid_to_user()
1769 v.sem_nsems = in->sem_nsems; in copy_compat_semid_to_user()
1770 return copy_to_user(buf, &v, sizeof(v)); in copy_compat_semid_to_user()