accel/tcg: Fix atomic_mmu_lookup for reads
authorRichard Henderson <richard.henderson@linaro.org>
Fri, 5 May 2023 20:40:49 +0000 (21:40 +0100)
committerRichard Henderson <richard.henderson@linaro.org>
Thu, 11 May 2023 08:49:25 +0000 (09:49 +0100)
A copy-paste bug had us looking at the victim cache for writes.

Cc: qemu-stable@nongnu.org
Reported-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Fixes: 08dff435e2 ("tcg: Probe the proper permissions for atomic ops")
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Message-Id: <20230505204049.352469-1-richard.henderson@linaro.org>

accel/tcg/cputlb.c

index 3117886af144803d1f1742bc799b2fba91862d0d..0b8a5f93d2c88ee246f0db3c986fe8c4e11bb805 100644 (file)
@@ -1835,7 +1835,7 @@ static void *atomic_mmu_lookup(CPUArchState *env, target_ulong addr,
     } else /* if (prot & PAGE_READ) */ {
         tlb_addr = tlbe->addr_read;
         if (!tlb_hit(tlb_addr, addr)) {
-            if (!VICTIM_TLB_HIT(addr_write, addr)) {
+            if (!VICTIM_TLB_HIT(addr_read, addr)) {
                 tlb_fill(env_cpu(env), addr, size,
                          MMU_DATA_LOAD, mmu_idx, retaddr);
                 index = tlb_index(env, mmu_idx, addr);