Skip to content

Commit 2bbbeb0

Browse files
committedJul 3, 2023
Merge tag 'v8.0.2' into utm-edition
v8.0.2 release
2 parents 689c8fd + f7f686b commit 2bbbeb0

File tree

106 files changed

+1181
-528
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+1181
-528
lines changed
 

‎VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8.0.0
1+
8.0.2

‎accel/tcg/cputlb.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1830,7 +1830,7 @@ static void *atomic_mmu_lookup(CPUArchState *env, target_ulong addr,
18301830
} else /* if (prot & PAGE_READ) */ {
18311831
tlb_addr = tlbe->addr_read;
18321832
if (!tlb_hit(tlb_addr, addr)) {
1833-
if (!VICTIM_TLB_HIT(addr_write, addr)) {
1833+
if (!VICTIM_TLB_HIT(addr_read, addr)) {
18341834
tlb_fill(env_cpu(env), addr, size,
18351835
MMU_DATA_LOAD, mmu_idx, retaddr);
18361836
index = tlb_index(env, mmu_idx, addr);

0 commit comments

Comments
 (0)
Please sign in to comment.