diff options
author | Nikolay Borisov <Nikolay.Borisov@arm.com> | 2014-06-03 14:49:14 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2014-07-18 07:29:16 -0400 |
commit | c8bee0ad78b2107ffb56fa82f0ab2b762311d172 (patch) | |
tree | 080712a909517e8f131d06824a1dd2284f9ce40e | |
parent | a3250c92aa83e199624133e692a92ecc1d3e7466 (diff) |
ARM: 8073/1: unwind: Use arm_get_current_stackframe
Make the unwind code use the correct API so that the frame pointer
is extracted from the correct register.
Signed-off-by: Nikolay Borisov <Nikolay.Borisov@arm.com>
Acked-by: Will Deacon <will.deacon@arm.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
-rw-r--r-- | arch/arm/kernel/unwind.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/arch/arm/kernel/unwind.c b/arch/arm/kernel/unwind.c index e67682f02cb2..a61a1dfbb0db 100644 --- a/arch/arm/kernel/unwind.c +++ b/arch/arm/kernel/unwind.c | |||
@@ -479,12 +479,10 @@ void unwind_backtrace(struct pt_regs *regs, struct task_struct *tsk) | |||
479 | tsk = current; | 479 | tsk = current; |
480 | 480 | ||
481 | if (regs) { | 481 | if (regs) { |
482 | frame.fp = regs->ARM_fp; | 482 | arm_get_current_stackframe(regs, &frame); |
483 | frame.sp = regs->ARM_sp; | ||
484 | frame.lr = regs->ARM_lr; | ||
485 | /* PC might be corrupted, use LR in that case. */ | 483 | /* PC might be corrupted, use LR in that case. */ |
486 | frame.pc = kernel_text_address(regs->ARM_pc) | 484 | if (!kernel_text_address(regs->ARM_pc)) |
487 | ? regs->ARM_pc : regs->ARM_lr; | 485 | frame.pc = regs->ARM_lr; |
488 | } else if (tsk == current) { | 486 | } else if (tsk == current) { |
489 | frame.fp = (unsigned long)__builtin_frame_address(0); | 487 | frame.fp = (unsigned long)__builtin_frame_address(0); |
490 | frame.sp = current_sp; | 488 | frame.sp = current_sp; |