From: "Eric W. Biederman" This is the x86_64 implementation of the crashkernel option. It reserves a window of memory very early in the bootup process, so we never use it for anything but the kernel to switch to when the running kernel panics. In addition to reserving this memory a resource structure is registered so looking at /proc/iomem it is clear what happened to that memory. ISSUES: Is it possible to implement this in a architecture generic way? What should be done with architectures that always use an iommu and thus don't report their RAM memory resources in /proc/iomem? Signed-off-by: Eric Biederman Signed-off-by: Andrew Morton --- 25-akpm/arch/x86_64/kernel/e820.c | 4 ++++ 25-akpm/arch/x86_64/kernel/setup.c | 27 +++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) diff -puN arch/x86_64/kernel/e820.c~x86_64-crashkernel arch/x86_64/kernel/e820.c --- 25/arch/x86_64/kernel/e820.c~x86_64-crashkernel 2005-02-22 18:18:46.000000000 -0800 +++ 25-akpm/arch/x86_64/kernel/e820.c 2005-02-22 18:18:46.000000000 -0800 @@ -10,6 +10,7 @@ #include #include #include +#include #include #include #include @@ -204,6 +205,9 @@ void __init e820_reserve_resources(void) */ request_resource(res, &code_resource); request_resource(res, &data_resource); +#ifdef CONFIG_KEXEC + request_resource(res, &crashk_res); +#endif } } } diff -puN arch/x86_64/kernel/setup.c~x86_64-crashkernel arch/x86_64/kernel/setup.c --- 25/arch/x86_64/kernel/setup.c~x86_64-crashkernel 2005-02-22 18:18:46.000000000 -0800 +++ 25-akpm/arch/x86_64/kernel/setup.c 2005-02-22 18:18:46.000000000 -0800 @@ -40,6 +40,7 @@ #include #include #include +#include #include #include #include @@ -367,6 +368,27 @@ static __init void parse_cmdline_early ( if (!memcmp(from, "noexec=", 7)) nonx_setup(from + 7); +#ifdef CONFIG_KEXEC + /* crashkernel=size@addr specifies the location to reserve for + * a crash kernel. By reserving this memory we guarantee + * that linux never set's it up as a DMA target. + * Useful for holding code to do something appropriate + * after a kernel panic. + */ + else if (!memcmp(from, "crashkernel=", 12)) { + unsigned long size, base; + size = memparse(from+12, &from); + if (*from == '@') { + base = memparse(from+1, &from); + /* FIXME: Do I want a sanity check + * to validate the memory range? + */ + crashk_res.start = base; + crashk_res.end = base + size - 1; + } + } +#endif + next_char: c = *(from++); if (!c) @@ -622,6 +644,11 @@ void __init setup_arch(char **cmdline_p) } } #endif +#ifdef CONFIG_KEXEC + if (crashk_res.start != crashk_res.end) { + reserve_bootmem(crashk_res.start, crashk_res.end - crashk_res.start + 1); + } +#endif paging_init(); check_ioapic(); _