Skip to content

Commit

Permalink
powerpc/ppc64: Remove the unneeded load of ti_flags in resume_kernel
Browse files Browse the repository at this point in the history
We already got the value of current_thread_info and ti_flags and store
them into r9 and r4 respectively before jumping to resume_kernel. So
there is no reason to reload them again.

Signed-off-by: Kevin Hao <haokexin@gmail.com>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
  • Loading branch information
Kevin Hao authored and Benjamin Herrenschmidt committed Oct 11, 2013
1 parent 1443d6a commit 0edfdd1
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions arch/powerpc/kernel/entry_64.S
Original file line number Diff line number Diff line change
Expand Up @@ -673,9 +673,7 @@ _GLOBAL(ret_from_except_lite)

resume_kernel:
/* check current_thread_info, _TIF_EMULATE_STACK_STORE */
CURRENT_THREAD_INFO(r9, r1)
ld r8,TI_FLAGS(r9)
andis. r8,r8,_TIF_EMULATE_STACK_STORE@h
andis. r8,r4,_TIF_EMULATE_STACK_STORE@h
beq+ 1f

addi r8,r1,INT_FRAME_SIZE /* Get the kprobed function entry */
Expand Down

0 comments on commit 0edfdd1

Please sign in to comment.