diff options
author | Jason Wessel <jason.wessel@windriver.com> | 2008-02-15 14:55:55 -0600 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-17 20:05:39 +0200 |
commit | 67baf94cd260dc37504dbd15ba3faa2d8cf8a444 (patch) | |
tree | 0a162e5ddb4166862bb2ba002efa18a0bcb83a57 /kernel/kgdb.c | |
parent | 7c3078b637882303b1dcf6a16229d0e35f6b60a5 (diff) | |
download | op-kernel-dev-67baf94cd260dc37504dbd15ba3faa2d8cf8a444.zip op-kernel-dev-67baf94cd260dc37504dbd15ba3faa2d8cf8a444.tar.gz |
kgdb: print breakpoint removed on exception
If kgdb does remove a breakpoint that had a problem on the recursion
check, it should also print the address of the breakpoint.
Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/kgdb.c')
-rw-r--r-- | kernel/kgdb.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/kgdb.c b/kernel/kgdb.c index e3f6037..319c08c 100644 --- a/kernel/kgdb.c +++ b/kernel/kgdb.c @@ -1327,7 +1327,8 @@ static int kgdb_reenter_check(struct kgdb_state *ks) exception_level = 0; kgdb_skipexception(ks->ex_vector, ks->linux_regs); kgdb_activate_sw_breakpoints(); - printk(KERN_CRIT "KGDB: re-enter error: breakpoint removed\n"); + printk(KERN_CRIT "KGDB: re-enter error: breakpoint removed %lx\n", + addr); WARN_ON_ONCE(1); return 1; |