[PATCH v2 06/12] crashdump/mips: Add print_crashkernel_region_size() function

Eric DeVolder eric.devolder at oracle.com
Mon Feb 6 11:42:18 PST 2017


From: Daniel Kiper <daniel.kiper at oracle.com>

Follow similar x86 patch.

Signed-off-by: Daniel Kiper <daniel.kiper at oracle.com>
Signed-off-by: Eric DeVolder <eric.devolder at oracle.com>
---
 kexec/arch/mips/crashdump-mips.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/kexec/arch/mips/crashdump-mips.c b/kexec/arch/mips/crashdump-mips.c
index d6cff5a..594e1b9 100644
--- a/kexec/arch/mips/crashdump-mips.c
+++ b/kexec/arch/mips/crashdump-mips.c
@@ -385,3 +385,12 @@ int is_crashkernel_mem_reserved(void)
 		(start != end) : 0;
 }
 
+void print_crashkernel_region_size(void)
+{
+	uint64_t start, end;
+
+	if (!parse_iomem_single("Crash kernel\n", &start, &end) && start != end)
+		printf("%lu\n", end - start + 1);
+	else
+		printf("0\n");
+}
-- 
2.7.4




More information about the kexec mailing list