diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2007-07-16 02:41:39 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-16 12:05:51 -0400 |
commit | 608e2619682e951f525b08e7a48669a3c0263b41 (patch) | |
tree | 034ec1a626c776da201c6664a0ac8b2ec0934167 /arch/parisc | |
parent | 94bed2a9c4ae980838003f5d32681eef794ecc28 (diff) |
generic bug: use show_regs() instead of dump_stack()
The current generic bug implementation has a call to dump_stack() in case a
WARN_ON(whatever) gets hit. Since report_bug(), which calls dump_stack(),
gets called from an exception handler we can do better: just pass the
pt_regs structure to report_bug() and pass it to show_regs() in case of a
warning. This will give more debug informations like register contents,
etc... In addition this avoids some pointless lines that dump_stack()
emits, since it includes a stack backtrace of the exception handler which
is of no interest in case of a warning. E.g. on s390 the following lines
are currently always present in a stack backtrace if dump_stack() gets
called from report_bug():
[<000000000001517a>] show_trace+0x92/0xe8)
[<0000000000015270>] show_stack+0xa0/0xd0
[<00000000000152ce>] dump_stack+0x2e/0x3c
[<0000000000195450>] report_bug+0x98/0xf8
[<0000000000016cc8>] illegal_op+0x1fc/0x21c
[<00000000000227d6>] sysc_return+0x0/0x10
Acked-by: Jeremy Fitzhardinge <jeremy@goop.org>
Acked-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
Cc: Andi Kleen <ak@suse.de>
Cc: Kyle McMartin <kyle@parisc-linux.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Paul Mundt <lethal@linux-sh.org>
Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/parisc')
-rw-r--r-- | arch/parisc/kernel/traps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/parisc/kernel/traps.c b/arch/parisc/kernel/traps.c index c3ec9f1ec0f3..f9bca2d74b38 100644 --- a/arch/parisc/kernel/traps.c +++ b/arch/parisc/kernel/traps.c | |||
@@ -302,7 +302,7 @@ static void handle_break(struct pt_regs *regs) | |||
302 | if (unlikely(iir == PARISC_BUG_BREAK_INSN && !user_mode(regs))) { | 302 | if (unlikely(iir == PARISC_BUG_BREAK_INSN && !user_mode(regs))) { |
303 | /* check if a BUG() or WARN() trapped here. */ | 303 | /* check if a BUG() or WARN() trapped here. */ |
304 | enum bug_trap_type tt; | 304 | enum bug_trap_type tt; |
305 | tt = report_bug(regs->iaoq[0] & ~3); | 305 | tt = report_bug(regs->iaoq[0] & ~3, regs); |
306 | if (tt == BUG_TRAP_TYPE_WARN) { | 306 | if (tt == BUG_TRAP_TYPE_WARN) { |
307 | regs->iaoq[0] += 4; | 307 | regs->iaoq[0] += 4; |
308 | regs->iaoq[1] += 4; | 308 | regs->iaoq[1] += 4; |