diff options
author | Michael Holzheu <holzheu@linux.vnet.ibm.com> | 2011-12-27 05:27:24 -0500 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2011-12-27 05:27:13 -0500 |
commit | 7fe7a18cddf35f0d50d681ae6252241303b0cfc5 (patch) | |
tree | 90fb148ee0e21cce3969348654446ddd161b7f43 /arch/s390/kernel | |
parent | 1afcfd5948ff27cdbc6d91e9f3cdbdd7f3b1e566 (diff) |
[S390] Add VMCOREINFO_SYMBOL(high_memory) to vmcoreinfo
Currently the vmalloc_start address (or better end of real memory) for s390x
is obtained by makedumpfile using vmlist.addr symbol, which is not correct.
The correct vmalloc_start address can be obtained using 'high_memory' symbol.
This patch adds the high_memory symbol to vmcoreinfo.
Signed-off-by: Michael Holzheu <holzheu@linux.vnet.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/kernel')
-rw-r--r-- | arch/s390/kernel/machine_kexec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/s390/kernel/machine_kexec.c b/arch/s390/kernel/machine_kexec.c index 3cd0f25ab015..47b168fb29c4 100644 --- a/arch/s390/kernel/machine_kexec.c +++ b/arch/s390/kernel/machine_kexec.c | |||
@@ -208,6 +208,7 @@ void machine_kexec_cleanup(struct kimage *image) | |||
208 | void arch_crash_save_vmcoreinfo(void) | 208 | void arch_crash_save_vmcoreinfo(void) |
209 | { | 209 | { |
210 | VMCOREINFO_SYMBOL(lowcore_ptr); | 210 | VMCOREINFO_SYMBOL(lowcore_ptr); |
211 | VMCOREINFO_SYMBOL(high_memory); | ||
211 | VMCOREINFO_LENGTH(lowcore_ptr, NR_CPUS); | 212 | VMCOREINFO_LENGTH(lowcore_ptr, NR_CPUS); |
212 | } | 213 | } |
213 | 214 | ||