summaryrefslogtreecommitdiffstats
path: root/arch/powerpc
diff options
context:
space:
mode:
authorChristophe Leroy <christophe.leroy@c-s.fr>2019-01-29 16:37:55 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-03-23 20:10:08 +0100
commitd6d004b3dd7014c4c0ab3530764725ce6812f9da (patch)
tree31a48a19159d65f02d60f5d47a7f8b344806c22c /arch/powerpc
parent461a52a448937271cad6ba857f17d25f1685339d (diff)
downloadlinux-stable-d6d004b3dd7014c4c0ab3530764725ce6812f9da.tar.gz
linux-stable-d6d004b3dd7014c4c0ab3530764725ce6812f9da.tar.bz2
linux-stable-d6d004b3dd7014c4c0ab3530764725ce6812f9da.zip
powerpc/traps: Fix the message printed when stack overflows
commit 9bf3d3c4e4fd82c7174f4856df372ab2a71005b9 upstream. Today's message is useless: [ 42.253267] Kernel stack overflow in process (ptrval), r1=c65500b0 This patch fixes it: [ 66.905235] Kernel stack overflow in process sh[356], r1=c65560b0 Fixes: ad67b74d2469 ("printk: hash addresses printed with %p") Cc: stable@vger.kernel.org # v4.15+ Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr> [mpe: Use task_pid_nr()] Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r--arch/powerpc/kernel/traps.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/kernel/traps.c b/arch/powerpc/kernel/traps.c
index cd0d32e9cf50..02fe6d020174 100644
--- a/arch/powerpc/kernel/traps.c
+++ b/arch/powerpc/kernel/traps.c
@@ -1545,8 +1545,8 @@ bail:
void StackOverflow(struct pt_regs *regs)
{
- printk(KERN_CRIT "Kernel stack overflow in process %p, r1=%lx\n",
- current, regs->gpr[1]);
+ pr_crit("Kernel stack overflow in process %s[%d], r1=%lx\n",
+ current->comm, task_pid_nr(current), regs->gpr[1]);
debugger(regs);
show_regs(regs);
panic("kernel stack overflow");