powerpc/64s: Mask NIP before checking against SRR0
authorMichael Ellerman <mpe@ellerman.id.au>
Tue, 21 Dec 2021 13:50:59 +0000 (00:50 +1100)
committerMichael Ellerman <mpe@ellerman.id.au>
Fri, 24 Dec 2021 23:55:55 +0000 (10:55 +1100)
commit314f6c23dd8d417281eb9e8a516dd98036f2e7b3
tree8c033c69bddd0b97095fd2db5392052b6412f35f
parent5b09250cca85ae6f91c9562cf1f5e5747de0a75d
powerpc/64s: Mask NIP before checking against SRR0

When CONFIG_PPC_RFI_SRR_DEBUG=y we check that NIP and SRR0 match when
returning from interrupts. This can trigger falsely if NIP has either of
its two low bits set via sigreturn or ptrace, while SRR0 has its low two
bits masked in hardware.

As a quick fix make sure to mask the low bits before doing the check.

Fixes: 59dc5bfca0cb ("powerpc/64s: avoid reloading (H)SRR registers if they are still valid")
Reported-by: Sachin Sant <sachinp@linux.vnet.ibm.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Tested-by: Sachin Sant <sachinp@linux.vnet.ibm.com>
Link: https://lore.kernel.org/r/20211221135101.2085547-1-mpe@ellerman.id.au
arch/powerpc/kernel/interrupt_64.S