Home
last modified time | relevance | path

Searched refs:uts (Results 1 – 4 of 4) sorted by relevance

/kernel/time/
Dtime.c783 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/
Dsignal.c3545 const struct __kernel_timespec __user *, uts, in SYSCALL_DEFINE4() argument
3560 if (uts) { in SYSCALL_DEFINE4()
3561 if (get_timespec64(&ts, uts)) in SYSCALL_DEFINE4()
3565 ret = do_sigtimedwait(&these, &info, uts ? &ts : NULL); in SYSCALL_DEFINE4()
3578 const struct old_timespec32 __user *, uts, in SYSCALL_DEFINE4() argument
3592 if (uts) { in SYSCALL_DEFINE4()
3593 if (get_old_timespec32(&ts, uts)) in SYSCALL_DEFINE4()
3597 ret = do_sigtimedwait(&these, &info, uts ? &ts : NULL); in SYSCALL_DEFINE4()
3611 struct __kernel_timespec __user *, uts, compat_size_t, sigsetsize) in COMPAT_SYSCALL_DEFINE4() argument
3624 if (uts) { in COMPAT_SYSCALL_DEFINE4()
[all …]
/kernel/power/
Dpower.h9 struct new_utsname uts; member
Dsnapshot.c2022 memcpy(&info->uts, init_utsname(), sizeof(struct new_utsname)); in init_header_complete()
2031 if (strcmp(info->uts.sysname,init_utsname()->sysname)) in check_image_kernel()
2033 if (strcmp(info->uts.release,init_utsname()->release)) in check_image_kernel()
2035 if (strcmp(info->uts.version,init_utsname()->version)) in check_image_kernel()
2037 if (strcmp(info->uts.machine,init_utsname()->machine)) in check_image_kernel()