From dbb9ced797640cfd4996e879c53fb1134e693d53 Mon Sep 17 00:00:00 2001 From: Paul Burton Date: Fri, 23 Aug 2019 18:00:38 +0100 Subject: MIPS: Fix build with CONFIG_PROC_VMCORE=y Commit a94e4f24ec83 ("MIPS: init: Drop boot_mem_map") introduced a reference to a non-existant "end" field in struct memblock_region. Replace it with a sum of the base & size fields to fix builds with CONFIG_PROC_VMCORE=y. Reported-by: kbuild test robot Signed-off-by: Paul Burton --- arch/mips/kernel/setup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'arch/mips') diff --git a/arch/mips/kernel/setup.c b/arch/mips/kernel/setup.c index 90c44e1b5e97..2f13814807a9 100644 --- a/arch/mips/kernel/setup.c +++ b/arch/mips/kernel/setup.c @@ -458,7 +458,7 @@ static int __init early_parse_elfcorehdr(char *p) for_each_memblock(memory, mem) { unsigned long start = mem->base; - unsigned long end = mem->end; + unsigned long end = start + mem->size; if (setup_elfcorehdr >= start && setup_elfcorehdr < end) { /* * Reserve from the elf core header to the end of -- cgit