diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2023-02-22 17:08:51 -1000 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2023-03-05 13:44:07 -0800 |
commit | 20f7fe93f59fd840b06de2341f789725e382902b (patch) | |
tree | 989354ba814edab551ec6d6f2bed951c7d34f63a /accel | |
parent | 71b7794bbe5ed58070cd4e1f94a4da626998f3c3 (diff) | |
download | qemu-20f7fe93f59fd840b06de2341f789725e382902b.zip qemu-20f7fe93f59fd840b06de2341f789725e382902b.tar.gz qemu-20f7fe93f59fd840b06de2341f789725e382902b.tar.bz2 |
accel/tcg: Retain prot flags from tlb_fill
While changes are made to prot within tlb_set_page_full, they are
an implementation detail of softmmu. Retain the original for any
target use of probe_access_full.
Fixes: 4047368938f6 ("accel/tcg: Introduce tlb_set_page_full")
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'accel')
-rw-r--r-- | accel/tcg/cputlb.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/accel/tcg/cputlb.c b/accel/tcg/cputlb.c index 008ae7a..deafcc7 100644 --- a/accel/tcg/cputlb.c +++ b/accel/tcg/cputlb.c @@ -1250,7 +1250,6 @@ void tlb_set_page_full(CPUState *cpu, int mmu_idx, desc->fulltlb[index] = *full; desc->fulltlb[index].xlat_section = iotlb - vaddr_page; desc->fulltlb[index].phys_addr = paddr_page; - desc->fulltlb[index].prot = prot; /* Now calculate the new entry */ tn.addend = addend - vaddr_page; |