Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1286872 > unrolled thread
| Started by | Daniel Kiper <daniel.kiper@oracle.com> |
|---|---|
| First post | 2015-12-08 23:00 +0100 |
| Last post | 2015-12-08 23:00 +0100 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH 09/14] crashdump/mips: Add print_crashkernel_region_size() function Daniel Kiper <daniel.kiper@oracle.com> - 2015-12-08 23:00 +0100
| From | Daniel Kiper <daniel.kiper@oracle.com> |
|---|---|
| Date | 2015-12-08 23:00 +0100 |
| Subject | [PATCH 09/14] crashdump/mips: Add print_crashkernel_region_size() function |
| Message-ID | <qDysH-7MA-11@gated-at.bofh.it> |
Follow similar x86 patch.
Signed-off-by: Daniel Kiper <daniel.kiper@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 dc68cb4..450fa13 100644
--- a/kexec/arch/mips/crashdump-mips.c
+++ b/kexec/arch/mips/crashdump-mips.c
@@ -377,3 +377,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");
+}
--
1.7.10.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to top | Article view | linux.kernel
csiph-web