/linux/tools/power/cpupower/utils/ |
H A 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()
|
H A D | cpupower-set.c | 38 struct utsname uts; in cmd_set() local 53 ret = uname(&uts); in cmd_set() 54 if (!ret && (!strcmp(uts.machine, "ppc64le") || in cmd_set() 55 !strcmp(uts.machine, "ppc64"))) { in cmd_set()
|
H A D | cpupower.c | 180 struct utsname uts; in main() local 217 ret = uname(&uts); in main() 219 if (!ret && !strcmp(uts.machine, "x86_64") && in main()
|
/linux/include/linux/ |
H A D | time.h | 12 const struct __kernel_timespec __user *uts); 14 struct __kernel_timespec __user *uts);
|
H A D | syscalls.h | 671 const struct __kernel_timespec __user *uts, 675 const struct old_timespec32 __user *uts,
|
/linux/tools/perf/util/ |
H A D | env.c | 392 struct utsname uts; in perf_env__read_arch() 397 if (!uname(&uts)) in perf_env__read_arch() 398 env->arch = strdup(uts.machine); in perf_env__read_arch() 465 static struct utsname uts = { .machine[0] = '\0', }; in perf_env__arch() 466 if (uts.machine[0] == '\0' && uname(&uts) < 0) in perf_env__arch() 468 arch_name = uts.machine; in perf_env__arch() 389 struct utsname uts; perf_env__read_arch() local 462 static struct utsname uts = { .machine[0] = '\0', }; perf_env__arch() local
|
H A D | cputopo.c | 225 struct utsname uts; in has_die_topology() local 227 if (uname(&uts) < 0) in has_die_topology() 230 if (strncmp(uts.machine, "x86_64", 6) && in has_die_topology() 231 strncmp(uts.machine, "s390x", 5)) in has_die_topology()
|
H A D | header.c | 345 struct utsname uts; in write_hostname() local 348 ret = uname(&uts); in write_hostname() 352 return do_write_string(ff, uts.nodename); in write_hostname() 358 struct utsname uts; in write_osrelease() local 361 ret = uname(&uts); in write_osrelease() 365 return do_write_string(ff, uts.release); in write_osrelease() 371 struct utsname uts; in write_arch() local 374 ret = uname(&uts); in write_arch() 378 return do_write_string(ff, uts.machine); in write_arch()
|
H A D | symbol.c | 2314 struct utsname uts; in vmlinux_path__init() local 2335 if (uname(&uts) < 0) in vmlinux_path__init() 2338 kernel_version = uts.release; in vmlinux_path__init()
|
/linux/drivers/tty/serial/ |
H A D | imx.c | 344 u32 ucr2, ubir, ubmr, uts; in imx_uart_soft_reset() local 359 uts = imx_uart_readl(sport, IMX21_UTS); in imx_uart_soft_reset() 370 imx_uart_writel(sport, uts, IMX21_UTS); in imx_uart_soft_reset() 378 unsigned int uts; in imx_uart_disable_loopback_rs485() local 381 uts = imx_uart_readl(sport, imx_uart_uts_reg(sport)); in imx_uart_disable_loopback_rs485() 382 uts &= ~UTS_LOOP; in imx_uart_disable_loopback_rs485() 383 imx_uart_writel(sport, uts, imx_uart_uts_reg(sport)); in imx_uart_disable_loopback_rs485() 480 u32 ucr1, ucr2, ucr4, uts; in imx_uart_stop_rx_with_loopback_ctrl() local 500 uts = imx_uart_readl(sport, imx_uart_uts_reg(sport)); in imx_uart_stop_rx_with_loopback_ctrl() 501 uts |= UTS_LOOP; in imx_uart_stop_rx_with_loopback_ctrl() [all …]
|
/linux/tools/testing/selftests/powerpc/ |
H A D | utils.c | 480 struct utsname uts; in is_ppc64le() local 484 rc = uname(&uts); in is_ppc64le() 490 return strcmp(uts.machine, "ppc64le") == 0; in is_ppc64le()
|
/linux/kernel/ |
H A D | signal.c | 3789 const struct __kernel_timespec __user *, uts, in SYSCALL_DEFINE4() argument 3804 if (uts) { in SYSCALL_DEFINE4() 3805 if (get_timespec64(&ts, uts)) in SYSCALL_DEFINE4() 3809 ret = do_sigtimedwait(&these, &info, uts ? &ts : NULL); in SYSCALL_DEFINE4() 3822 const struct old_timespec32 __user *, uts, in SYSCALL_DEFINE4() argument 3836 if (uts) { in SYSCALL_DEFINE4() 3837 if (get_old_timespec32(&ts, uts)) in SYSCALL_DEFINE4() 3841 ret = do_sigtimedwait(&these, &info, uts ? &ts : NULL); in SYSCALL_DEFINE4() 3855 struct __kernel_timespec __user *, uts, compat_size_t, sigsetsize) in COMPAT_SYSCALL_DEFINE4() argument 3868 if (uts) { in COMPAT_SYSCALL_DEFINE4() [all …]
|
/linux/kernel/power/ |
H A D | power.h | 12 struct new_utsname uts; member
|
H A D | snapshot.c | 2160 memcpy(&info->uts, init_utsname(), sizeof(struct new_utsname)); in init_header_complete() 2169 if (strcmp(info->uts.sysname,init_utsname()->sysname)) in check_image_kernel() 2171 if (strcmp(info->uts.release,init_utsname()->release)) in check_image_kernel() 2173 if (strcmp(info->uts.version,init_utsname()->version)) in check_image_kernel() 2175 if (strcmp(info->uts.machine,init_utsname()->machine)) in check_image_kernel()
|
/linux/tools/perf/ |
H A D | builtin-top.c | 171 struct utsname uts; in ui__warn_map_erange() local 172 int err = uname(&uts); in ui__warn_map_erange() 189 err ? "[unknown]" : uts.machine, in ui__warn_map_erange() 190 err ? "[unknown]" : uts.release, perf_version_string); in ui__warn_map_erange()
|
H A D | builtin-script.c | 3955 struct utsname uts; in cmd_script() 4371 uname(&uts); in cmd_script() 4375 if (!strcmp(uts.machine, session->header.env.arch)) in cmd_script() 4377 else if (!strcmp(uts.machine, "x86_64") && in cmd_script() 3954 struct utsname uts; cmd_script() local
|
/linux/tools/lib/bpf/ |
H A D | libbpf.c | 2267 struct utsname uts; in bpf_object__read_kconfig_file() local 2271 uname(&uts); in bpf_object__read_kconfig_file() 2272 len = snprintf(buf, PATH_MAX, "/boot/config-%s", uts.release); in bpf_object__read_kconfig_file()
|