lkml.org 
[lkml]   [2018]   [Jul]   [5]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
SubjectRE: [PATCH] Debug: Add cpu registers dump in case of kernel panic
Date
Resubmit again for review, this patch save register and used for RAM dump.

Ramdump is an debug feature used to analysis complex panic/hang issues, it will recover all the data after pull the RAM to host and use an host tool to decode and analysis the RAM.

Thanks
Tim

From: Tian, Baofeng
Sent: Monday, July 2, 2018 8:46 AM
To: tglx@linutronix.de; mingo@redhat.com; hpa@zytor.com; x86@kernel.org; rostedt@goodmis.org; linux-kernel@vger.kernel.org
Subject: [PATCH] Debug: Add cpu registers dump in case of kernel panic

From: "Tian, Baofeng" <baofeng.tian@intel.com>
Subject: [PATCH] Debug: Add cpu registers dump in case of kernel panic

When kernel panic, the value of cpu registers are needed
for analyzing, through whole ramdump to restore the crash
point.

We store CPU registers to RAM before cpu stopped, then get
them with whole ram dump after warm reset.Those registers
are used in analysis of dumped RAM image.

Signed-off-by: Baofeng, Tian <baofeng.tian@intel.com>
Signed-off-by: Emmanuel Berthier <emmanuel.berthier@intel.com>
---
 arch/x86/kernel/smp.c | 19 ++++++++++++++++++-
 1 file changed, 18 insertions(+), 1 deletion(-)

diff --git a/arch/x86/kernel/smp.c b/arch/x86/kernel/smp.c
index 5c574df..484831d 100644
--- a/arch/x86/kernel/smp.c
+++ b/arch/x86/kernel/smp.c
@@ -117,6 +117,20 @@
 static atomic_t stopping_cpu = ATOMIC_INIT(-1);
 static bool smp_no_nmi_ipi = false;
 
+static DEFINE_PER_CPU(struct pt_regs, cpu_regs);
+
+/* Store regs of this CPU for RAM dump decoding help */
+static inline void store_regs(struct pt_regs *regs)
+{
+     struct pt_regs *print_regs;
+
+     print_regs = &get_cpu_var(cpu_regs);
+     crash_setup_regs(print_regs, regs);
+
+     /* Flush CPU cache */
+     wbinvd();
+}
+
 /*
  * this function sends a 'reschedule' IPI to another CPU.
  * it goes straight through and wastes no time serializing
@@ -163,6 +177,7 @@ static int smp_stop_nmi_callback(unsigned int val, struct pt_regs *regs)
      if (raw_smp_processor_id() == atomic_read(&stopping_cpu))
            return NMI_HANDLED;
 
+     store_regs(regs);
      cpu_emergency_vmxoff();
      stop_this_cpu(NULL);
 
@@ -173,9 +188,10 @@ static int smp_stop_nmi_callback(unsigned int val, struct pt_regs *regs)
  * this function calls the 'stop' function on all other CPUs in the system.
  */
 
-asmlinkage __visible void smp_reboot_interrupt(void)
+__visible void smp_reboot_interrupt(struct pt_regs *regs)
 {
      ipi_entering_ack_irq();
+     store_regs(regs);
      cpu_emergency_vmxoff();
      stop_this_cpu(NULL);
      irq_exit();
@@ -247,6 +263,7 @@ static void native_stop_other_cpus(int wait)
      }
 
 finish:
+     store_regs(NULL);
      local_irq_save(flags);
      disable_local_APIC();
      mcheck_cpu_clear(this_cpu_ptr(&cpu_info));
--
2.7.4

\
 
 \ /
  Last update: 2018-07-05 08:52    [W:0.042 / U:0.772 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site