Home
last modified time | relevance | path

Searched refs:os_info (Results 1 – 15 of 15) sorted by relevance

/linux-6.6.21/arch/s390/kernel/
Dos_info.c24 static struct os_info os_info __page_aligned_data;
29 u32 os_info_csum(struct os_info *os_info) in os_info_csum() argument
31 int size = sizeof(*os_info) - offsetof(struct os_info, version_major); in os_info_csum()
32 return (__force u32)csum_partial(&os_info->version_major, size, 0); in os_info_csum()
40 os_info.crashkernel_addr = (u64)(unsigned long)base; in os_info_crashkernel_add()
41 os_info.crashkernel_size = (u64)(unsigned long)size; in os_info_crashkernel_add()
42 os_info.csum = os_info_csum(&os_info); in os_info_crashkernel_add()
50 os_info.entry[nr].addr = __pa(ptr); in os_info_entry_add()
51 os_info.entry[nr].size = size; in os_info_entry_add()
52 os_info.entry[nr].csum = (__force u32)csum_partial(ptr, size, 0); in os_info_entry_add()
[all …]
DMakefile40 obj-y += sysinfo.o lgr.o os_info.o
Dasm-offsets.c146 OFFSET(__LC_OS_INFO, lowcore, os_info); in main()
/linux-6.6.21/arch/um/os-Linux/
Dmem.c36 os_info("Couldn't allocate shadow memory: %s\n.", in kasan_map_memory()
50 os_info("Checking if %s is on tmpfs...", dir); in check_tmpfs()
52 os_info("%s\n", strerror(errno)); in check_tmpfs()
54 os_info("no\n"); in check_tmpfs()
56 os_info("OK\n"); in check_tmpfs()
86 os_info("Checking environment variables for a tempdir..."); in choose_tempdir()
90 os_info("%s\n", dir); in choose_tempdir()
97 os_info("none found\n"); in choose_tempdir()
219 os_info("Checking PROT_EXEC mmap in %s...", tempdir); in check_tmpexec()
228 os_info("OK\n"); in check_tmpexec()
Dstart_up.c169 os_info("Checking syscall emulation patch for ptrace..."); in check_sysemu()
202 os_info("OK\n"); in check_sysemu()
205 os_info("Checking advanced syscall emulation patch for ptrace..."); in check_sysemu()
247 os_info("OK\n"); in check_sysemu()
263 os_info("Checking that ptrace can change system call numbers..."); in check_ptrace()
295 os_info("OK\n"); in check_ptrace()
311 os_info("Core dump limits :\n\tsoft - "); in check_coredump_limit()
313 os_info("NONE\n"); in check_coredump_limit()
315 os_info("%llu\n", (unsigned long long)lim.rlim_cur); in check_coredump_limit()
317 os_info("\thard - "); in check_coredump_limit()
[all …]
Dutil.c185 void os_info(const char *fmt, ...) in os_info() function
Dmain.c175 os_info("\n"); in main()
/linux-6.6.21/drivers/s390/char/
Dzcore.c225 struct os_info *os_info; in zcore_reipl_init() local
253 os_info = (void *)__get_free_page(GFP_KERNEL); in zcore_reipl_init()
254 if (!os_info) in zcore_reipl_init()
260 rc = memcpy_hsa_kernel(os_info, os_info_addr, PAGE_SIZE); in zcore_reipl_init()
262 rc = memcpy_real(os_info, os_info_addr, PAGE_SIZE); in zcore_reipl_init()
263 if (rc || os_info_csum(os_info) != os_info->csum) in zcore_reipl_init()
265 entry = &os_info->entry[OS_INFO_FLAGS_ENTRY]; in zcore_reipl_init()
275 free_page((unsigned long)os_info); in zcore_reipl_init()
/linux-6.6.21/arch/s390/include/asm/
Dos_info.h29 struct os_info { struct
43 u32 os_info_csum(struct os_info *os_info); argument
Dlowcore.h179 __u64 os_info; /* 0x0e18 */ member
/linux-6.6.21/drivers/gpu/drm/amd/amdgpu/
Damdgpu_virt.h167 unsigned int os_info; member
198 uint32_t os_info; member
Damdgv_sriovmsg.h233 union amd_sriov_msg_os_info os_info; member
Damdgpu_virt.c598 vf2pf_info->os_info.all = 0; in amdgpu_virt_write_vf2pf_data()
/linux-6.6.21/arch/um/kernel/
Dum_arch.c359 os_info("Adding %ld bytes to physical memory to account for " in linux_main()
400 os_info("Kernel virtual memory size shrunk to %lu bytes\n", in linux_main()
/linux-6.6.21/arch/um/include/shared/
Dos.h256 extern void os_info(const char *fmt, ...)