diff options
author | Anton Blanchard <anton@samba.org> | 2010-08-10 21:03:30 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-11 11:59:22 -0400 |
commit | 863a6049202412a6d655d052eb1c45ca7dd74a83 (patch) | |
tree | 9550c1f6c484460cb646f4472558512ac8a9f149 /lib/bug.c | |
parent | e2e7e093259d4c6b73b432122974393d6fcdfc2a (diff) |
lib/bug.c: add oops end marker to WARN implementation
We are missing the oops end marker for the exception based WARN implementation
in lib/bug.c. This is useful for logfile analysis tools.
Signed-off-by: Anton Blanchard <anton@samba.org>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Arjan van de Ven <arjan@infradead.org>
Cc: "Kirill A. Shutemov" <kirill@shutemov.name>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'lib/bug.c')
-rw-r--r-- | lib/bug.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -166,6 +166,7 @@ enum bug_trap_type report_bug(unsigned long bugaddr, struct pt_regs *regs) | |||
166 | 166 | ||
167 | print_modules(); | 167 | print_modules(); |
168 | show_regs(regs); | 168 | show_regs(regs); |
169 | print_oops_end_marker(); | ||
169 | add_taint(BUG_GET_TAINT(bug)); | 170 | add_taint(BUG_GET_TAINT(bug)); |
170 | return BUG_TRAP_TYPE_WARN; | 171 | return BUG_TRAP_TYPE_WARN; |
171 | } | 172 | } |