[PATCH 13/14] crashdump/sh: Add print_crashkernel_region_size() function

Daniel Kiper daniel.kiper at oracle.com
Tue Dec 8 13:57:46 PST 2015


Follow similar x86 patch.

Signed-off-by: Daniel Kiper <daniel.kiper at oracle.com>
---
 kexec/arch/sh/crashdump-sh.c |   10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/kexec/arch/sh/crashdump-sh.c b/kexec/arch/sh/crashdump-sh.c
index 9e6af6b..6556eb1 100644
--- a/kexec/arch/sh/crashdump-sh.c
+++ b/kexec/arch/sh/crashdump-sh.c
@@ -178,3 +178,13 @@ int is_crashkernel_mem_reserved(void)
 	return parse_iomem_single("Crash kernel\n", &start, &end) == 0 ?
 	  (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");
+}
-- 
1.7.10.4




More information about the kexec mailing list