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>
This commit is contained in:
parent
e2e7e09325
commit
863a604920
|
@ -182,6 +182,7 @@ NORET_TYPE void panic(const char * fmt, ...)
|
|||
__attribute__ ((NORET_AND format (printf, 1, 2))) __cold;
|
||||
extern void oops_enter(void);
|
||||
extern void oops_exit(void);
|
||||
void print_oops_end_marker(void);
|
||||
extern int oops_may_print(void);
|
||||
NORET_TYPE void do_exit(long error_code)
|
||||
ATTRIB_NORET;
|
||||
|
|
|
@ -338,7 +338,7 @@ static int init_oops_id(void)
|
|||
}
|
||||
late_initcall(init_oops_id);
|
||||
|
||||
static void print_oops_end_marker(void)
|
||||
void print_oops_end_marker(void)
|
||||
{
|
||||
init_oops_id();
|
||||
printk(KERN_WARNING "---[ end trace %016llx ]---\n",
|
||||
|
|
Loading…
Reference in New Issue