Message ID | 20220224162215.3406642-1-anders.roxell@linaro.org |
---|---|
State | Accepted |
Commit | a633cb1edddaa643fadc70abc88f89a408fa834a |
Headers | show |
Series | [PATCHv2,1/3] powerpc: lib: sstep: fix 'sthcx' instruction | expand |
On Thu, 24 Feb 2022 17:22:13 +0100, Anders Roxell wrote: > Looks like there been a copy paste mistake when added the instruction > 'stbcx' twice and one was probably meant to be 'sthcx'. > Changing to 'sthcx' from 'stbcx'. > > Applied to powerpc/next. [1/3] powerpc: lib: sstep: fix 'sthcx' instruction https://git.kernel.org/powerpc/c/a633cb1edddaa643fadc70abc88f89a408fa834a [2/3] powerpc: fix build errors https://git.kernel.org/powerpc/c/8667d0d64dd1f84fd41b5897fd87fa9113ae05e3 [3/3] powerpc: lib: sstep: fix build errors https://git.kernel.org/powerpc/c/8219d31effa7be5dbc7ff915d7970672e028c701 cheers
diff --git a/arch/powerpc/lib/sstep.c b/arch/powerpc/lib/sstep.c index bd3734d5be89..d2d29243fa6d 100644 --- a/arch/powerpc/lib/sstep.c +++ b/arch/powerpc/lib/sstep.c @@ -3389,7 +3389,7 @@ int emulate_loadstore(struct pt_regs *regs, struct instruction_op *op) __put_user_asmx(op->val, ea, err, "stbcx.", cr); break; case 2: - __put_user_asmx(op->val, ea, err, "stbcx.", cr); + __put_user_asmx(op->val, ea, err, "sthcx.", cr); break; #endif case 4:
Looks like there been a copy paste mistake when added the instruction 'stbcx' twice and one was probably meant to be 'sthcx'. Changing to 'sthcx' from 'stbcx'. Cc: <stable@vger.kernel.org> # v4.13+ Fixes: 350779a29f11 ("powerpc: Handle most loads and stores in instruction emulation code") Reported-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Anders Roxell <anders.roxell@linaro.org> --- arch/powerpc/lib/sstep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)