aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/arch/sh/kernel/vmcore_info.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/sh/kernel/vmcore_info.c')
-rw-r--r--arch/sh/kernel/vmcore_info.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/arch/sh/kernel/vmcore_info.c b/arch/sh/kernel/vmcore_info.c
new file mode 100644
index 000000000000..a244a204a1b1
--- /dev/null
+++ b/arch/sh/kernel/vmcore_info.c
@@ -0,0 +1,15 @@
+// SPDX-License-Identifier: GPL-2.0-only
+
+#include <linux/vmcore_info.h>
+#include <linux/mm.h>
+
+void arch_crash_save_vmcoreinfo(void)
+{
+#ifdef CONFIG_NUMA
+ VMCOREINFO_SYMBOL(node_data);
+ VMCOREINFO_LENGTH(node_data, MAX_NUMNODES);
+#endif
+#ifdef CONFIG_X2TLB
+ VMCOREINFO_CONFIG(X2TLB);
+#endif
+}