dect
/
linux-2.6
Archived
13
0
Fork 0

[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:
Hugh Dickins 2006-02-04 23:27:51 -08:00 committed by Linus Torvalds
parent c2b507fda3
commit 165a2c1d51
1 changed files with 2 additions and 1 deletions

View File

@ -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");
}
}