|
@@ -343,6 +343,7 @@ dotraplinkage void notrace do_int3(struct pt_regs *regs, long error_code)
|
|
|
if (poke_int3_handler(regs))
|
|
|
return;
|
|
|
|
|
|
+ prev_state = exception_enter();
|
|
|
#ifdef CONFIG_KGDB_LOW_LEVEL_TRAP
|
|
|
if (kgdb_ll_trap(DIE_INT3, "int3", regs, error_code, X86_TRAP_BP,
|
|
|
SIGTRAP) == NOTIFY_STOP)
|
|
@@ -351,9 +352,8 @@ dotraplinkage void notrace do_int3(struct pt_regs *regs, long error_code)
|
|
|
|
|
|
#ifdef CONFIG_KPROBES
|
|
|
if (kprobe_int3_handler(regs))
|
|
|
- return;
|
|
|
+ goto exit;
|
|
|
#endif
|
|
|
- prev_state = exception_enter();
|
|
|
|
|
|
if (notify_die(DIE_INT3, "int3", regs, error_code, X86_TRAP_BP,
|
|
|
SIGTRAP) == NOTIFY_STOP)
|
|
@@ -433,6 +433,8 @@ dotraplinkage void do_debug(struct pt_regs *regs, long error_code)
|
|
|
unsigned long dr6;
|
|
|
int si_code;
|
|
|
|
|
|
+ prev_state = exception_enter();
|
|
|
+
|
|
|
get_debugreg(dr6, 6);
|
|
|
|
|
|
/* Filter out all the reserved bits which are preset to 1 */
|
|
@@ -465,7 +467,6 @@ dotraplinkage void do_debug(struct pt_regs *regs, long error_code)
|
|
|
if (kprobe_debug_handler(regs))
|
|
|
goto exit;
|
|
|
#endif
|
|
|
- prev_state = exception_enter();
|
|
|
|
|
|
if (notify_die(DIE_DEBUG, "debug", regs, (long)&dr6, error_code,
|
|
|
SIGTRAP) == NOTIFY_STOP)
|