Skip to content

Commit

Permalink
powerpc: 32 bit getcpu VDSO function uses 64 bit instructions
Browse files Browse the repository at this point in the history
I used some 64 bit instructions when adding the 32 bit getcpu VDSO
function. Fix it.

Fixes: 18ad51d ("powerpc: Add VDSO version of getcpu")
Cc: [email protected]
Signed-off-by: Anton Blanchard <[email protected]>
Signed-off-by: Michael Ellerman <[email protected]>
  • Loading branch information
antonblanchard authored and mpe committed Nov 26, 2014
1 parent 360d88a commit 152d44a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/powerpc/kernel/vdso32/getcpu.S
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
V_FUNCTION_BEGIN(__kernel_getcpu)
.cfi_startproc
mfspr r5,SPRN_SPRG_VDSO_READ
cmpdi cr0,r3,0
cmpdi cr1,r4,0
cmpwi cr0,r3,0
cmpwi cr1,r4,0
clrlwi r6,r5,16
rlwinm r7,r5,16,31-15,31-0
beq cr0,1f
Expand Down

0 comments on commit 152d44a

Please sign in to comment.