diff options
author | Matt Fleming <matt@console-pimps.org> | 2009-08-20 16:00:21 (GMT) |
---|---|---|
committer | Matt Fleming <matt@console-pimps.org> | 2009-08-21 12:04:10 (GMT) |
commit | fe98dd31eb9fe055703e0171134b4d074558d4e9 (patch) | |
tree | ed7f82f1370a5310ff099c3299d3519a52e2e5f0 | |
parent | b344e24a8e8ceda83d1285d22e3e5baf4f5e42d3 (diff) | |
download | linux-fe98dd31eb9fe055703e0171134b4d074558d4e9.tar.xz |
sh: Setup the frame pointer in handle_interrupt
When CONFIG_DWARF_UNWINDER is enabled setup r14 in handle_interrupt, so
that we can figure out what function was running when we were
interrupted.
Signed-off-by: Matt Fleming <matt@console-pimps.org>
-rw-r--r-- | arch/sh/kernel/cpu/sh3/entry.S | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/sh/kernel/cpu/sh3/entry.S b/arch/sh/kernel/cpu/sh3/entry.S index 67ad646..f89ec87 100644 --- a/arch/sh/kernel/cpu/sh3/entry.S +++ b/arch/sh/kernel/cpu/sh3/entry.S @@ -508,6 +508,8 @@ ENTRY(handle_interrupt) bsr save_regs ! needs original pr value in k3 mov #-1, k2 ! default vector kept in k2 + setup_frame_reg + ! Setup return address and jump to do_IRQ mov.l 4f, r9 ! fetch return address lds r9, pr ! put return address in pr |