Skip to content

Commit c1bb9a9

Browse files
Dongdong Dengjwessel
authored andcommitted
debug_core: disable hw_breakpoints on all cores in kgdb_cpu_enter()
The slave cpus do not have the hw breakpoints disabled upon entry to the debug_core and as a result could cause unrecoverable recursive faults on badly placed breakpoints, or get out of sync with the arch specific hw breakpoint operations. This patch addresses the problem by invoking kgdb_disable_hw_debug() earlier in kgdb_enter_cpu for each cpu that enters the debug core. The hw breakpoint dis/enable flow should be: master_debug_cpu slave_debug_cpu \ / kgdb_cpu_enter | kgdb_disable_hw_debug --> uninstall pre-enabled hw_breakpoint | do add/rm dis/enable operates to hw_breakpoints on master_debug_cpu.. | correct_hw_break --> correct/install the enabled hw_breakpoint | leave_kgdb Signed-off-by: Dongdong Deng <dongdong.deng@windriver.com> Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
1 parent 91b152a commit c1bb9a9

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

kernel/debug/debug_core.c

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -485,6 +485,9 @@ static int kgdb_cpu_enter(struct kgdb_state *ks, struct pt_regs *regs)
485485
int error;
486486
int i, cpu;
487487
int trace_on = 0;
488+
489+
kgdb_disable_hw_debug(ks->linux_regs);
490+
488491
acquirelock:
489492
/*
490493
* Interrupts will be restored by the 'trap return' code, except when
@@ -569,8 +572,6 @@ static int kgdb_cpu_enter(struct kgdb_state *ks, struct pt_regs *regs)
569572
if (dbg_io_ops->pre_exception)
570573
dbg_io_ops->pre_exception();
571574

572-
kgdb_disable_hw_debug(ks->linux_regs);
573-
574575
/*
575576
* Get the passive CPU lock which will hold all the non-primary
576577
* CPU in a spin state while the debugger is active
@@ -661,6 +662,8 @@ static int kgdb_cpu_enter(struct kgdb_state *ks, struct pt_regs *regs)
661662
else
662663
kgdb_sstep_pid = 0;
663664
}
665+
if (arch_kgdb_ops.correct_hw_break)
666+
arch_kgdb_ops.correct_hw_break();
664667
if (trace_on)
665668
tracing_on();
666669
/* Free kgdb_active */

0 commit comments

Comments
 (0)