Home
last modified time | relevance | path

Searched refs:crashk_low_res (Results 1 – 9 of 9) sorted by relevance

/linux-6.1.9/arch/x86/kernel/
Dcrash.c229 if (crashk_low_res.end) in elf_header_exclude_ranges()
230 ret = crash_exclude_mem_range(cmem, crashk_low_res.start, in elf_header_exclude_ranges()
231 crashk_low_res.end); in elf_header_exclude_ranges()
358 if (crashk_low_res.end) { in crash_setup_memmap_entries()
359 ei.addr = crashk_low_res.start; in crash_setup_memmap_entries()
360 ei.size = resource_size(&crashk_low_res); in crash_setup_memmap_entries()
Dsetup.c546 crashk_low_res.start = low_base; in reserve_crashkernel_low()
547 crashk_low_res.end = low_base + low_size - 1; in reserve_crashkernel_low()
548 insert_resource(&iomem_resource, &crashk_low_res); in reserve_crashkernel_low()
Dmachine_kexec_64.c550 kexec_mark_range(crashk_low_res.start, crashk_low_res.end, protect); in kexec_mark_crashkres()
/linux-6.1.9/arch/arm64/mm/
Dinit.c112 crashk_low_res.start = low_base; in reserve_crashkernel_low()
113 crashk_low_res.end = low_base + low_size - 1; in reserve_crashkernel_low()
114 insert_resource(&iomem_resource, &crashk_low_res); in reserve_crashkernel_low()
187 if (crashk_low_res.end) in reserve_crashkernel()
188 kmemleak_ignore_phys(crashk_low_res.start); in reserve_crashkernel()
/linux-6.1.9/arch/arm64/kernel/
Dmachine_kexec_file.c71 if (crashk_low_res.end) { in prepare_elf_headers()
72 ret = crash_exclude_mem_range(cmem, crashk_low_res.start, crashk_low_res.end); in prepare_elf_headers()
Dmachine_kexec.c333 if (!crashk_low_res.end) in crash_is_nosave()
336 if ((addr < crashk_low_res.start) || (crashk_low_res.end < addr)) in crash_is_nosave()
/linux-6.1.9/drivers/of/
Dkexec.c404 if (crashk_low_res.end) { in of_kexec_alloc_and_setup_fdt()
407 crashk_low_res.start, in of_kexec_alloc_and_setup_fdt()
408 crashk_low_res.end - crashk_low_res.start + 1); in of_kexec_alloc_and_setup_fdt()
/linux-6.1.9/include/linux/
Dkexec.h27 extern struct resource crashk_low_res;
/linux-6.1.9/kernel/
Dkexec_core.c66 struct resource crashk_low_res = { variable