[PARISC] dump_stack in show_regs

Originally, show_stack was used in BUG() output. However, a recent commit
changed it to print register state (no idea what that's supposed to help,
really...) and parisc was missing a backtrace because of it.

Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>

+2
+2
arch/parisc/kernel/traps.c
··· 148 148 print_symbol(" IAOQ[1]: %s\n", regs->iaoq[1]); 149 149 printk(level); 150 150 print_symbol(" RP(r2): %s\n", regs->gr[2]); 151 + 152 + dump_stack(); 151 153 } 152 154 153 155