Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 165a2c1d authored by Hugh Dickins's avatar Hugh Dickins Committed by Linus Torvalds
Browse files

[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: default avatarHugh Dickins <hugh@veritas.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent c2b507fd
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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");
	}
}