/Linux-v5.10/tools/power/cpupower/utils/ |
D | cpupower-set.c | 35 struct utsname uts; in cmd_set() local 46 ret = uname(&uts); in cmd_set() 47 if (!ret && (!strcmp(uts.machine, "ppc64le") || in cmd_set() 48 !strcmp(uts.machine, "ppc64"))) { in cmd_set()
|
D | cpupower-info.c | 34 struct utsname uts; in cmd_info() local 44 ret = uname(&uts); in cmd_info() 45 if (!ret && (!strcmp(uts.machine, "ppc64le") || in cmd_info() 46 !strcmp(uts.machine, "ppc64"))) { in cmd_info()
|
D | cpupower.c | 177 struct utsname uts; in main() local 212 ret = uname(&uts); in main() 214 if (!ret && !strcmp(uts.machine, "x86_64") && in main()
|
/Linux-v5.10/tools/perf/util/ |
D | env.c | 280 struct utsname uts; in perf_env__read_arch() local 285 if (!uname(&uts)) in perf_env__read_arch() 286 env->arch = strdup(uts.machine); in perf_env__read_arch() 351 static struct utsname uts = { .machine[0] = '\0', }; in perf_env__arch() local 352 if (uts.machine[0] == '\0' && uname(&uts) < 0) in perf_env__arch() 354 arch_name = uts.machine; in perf_env__arch()
|
D | cputopo.c | 158 struct utsname uts; in has_die_topology() local 160 if (uname(&uts) < 0) in has_die_topology() 163 if (strncmp(uts.machine, "x86_64", 6)) in has_die_topology()
|
D | header.c | 333 struct utsname uts; in write_hostname() local 336 ret = uname(&uts); in write_hostname() 340 return do_write_string(ff, uts.nodename); in write_hostname() 346 struct utsname uts; in write_osrelease() local 349 ret = uname(&uts); in write_osrelease() 353 return do_write_string(ff, uts.release); in write_osrelease() 359 struct utsname uts; in write_arch() local 362 ret = uname(&uts); in write_arch() 366 return do_write_string(ff, uts.machine); in write_arch()
|
D | symbol.c | 2323 struct utsname uts; in vmlinux_path__init() local 2344 if (uname(&uts) < 0) in vmlinux_path__init() 2347 kernel_version = uts.release; in vmlinux_path__init()
|
/Linux-v5.10/kernel/time/ |
D | time.c | 782 const struct __kernel_timespec __user *uts) in get_timespec64() argument 787 ret = copy_from_user(&kts, uts, sizeof(kts)); in get_timespec64() 805 struct __kernel_timespec __user *uts) in put_timespec64() argument 812 return copy_to_user(uts, &kts, sizeof(kts)) ? -EFAULT : 0; in put_timespec64() 842 int get_old_timespec32(struct timespec64 *ts, const void __user *uts) in get_old_timespec32() argument 845 return copy_from_user(ts, uts, sizeof(*ts)) ? -EFAULT : 0; in get_old_timespec32() 847 return __get_old_timespec32(ts, uts); in get_old_timespec32() 851 int put_old_timespec32(const struct timespec64 *ts, void __user *uts) in put_old_timespec32() argument 854 return copy_to_user(uts, ts, sizeof(*ts)) ? -EFAULT : 0; in put_old_timespec32() 856 return __put_old_timespec32(ts, uts); in put_old_timespec32()
|
/Linux-v5.10/include/linux/ |
D | time.h | 12 const struct __kernel_timespec __user *uts); 14 struct __kernel_timespec __user *uts);
|
D | compat.h | 667 struct old_timespec32 __user *uts, compat_size_t sigsetsize); 670 struct __kernel_timespec __user *uts, compat_size_t sigsetsize);
|
D | syscalls.h | 696 const struct __kernel_timespec __user *uts, 700 const struct old_timespec32 __user *uts,
|
/Linux-v5.10/tools/testing/selftests/powerpc/ |
D | utils.c | 129 struct utsname uts; in is_ppc64le() local 133 rc = uname(&uts); in is_ppc64le() 139 return strcmp(uts.machine, "ppc64le") == 0; in is_ppc64le()
|
/Linux-v5.10/kernel/ |
D | signal.c | 3516 const struct __kernel_timespec __user *, uts, in SYSCALL_DEFINE4() argument 3531 if (uts) { in SYSCALL_DEFINE4() 3532 if (get_timespec64(&ts, uts)) in SYSCALL_DEFINE4() 3536 ret = do_sigtimedwait(&these, &info, uts ? &ts : NULL); in SYSCALL_DEFINE4() 3549 const struct old_timespec32 __user *, uts, in SYSCALL_DEFINE4() argument 3563 if (uts) { in SYSCALL_DEFINE4() 3564 if (get_old_timespec32(&ts, uts)) in SYSCALL_DEFINE4() 3568 ret = do_sigtimedwait(&these, &info, uts ? &ts : NULL); in SYSCALL_DEFINE4() 3582 struct __kernel_timespec __user *, uts, compat_size_t, sigsetsize) in COMPAT_SYSCALL_DEFINE4() argument 3595 if (uts) { in COMPAT_SYSCALL_DEFINE4() [all …]
|
/Linux-v5.10/kernel/power/ |
D | power.h | 9 struct new_utsname uts; member
|
D | snapshot.c | 2021 memcpy(&info->uts, init_utsname(), sizeof(struct new_utsname)); in init_header_complete() 2030 if (strcmp(info->uts.sysname,init_utsname()->sysname)) in check_image_kernel() 2032 if (strcmp(info->uts.release,init_utsname()->release)) in check_image_kernel() 2034 if (strcmp(info->uts.version,init_utsname()->version)) in check_image_kernel() 2036 if (strcmp(info->uts.machine,init_utsname()->machine)) in check_image_kernel()
|
/Linux-v5.10/drivers/tty/serial/ |
D | imx.c | 1059 u32 ucr3, uts; in imx_uart_set_mctrl() local 1088 uts = imx_uart_readl(sport, imx_uart_uts_reg(sport)) & ~UTS_LOOP; in imx_uart_set_mctrl() 1090 uts |= UTS_LOOP; in imx_uart_set_mctrl() 1091 imx_uart_writel(sport, uts, imx_uart_uts_reg(sport)); in imx_uart_set_mctrl() 1594 int i = 100, ubir, ubmr, uts; in imx_uart_flush_buffer() local 1625 uts = imx_uart_readl(sport, IMX21_UTS); in imx_uart_flush_buffer() 1637 imx_uart_writel(sport, uts, IMX21_UTS); in imx_uart_flush_buffer()
|
/Linux-v5.10/tools/perf/ |
D | builtin-top.c | 169 struct utsname uts; in ui__warn_map_erange() local 170 int err = uname(&uts); in ui__warn_map_erange() 186 err ? "[unknown]" : uts.machine, in ui__warn_map_erange() 187 err ? "[unknown]" : uts.release, perf_version_string); in ui__warn_map_erange()
|
D | builtin-script.c | 3439 struct utsname uts; in cmd_script() local 3816 uname(&uts); in cmd_script() 3818 !strcmp(uts.machine, session->header.env.arch) || in cmd_script() 3819 (!strcmp(uts.machine, "x86_64") && in cmd_script()
|
/Linux-v5.10/tools/lib/bpf/ |
D | libbpf.c | 1657 struct utsname uts; in bpf_object__read_kconfig_file() local 1661 uname(&uts); in bpf_object__read_kconfig_file() 1662 len = snprintf(buf, PATH_MAX, "/boot/config-%s", uts.release); in bpf_object__read_kconfig_file()
|