Searched refs:uts (Results 1 – 4 of 4) sorted by relevance
/kernel/time/ |
D | time.c | 783 const struct __kernel_timespec __user *uts) in get_timespec64() argument 788 ret = copy_from_user(&kts, uts, sizeof(kts)); in get_timespec64() 806 struct __kernel_timespec __user *uts) in put_timespec64() argument 813 return copy_to_user(uts, &kts, sizeof(kts)) ? -EFAULT : 0; in put_timespec64() 843 int get_old_timespec32(struct timespec64 *ts, const void __user *uts) in get_old_timespec32() argument 846 return copy_from_user(ts, uts, sizeof(*ts)) ? -EFAULT : 0; in get_old_timespec32() 848 return __get_old_timespec32(ts, uts); in get_old_timespec32() 852 int put_old_timespec32(const struct timespec64 *ts, void __user *uts) in put_old_timespec32() argument 855 return copy_to_user(uts, ts, sizeof(*ts)) ? -EFAULT : 0; in put_old_timespec32() 857 return __put_old_timespec32(ts, uts); in put_old_timespec32()
|
/kernel/ |
D | signal.c | 3651 const struct __kernel_timespec __user *, uts, in SYSCALL_DEFINE4() argument 3666 if (uts) { in SYSCALL_DEFINE4() 3667 if (get_timespec64(&ts, uts)) in SYSCALL_DEFINE4() 3671 ret = do_sigtimedwait(&these, &info, uts ? &ts : NULL); in SYSCALL_DEFINE4() 3684 const struct old_timespec32 __user *, uts, in SYSCALL_DEFINE4() argument 3698 if (uts) { in SYSCALL_DEFINE4() 3699 if (get_old_timespec32(&ts, uts)) in SYSCALL_DEFINE4() 3703 ret = do_sigtimedwait(&these, &info, uts ? &ts : NULL); in SYSCALL_DEFINE4() 3717 struct __kernel_timespec __user *, uts, compat_size_t, sigsetsize) in COMPAT_SYSCALL_DEFINE4() argument 3730 if (uts) { in COMPAT_SYSCALL_DEFINE4() [all …]
|
/kernel/power/ |
D | power.h | 11 struct new_utsname uts; member
|
D | snapshot.c | 2111 memcpy(&info->uts, init_utsname(), sizeof(struct new_utsname)); in init_header_complete() 2120 if (strcmp(info->uts.sysname,init_utsname()->sysname)) in check_image_kernel() 2122 if (strcmp(info->uts.release,init_utsname()->release)) in check_image_kernel() 2124 if (strcmp(info->uts.version,init_utsname()->version)) in check_image_kernel() 2126 if (strcmp(info->uts.machine,init_utsname()->machine)) in check_image_kernel()
|