]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
powerpc/64/sstep: Ifdef the deprecated fast endian switch syscall
authorNicholas Piggin <npiggin@gmail.com>
Tue, 25 Feb 2020 17:35:33 +0000 (03:35 +1000)
committerMichael Ellerman <mpe@ellerman.id.au>
Wed, 1 Apr 2020 02:42:13 +0000 (13:42 +1100)
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20200225173541.1549955-25-npiggin@gmail.com
arch/powerpc/lib/sstep.c

index c077acb983a19f8831bd46cbb8ec2d5e051d4974..5f3a7bd9d90db96fb21c49a169c301ecc5586763 100644 (file)
@@ -3179,8 +3179,9 @@ int emulate_step(struct pt_regs *regs, unsigned int instr)
                 * entry code works.  If that is changed, this will
                 * need to be changed also.
                 */
-               if (regs->gpr[0] == 0x1ebe &&
-                   cpu_has_feature(CPU_FTR_REAL_LE)) {
+               if (IS_ENABLED(CONFIG_PPC_FAST_ENDIAN_SWITCH) &&
+                               cpu_has_feature(CPU_FTR_REAL_LE) &&
+                               regs->gpr[0] == 0x1ebe) {
                        regs->msr ^= MSR_LE;
                        goto instr_done;
                }