Skip to content

Commit

Permalink
powerpc/ftrace: Fix stack teardown in ftrace_no_trace
Browse files Browse the repository at this point in the history
Commit 41a506e ("powerpc/ftrace: Create a dummy stackframe to fix
stack unwind") added use of a new stack frame on ftrace entry to fix
stack unwind. However, the commit missed updating the offset used while
tearing down the ftrace stack when ftrace is disabled. Fix the same.

In addition, the commit missed saving the correct stack pointer in
pt_regs. Update the same.

Fixes: 41a506e ("powerpc/ftrace: Create a dummy stackframe to fix stack unwind")
Cc: [email protected]
Signed-off-by: Naveen N Rao <[email protected]>
  • Loading branch information
rnav authored and intel-lab-lkp committed Nov 30, 2023
1 parent 9a15ae6 commit 004b07a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/powerpc/kernel/trace/ftrace_entry.S
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
.endif

/* Save previous stack pointer (r1) */
addi r8, r1, SWITCH_FRAME_SIZE
addi r8, r1, SWITCH_FRAME_SIZE+STACK_FRAME_MIN_SIZE
PPC_STL r8, GPR1(r1)

.if \allregs == 1
Expand Down Expand Up @@ -182,7 +182,7 @@ ftrace_no_trace:
mflr r3
mtctr r3
REST_GPR(3, r1)
addi r1, r1, SWITCH_FRAME_SIZE
addi r1, r1, SWITCH_FRAME_SIZE+STACK_FRAME_MIN_SIZE
mtlr r0
bctr
#endif
Expand Down

0 comments on commit 004b07a

Please sign in to comment.