diff options
author | Dongdong Deng <dongdong.deng@windriver.com> | 2010-09-13 07:58:00 -0400 |
---|---|---|
committer | Jason Wessel <jason.wessel@windriver.com> | 2010-10-22 16:34:12 -0400 |
commit | c1bb9a9c1911036549c5cdfb23f32d7d20ffdc5a (patch) | |
tree | 8d86976df36697e54ae3582d6c30b7355a942647 /kernel | |
parent | 91b152aa85bbcf076e269565394c31964f940371 (diff) |
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>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/debug/debug_core.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/kernel/debug/debug_core.c b/kernel/debug/debug_core.c index 5a3b04d20497..bb9497724808 100644 --- a/kernel/debug/debug_core.c +++ b/kernel/debug/debug_core.c | |||
@@ -485,6 +485,9 @@ static int kgdb_cpu_enter(struct kgdb_state *ks, struct pt_regs *regs) | |||
485 | int error; | 485 | int error; |
486 | int i, cpu; | 486 | int i, cpu; |
487 | int trace_on = 0; | 487 | int trace_on = 0; |
488 | |||
489 | kgdb_disable_hw_debug(ks->linux_regs); | ||
490 | |||
488 | acquirelock: | 491 | acquirelock: |
489 | /* | 492 | /* |
490 | * Interrupts will be restored by the 'trap return' code, except when | 493 | * Interrupts will be restored by the 'trap return' code, except when |
@@ -569,8 +572,6 @@ return_normal: | |||
569 | if (dbg_io_ops->pre_exception) | 572 | if (dbg_io_ops->pre_exception) |
570 | dbg_io_ops->pre_exception(); | 573 | dbg_io_ops->pre_exception(); |
571 | 574 | ||
572 | kgdb_disable_hw_debug(ks->linux_regs); | ||
573 | |||
574 | /* | 575 | /* |
575 | * Get the passive CPU lock which will hold all the non-primary | 576 | * Get the passive CPU lock which will hold all the non-primary |
576 | * CPU in a spin state while the debugger is active | 577 | * CPU in a spin state while the debugger is active |
@@ -661,6 +662,8 @@ kgdb_restore: | |||
661 | else | 662 | else |
662 | kgdb_sstep_pid = 0; | 663 | kgdb_sstep_pid = 0; |
663 | } | 664 | } |
665 | if (arch_kgdb_ops.correct_hw_break) | ||
666 | arch_kgdb_ops.correct_hw_break(); | ||
664 | if (trace_on) | 667 | if (trace_on) |
665 | tracing_on(); | 668 | tracing_on(); |
666 | /* Free kgdb_active */ | 669 | /* Free kgdb_active */ |