Skip to content
Snippets Groups Projects
Commit d0347b49 authored by Kyle McMartin's avatar Kyle McMartin
Browse files

[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: default avatarKyle McMartin <kyle@parisc-linux.org>
parent ff451d70
Branches
Tags
No related merge requests found
...@@ -148,6 +148,8 @@ void show_regs(struct pt_regs *regs) ...@@ -148,6 +148,8 @@ void show_regs(struct pt_regs *regs)
print_symbol(" IAOQ[1]: %s\n", regs->iaoq[1]); print_symbol(" IAOQ[1]: %s\n", regs->iaoq[1]);
printk(level); printk(level);
print_symbol(" RP(r2): %s\n", regs->gr[2]); print_symbol(" RP(r2): %s\n", regs->gr[2]);
dump_stack();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment