kdump: Allow shrinking of kdump region to be overridden
On ppc64 the crashkernel region almost always overlaps an area of firmware. This works fine except when using the sysfs interface to reduce the kdump region. If we free the firmware area we are guaranteed to crash. Rename free_reserved_phys_range to crash_free_reserved_phys_range and make it a weak function so we can override it. Signed-off-by: Anton Blanchard <anton@samba.org> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
This commit is contained in:
Родитель
76d479a7ca
Коммит
c0bb9e45f3
|
@ -208,6 +208,7 @@ int __init parse_crashkernel(char *cmdline, unsigned long long system_ram,
|
|||
unsigned long long *crash_size, unsigned long long *crash_base);
|
||||
int crash_shrink_memory(unsigned long new_size);
|
||||
size_t crash_get_memory_size(void);
|
||||
void crash_free_reserved_phys_range(unsigned long begin, unsigned long end);
|
||||
|
||||
#else /* !CONFIG_KEXEC */
|
||||
struct pt_regs;
|
||||
|
|
|
@ -1099,7 +1099,8 @@ size_t crash_get_memory_size(void)
|
|||
return size;
|
||||
}
|
||||
|
||||
static void free_reserved_phys_range(unsigned long begin, unsigned long end)
|
||||
void __weak crash_free_reserved_phys_range(unsigned long begin,
|
||||
unsigned long end)
|
||||
{
|
||||
unsigned long addr;
|
||||
|
||||
|
@ -1135,7 +1136,7 @@ int crash_shrink_memory(unsigned long new_size)
|
|||
start = roundup(start, PAGE_SIZE);
|
||||
end = roundup(start + new_size, PAGE_SIZE);
|
||||
|
||||
free_reserved_phys_range(end, crashk_res.end);
|
||||
crash_free_reserved_phys_range(end, crashk_res.end);
|
||||
|
||||
if ((start == end) && (crashk_res.parent != NULL))
|
||||
release_resource(&crashk_res);
|
||||
|
|
Загрузка…
Ссылка в новой задаче