diff options
author | Liu Hua <sdu.liu@huawei.com> | 2014-04-18 02:45:36 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-05-06 10:55:27 -0400 |
commit | 674ae6c7b4048c35ce8f090657dd4e2e675bf0fa (patch) | |
tree | 16f7b74fcf7a6e0345d93cd6c4fc179f77d1c800 /arch | |
parent | 4a91c29ca2e7ae1fa4020e334abfc2174d8c6bdf (diff) |
ARM: 8030/1: ARM : kdump : add arch_crash_save_vmcoreinfo
commit 56b700fd6f1e49149880fb1b6ffee0dca5be45fb upstream.
For vmcore generated by LPAE enabled kernel, user space
utility such as crash needs additional infomation to
parse.
So this patch add arch_crash_save_vmcoreinfo as what PAE enabled
i386 linux does.
Reviewed-by: Will Deacon <will.deacon@arm.com>
Signed-off-by: Liu Hua <sdu.liu@huawei.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/kernel/machine_kexec.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/kernel/machine_kexec.c b/arch/arm/kernel/machine_kexec.c index 163b160c69e9..c3ef920823b6 100644 --- a/arch/arm/kernel/machine_kexec.c +++ b/arch/arm/kernel/machine_kexec.c | |||
@@ -169,3 +169,10 @@ void machine_kexec(struct kimage *image) | |||
169 | 169 | ||
170 | soft_restart(reboot_code_buffer_phys); | 170 | soft_restart(reboot_code_buffer_phys); |
171 | } | 171 | } |
172 | |||
173 | void arch_crash_save_vmcoreinfo(void) | ||
174 | { | ||
175 | #ifdef CONFIG_ARM_LPAE | ||
176 | VMCOREINFO_CONFIG(ARM_LPAE); | ||
177 | #endif | ||
178 | } | ||