linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] arm64: armv8_deprecated: Fix undef_hook mask for thumb setend
@ 2020-04-06 14:16 Fredrik Strupe
  2020-04-07  9:27 ` Catalin Marinas
  0 siblings, 1 reply; 10+ messages in thread
From: Fredrik Strupe @ 2020-04-06 14:16 UTC (permalink / raw)
  To: linux-kernel, linux-arm-kernel, Will Deacon, Catalin Marinas

Use a full 32-bit mask to prevent accidental matchings of thumb32
instructions where the second half-word is equal to the thumb16 setend
encoding.

This fixes the same problem as the following patch:

     https://lkml.org/lkml/2020/3/16/341

but for setend emulation instead.

Signed-off-by: Fredrik Strupe <fredrik@strupe.net>
---
  arch/arm64/kernel/armv8_deprecated.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/kernel/armv8_deprecated.c b/arch/arm64/kernel/armv8_deprecated.c
index 9d3442d62..8c06dfee0 100644
--- a/arch/arm64/kernel/armv8_deprecated.c
+++ b/arch/arm64/kernel/armv8_deprecated.c
@@ -609,7 +609,7 @@ static struct undef_hook setend_hooks[] = {
  	},
  	{
  		/* Thumb mode */
-		.instr_mask	= 0x0000fff7,
+		.instr_mask	= 0xfffffff7,
  		.instr_val	= 0x0000b650,
  		.pstate_mask	= (PSR_AA32_T_BIT | PSR_AA32_MODE_MASK),
  		.pstate_val	= (PSR_AA32_T_BIT | PSR_AA32_MODE_USR),
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2020-04-08 17:17 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-06 14:16 [PATCH] arm64: armv8_deprecated: Fix undef_hook mask for thumb setend Fredrik Strupe
2020-04-07  9:27 ` Catalin Marinas
2020-04-07 10:47   ` Suzuki K Poulose
2020-04-07 11:12     ` Fredrik Strupe
2020-04-07 11:18     ` Fredrik Strupe
2020-04-08  9:01       ` Catalin Marinas
2020-04-08  9:58         ` Fredrik Strupe
2020-04-08 11:29           ` [PATCH v2] " Fredrik Strupe
2020-04-08 11:39             ` Suzuki K Poulose
2020-04-08 17:17             ` Catalin Marinas

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).