summary refs log tree commit diff stats
path: root/results/classifier/user-mode-bugs/1824778
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-07-06 16:43:19 +0000
committerChristian Krinitsin <mail@krinitsin.com>2025-07-06 16:43:19 +0000
commit238ec2b7cc1557d6f34c33cc482e4d0cd3e266dd (patch)
treecd8a1b75ba7b3543eb7fe6857f408e7be4d9fd0b /results/classifier/user-mode-bugs/1824778
parent96049c939b1916d80532630d63c14e04d5244f1d (diff)
downloadqemu-analysis-238ec2b7cc1557d6f34c33cc482e4d0cd3e266dd.tar.gz
qemu-analysis-238ec2b7cc1557d6f34c33cc482e4d0cd3e266dd.zip
add results
Diffstat (limited to 'results/classifier/user-mode-bugs/1824778')
-rw-r--r--results/classifier/user-mode-bugs/18247789
1 files changed, 9 insertions, 0 deletions
diff --git a/results/classifier/user-mode-bugs/1824778 b/results/classifier/user-mode-bugs/1824778
new file mode 100644
index 000000000..aa50d5d8c
--- /dev/null
+++ b/results/classifier/user-mode-bugs/1824778
@@ -0,0 +1,9 @@
+
+PowerPC64: tlbivax does not work for addresses above 4G
+
+The tlbivax instruction in QEMU does not work for address above 4G. The reason behind this is a simple 32bit trunction of an address.
+Changing the argument ea from uint32_t to target_ulong for the function booke206_invalidate_ea_tlb() in target/ppc/mmu_helper.c solves the issue.
+
+I did not reproduce this using Linux so I have no public example for reproducing it. However it's a pretty straight forward change.
+
+Issue can be seen in all version of QEMU.
\ No newline at end of file