diff options
author | Helge Deller <deller@gmx.de> | 2017-01-02 11:43:15 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-01-12 05:39:06 -0500 |
commit | e569eef6298adbcc98ca029cc6763b1d854b1bed (patch) | |
tree | f69c5351a6899850bcdaa573025f2224e9e2dc62 /arch/parisc | |
parent | d259b685373231b8c85f95633e0a702352077ef6 (diff) |
parisc: Add line-break when printing segfault info
commit b4a9eb4cd5966c8aad3d007d206a2cbda97d6928 upstream.
Add a leading line break else printed line gets too long.
Signed-off-by: Helge Deller <deller@gmx.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch/parisc')
-rw-r--r-- | arch/parisc/mm/fault.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/parisc/mm/fault.c b/arch/parisc/mm/fault.c index 8ff9253930af..1a0b4f63f0e9 100644 --- a/arch/parisc/mm/fault.c +++ b/arch/parisc/mm/fault.c | |||
@@ -234,7 +234,7 @@ show_signal_msg(struct pt_regs *regs, unsigned long code, | |||
234 | tsk->comm, code, address); | 234 | tsk->comm, code, address); |
235 | print_vma_addr(KERN_CONT " in ", regs->iaoq[0]); | 235 | print_vma_addr(KERN_CONT " in ", regs->iaoq[0]); |
236 | 236 | ||
237 | pr_cont(" trap #%lu: %s%c", code, trap_name(code), | 237 | pr_cont("\ntrap #%lu: %s%c", code, trap_name(code), |
238 | vma ? ',':'\n'); | 238 | vma ? ',':'\n'); |
239 | 239 | ||
240 | if (vma) | 240 | if (vma) |