summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell King <rmk@arm.linux.org.uk>2016-06-06 18:00:42 +0100
committerSimon Horman <horms@verge.net.au>2016-06-08 09:24:09 +0900
commit103656d85960ec862a65a2e6ebdf8367d13b23dd (patch)
tree5ca453d2d84a98aa8dd7a26618cab80d37e064de
parent11c52266a2e35b3aa0d0524276ade92aa2658304 (diff)
arm: move crash system RAM parsing earlier
Reviewed-by: Pratyush Anand <panand@redhat.com> Signed-off-by: Russell King <rmk@arm.linux.org.uk> Signed-off-by: Simon Horman <horms@verge.net.au>
-rw-r--r--kexec/arch/arm/Makefile2
-rw-r--r--kexec/arch/arm/crashdump-arm.c51
2 files changed, 11 insertions, 42 deletions
diff --git a/kexec/arch/arm/Makefile b/kexec/arch/arm/Makefile
index 60e433a..71db8c3 100644
--- a/kexec/arch/arm/Makefile
+++ b/kexec/arch/arm/Makefile
@@ -7,6 +7,8 @@ arm_FS2DT = kexec/fs2dt.c
arm_FS2DT_INCLUDE = -include $(srcdir)/kexec/arch/arm/crashdump-arm.h \
-include $(srcdir)/kexec/arch/arm/kexec-arm.h
+arm_MEM_REGIONS = kexec/mem_regions.c
+
arm_KEXEC_SRCS= kexec/arch/arm/kexec-elf-rel-arm.c
arm_KEXEC_SRCS+= kexec/arch/arm/kexec-zImage-arm.c
arm_KEXEC_SRCS+= kexec/arch/arm/kexec-uImage-arm.c
diff --git a/kexec/arch/arm/crashdump-arm.c b/kexec/arch/arm/crashdump-arm.c
index d6db566..f2e6a0d 100644
--- a/kexec/arch/arm/crashdump-arm.c
+++ b/kexec/arch/arm/crashdump-arm.c
@@ -30,6 +30,7 @@
#include "../../kexec.h"
#include "../../kexec-elf.h"
#include "../../crashdump.h"
+#include "../../mem_regions.h"
#include "crashdump-arm.h"
#include "iomem.h"
@@ -132,39 +133,6 @@ static int get_kernel_page_offset(struct kexec_info *info,
}
/**
- * crash_range_callback() - callback called for each iomem region
- * @data: not used
- * @nr: not used
- * @str: name of the memory region
- * @base: start address of the memory region
- * @length: size of the memory region
- *
- * This function is called once for each memory region found in /proc/iomem. It
- * locates system RAM and places these into @crash_memory_ranges. Number of
- * memory regions is placed in @crash_memory_nr_ranges.
- */
-static int crash_range_callback(void *UNUSED(data), int UNUSED(nr),
- char *str, unsigned long long base,
- unsigned long long length)
-{
- struct memory_range *range;
-
- if (usablemem_rgns.size >= CRASH_MAX_MEMORY_RANGES)
- return 1;
-
- range = usablemem_rgns.ranges + usablemem_rgns.size;
-
- if (strncmp(str, "System RAM\n", 11) == 0) {
- range->start = base;
- range->end = base + length - 1;
- range->type = RANGE_RAM;
- usablemem_rgns.size++;
- }
-
- return 0;
-}
-
-/**
* crash_exclude_range() - excludes memory region reserved for crashkernel
*
* Function locates where crashkernel reserved memory is and removes that region
@@ -213,12 +181,6 @@ static void crash_exclude_range(void)
*/
static int crash_get_memory_ranges(void)
{
- /*
- * First read all memory regions that can be considered as
- * system memory including the crash area.
- */
- kexec_iomem_for_each_line(NULL, crash_range_callback, NULL);
-
if (usablemem_rgns.size < 1) {
errno = EINVAL;
return -1;
@@ -414,8 +376,9 @@ int load_crashdump_segments(struct kexec_info *info, char *mod_cmdline)
* @base: start address of the memory region
* @length: size of the memory region
*
- * This function is called for each memory range in /proc/iomem, and stores
- * the location of the crash kernel range into @crash_reserved_mem.
+ * This function is called for each memory range in /proc/iomem, stores
+ * the location of the crash kernel range into @crash_reserved_mem, and
+ * stores the system RAM into @usablemem_rgns.
*/
static int iomem_range_callback(void *UNUSED(data), int UNUSED(nr),
char *str, unsigned long long base,
@@ -426,6 +389,10 @@ static int iomem_range_callback(void *UNUSED(data), int UNUSED(nr),
crash_reserved_mem.end = base + length - 1;
crash_reserved_mem.type = RANGE_RAM;
}
+ else if (strncmp(str, SYSTEM_RAM, strlen(SYSTEM_RAM)) == 0) {
+ return mem_regions_add(&usablemem_rgns,
+ base, length, RANGE_RAM);
+ }
return 0;
}
@@ -434,7 +401,7 @@ static int iomem_range_callback(void *UNUSED(data), int UNUSED(nr),
*
* Check for the crashkernel reserved region in /proc/iomem, and return
* true if it is present, or false otherwise. We use this to store the
- * location of this region.
+ * location of this region, and system RAM regions.
*/
int is_crashkernel_mem_reserved(void)
{