[PATCH] x86: fix stack trace facility level
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>
This commit is contained in:
parent
c2b507fda3
commit
165a2c1d51
1 changed files with 2 additions and 1 deletions
|
@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue