summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2022-07-07 11:36:08 +0100
committerPeter Maydell <peter.maydell@linaro.org>2022-07-07 11:36:08 +0100
commit95047cdeb3d6cb8e4e2fecc82994afbb51b3352e (patch)
tree89a4d91cedbe1e7b85b588c8be17b3283919e78f
parenta4f3791143d8f98a5a9216b94d33a232ebf12c25 (diff)
downloadfocaccia-qemu-95047cdeb3d6cb8e4e2fecc82994afbb51b3352e.tar.gz
focaccia-qemu-95047cdeb3d6cb8e4e2fecc82994afbb51b3352e.zip
target/arm: Record tagged bit for user-only in sve_probe_page
Fixes a bug in that we were not honoring MTE from user-only
SVE. Copy the user-only MTE logic from allocation_tag_mem
into sve_probe_page.

Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r--target/arm/sve_helper.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/target/arm/sve_helper.c b/target/arm/sve_helper.c
index db15d03ded..0c6379e6e8 100644
--- a/target/arm/sve_helper.c
+++ b/target/arm/sve_helper.c
@@ -5337,6 +5337,9 @@ bool sve_probe_page(SVEHostPage *info, bool nofault, CPUARMState *env,
 
 #ifdef CONFIG_USER_ONLY
     memset(&info->attrs, 0, sizeof(info->attrs));
+    /* Require both MAP_ANON and PROT_MTE -- see allocation_tag_mem. */
+    arm_tlb_mte_tagged(&info->attrs) =
+        (flags & PAGE_ANON) && (flags & PAGE_MTE);
 #else
     /*
      * Find the iotlbentry for addr and return the transaction attributes.