[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v5 for-6.1 0/9] target/arm mte fixes
From: |
Richard Henderson |
Subject: |
[PATCH v5 for-6.1 0/9] target/arm mte fixes |
Date: |
Fri, 16 Apr 2021 11:30:57 -0700 |
Changes for v5:
* Rebase. Three patches upstream and a minor conflict fixed.
Changes for v4:
* Fix tag count computation error in mte_checkN, which when used
by mte_check1 in patch 5, caused all sorts of KASAN failures.
* Fix PAGE_ANON / PAGE_TARGET_1 overlap.
r~
Richard Henderson (9):
target/arm: Fix mte_checkN
target/arm: Split out mte_probe_int
target/arm: Fix unaligned checks for mte_check1, mte_probe1
test/tcg/aarch64: Add mte-5
target/arm: Replace MTEDESC ESIZE+TSIZE with SIZEM1
target/arm: Merge mte_check1, mte_checkN
target/arm: Rename mte_probe1 to mte_probe
target/arm: Simplify sve mte checking
target/arm: Remove log2_esize parameter to gen_mte_checkN
target/arm/helper-a64.h | 3 +-
target/arm/internals.h | 11 +-
target/arm/translate-a64.h | 2 +-
target/arm/mte_helper.c | 183 ++++++++++++------------------
target/arm/sve_helper.c | 100 ++++++----------
target/arm/translate-a64.c | 22 ++--
target/arm/translate-sve.c | 9 +-
tests/tcg/aarch64/mte-5.c | 44 +++++++
tests/tcg/aarch64/Makefile.target | 2 +-
9 files changed, 172 insertions(+), 204 deletions(-)
create mode 100644 tests/tcg/aarch64/mte-5.c
--
2.25.1
- [PATCH v5 for-6.1 0/9] target/arm mte fixes,
Richard Henderson <=
- [PATCH v5 1/9] target/arm: Fix mte_checkN, Richard Henderson, 2021/04/16
- [PATCH v5 2/9] target/arm: Split out mte_probe_int, Richard Henderson, 2021/04/16
- [PATCH v5 3/9] target/arm: Fix unaligned checks for mte_check1, mte_probe1, Richard Henderson, 2021/04/16
- [PATCH v5 7/9] target/arm: Rename mte_probe1 to mte_probe, Richard Henderson, 2021/04/16
- [PATCH v5 4/9] test/tcg/aarch64: Add mte-5, Richard Henderson, 2021/04/16
- [PATCH v5 8/9] target/arm: Simplify sve mte checking, Richard Henderson, 2021/04/16
- [PATCH v5 6/9] target/arm: Merge mte_check1, mte_checkN, Richard Henderson, 2021/04/16