lkml.org 
[lkml]   [2023]   [Dec]   [21]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[RFC PATCH 7/7] panic: invoke osdump when panic
Date
From: qiruipeng <qiruipeng@lixiang.com>

Invoke osdump upon a panic to generate a minidump, which can be analyzed
later with the crash utility.

Signed-off-by: qiruipeng <qiruipeng@lixiang.com>
---
kernel/panic.c | 7 +++++++
1 file changed, 7 insertions(+)

diff --git a/kernel/panic.c b/kernel/panic.c
index 2807639aab51..b83e5caf8003 100644
--- a/kernel/panic.c
+++ b/kernel/panic.c
@@ -37,6 +37,9 @@
#include <linux/context_tracking.h>
#include <trace/events/error_report.h>
#include <asm/sections.h>
+#ifdef CONFIG_OS_MINIDUMP
+#include <linux/osdump.h>
+#endif

#define PANIC_TIMER_STEP 100
#define PANIC_BLINK_SPD 18
@@ -326,6 +329,10 @@ void panic(const char *fmt, ...)
} else if (old_cpu != this_cpu)
panic_smp_self_stop();

+#ifdef CONFIG_OS_MINIDUMP
+ osdump();
+#endif
+
console_verbose();
bust_spinlocks(1);
va_start(args, fmt);
--
2.17.1

\
 
 \ /
  Last update: 2023-12-21 14:52    [W:0.018 / U:1.704 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site