summary refs log tree commit diff stats
path: root/results/classifier/gemma3:12b/kvm/956
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-07-03 07:27:52 +0000
committerChristian Krinitsin <mail@krinitsin.com>2025-07-03 07:27:52 +0000
commitd0c85e36e4de67af628d54e9ab577cc3fad7796a (patch)
treef8f784b0f04343b90516a338d6df81df3a85dfa2 /results/classifier/gemma3:12b/kvm/956
parent7f4364274750eb8cb39a3e7493132fca1c01232e (diff)
downloademulator-bug-study-d0c85e36e4de67af628d54e9ab577cc3fad7796a.tar.gz
emulator-bug-study-d0c85e36e4de67af628d54e9ab577cc3fad7796a.zip
add deepseek and gemma results
Diffstat (limited to 'results/classifier/gemma3:12b/kvm/956')
-rw-r--r--results/classifier/gemma3:12b/kvm/95643
1 files changed, 43 insertions, 0 deletions
diff --git a/results/classifier/gemma3:12b/kvm/956 b/results/classifier/gemma3:12b/kvm/956
new file mode 100644
index 00000000..73b5cf65
--- /dev/null
+++ b/results/classifier/gemma3:12b/kvm/956
@@ -0,0 +1,43 @@
+
+ARM: When 'virsh dump' exports vmcore, specifies --format compression format, virtual machine assert hangs
+Description of problem:
+**ARM: virsh dump exports vmcore, specifies --format compression format, virtual machine assert hangs**
+
+**why 'virsh dump' page size configured as target page size (64KiB), but 'Implement kvm-steal-time' page size configured as host page size (4KB)?**
+Steps to reproduce:
+The vm image page size is configured as 64KiB, and the host page size is configured as 4KiB
+
+1.start vm
+
+2.Execute the virsh dump command to export vmcore
+
+Specify the compression format of vmcore, --format (kdump-zlib, kdump-snappy, kdump-lzo)
+
+/usr/bin/virsh dump avocado-vt-vm1 /var/tmp/vm.core --memory-only --format kdump-zlib
+
+/usr/bin/virsh dump avocado-vt-vm1 /var/tmp/vm.core --memory-only --format kdump-lzo
+
+/usr/bin/virsh dump avocado-vt-vm1 /var/tmp/vm.core --memory-only --format kdump-snappy
+
+**expected results**: The vmcore file is successfully exported and the virtual machine is running normally.
+
+**actual results**: The vmcore file is not exported normally, and the virtual machine is shut down abnormally.
+Additional information:
+qemu log:
+![image](/uploads/95df79f1cda2531e00906493cc586cda/image.png)
+
+host page size:
+![image](/uploads/1b8f7c6c1c3248b9c68d577105aed65a/image.png)
+
+vm page size:
+![image](/uploads/e11f4013d90ce9cd41966c05aefc56e2/image.png)
+
+dump.c: get_next_page assert:
+![image](/uploads/aa73fc306ff19d6da4ff86fba6860d94/image.png)
+
+The code for the error assert exit is shown above. Here, it will check whether the memory to be dumped is actually aligned with the termination address. It needs to be aligned with the page size of the virtual machine. You can see through gdb that it is 64KiB.
+
+![image](/uploads/7e60743bea0009b1deb97539750630e6/image.png)
+
+After binary search, it was found that a feature of kvm_steal_time was added to arm in version 5.2. Added the following code:
+![image](/uploads/1caf8df4b3599b3c453a11592d0ce033/image.png)