Skip to content

Commit

Permalink
[PATCH] x86: fix stack trace facility level
Browse files Browse the repository at this point in the history
dump_stack() on page allocation failure presently has an irritating habit
of shouting just "====" at everyone: please stop it.

Signed-off-by: Hugh Dickins <hugh@veritas.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Hugh Dickins authored and Linus Torvalds committed Feb 5, 2006
1 parent c2b507f commit 165a2c1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion arch/i386/kernel/traps.c
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,8 @@ static void show_trace_log_lvl(struct task_struct *task,
stack = (unsigned long*)context->previous_esp;
if (!stack)
break;
printk(KERN_EMERG " =======================\n");
printk(log_lvl);
printk(" =======================\n");
}
}

Expand Down

0 comments on commit 165a2c1

Please sign in to comment.