summary refs log tree commit diff stats
path: root/results/classifier/deepseek-2-tmp/output/hypervisor/1813940
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-06-30 12:34:26 +0000
committerChristian Krinitsin <mail@krinitsin.com>2025-06-30 12:35:44 +0000
commit25f8033d556aa17afaea4a5196ea7a69fe248320 (patch)
tree0f056db167683be54ea1e5e72d29d6069af55e7d /results/classifier/deepseek-2-tmp/output/hypervisor/1813940
parent8e6da29e4ee5fc14bc1cc816a24f21271f14090d (diff)
downloadqemu-analysis-25f8033d556aa17afaea4a5196ea7a69fe248320.tar.gz
qemu-analysis-25f8033d556aa17afaea4a5196ea7a69fe248320.zip
add new temporary deepseek-r1:14b results
Diffstat (limited to 'results/classifier/deepseek-2-tmp/output/hypervisor/1813940')
-rw-r--r--results/classifier/deepseek-2-tmp/output/hypervisor/181394047
1 files changed, 47 insertions, 0 deletions
diff --git a/results/classifier/deepseek-2-tmp/output/hypervisor/1813940 b/results/classifier/deepseek-2-tmp/output/hypervisor/1813940
new file mode 100644
index 000000000..14296a44a
--- /dev/null
+++ b/results/classifier/deepseek-2-tmp/output/hypervisor/1813940
@@ -0,0 +1,47 @@
+
+kvm_mem_ioeventfd_add: error adding ioeventfd: No space left on device
+
+Latest QEMU master fails to run with too many MMIO devices specified.
+
+After patch 3ac7d43a6fb [1] QEMU just prints an error message and exits.
+> kvm_mem_ioeventfd_add: error adding ioeventfd: No space left on device
+
+This is reproducible e.g. with the following setup:
+
+qemu-3.1.50-dirty \
+    -machine pc-i440fx-2.7,accel=kvm \
+    -cpu host -m 4096 \
+    -smp 2,sockets=2,cores=1,threads=1 \
+    -drive file=freebsd_vm_1.qcow2,format=qcow2,if=none,id=bootdr \
+    -device ide-hd,drive=bootdr,bootindex=0 \
+    -device virtio-scsi-pci,id=vc0 \
+    -device virtio-scsi-pci,id=vc1 \
+    -device virtio-scsi-pci,id=vc2 \
+    -device virtio-scsi-pci,id=vc3 \
+
+Running with just 3 Virtio-SCSI controllers seems to work fine, adding more than that causes the error above. Note that this is not Virtio-SCSI specific. I've also reproduced this without any Virtio devices whatsoever.
+
+strace shows the following ioctl chain over and over:
+
+145787 ioctl(11, KVM_UNREGISTER_COALESCED_MMIO, 0x7f60a4985410) = 0
+145787 ioctl(11, KVM_UNREGISTER_COALESCED_MMIO, 0x7f60a4985410) = 0
+145787 ioctl(11, KVM_REGISTER_COALESCED_MMIO, 0x7f60a49853b0) = 0
+145787 ioctl(11, KVM_REGISTER_COALESCED_MMIO, 0x7f60a49853b0) = -1 ENOSPC (No space left on device)
+145787 ioctl(11, KVM_REGISTER_COALESCED_MMIO, 0x7f60a49853b0) = -1 ENOSPC (No space left on device)
+145787 ioctl(11, KVM_REGISTER_COALESCED_MMIO, 0x7f60a49853b0) = -1 ENOSPC (No space left on device)
+145787 ioctl(11, KVM_REGISTER_COALESCED_MMIO, 0x7f60a49853b0) = -1 ENOSPC (No space left on device)
+145787 ioctl(11, KVM_REGISTER_COALESCED_MMIO, 0x7f60a49853b0) = -1 ENOSPC (No space left on device)
+145787 ioctl(11, KVM_REGISTER_COALESCED_MMIO, 0x7f60a49853b0) = -1 ENOSPC (No space left on device)
+145787 ioctl(11, KVM_REGISTER_COALESCED_MMIO, 0x7f60a49853b0) = -1 ENOSPC (No space left on device)
+145787 ioctl(11, KVM_REGISTER_COALESCED_MMIO, 0x7f60a49853b0) = -1 ENOSPC (No space left on device)
+
+Which suggests there's some kind of MMIO region leak.
+
+[1]
+commit 3ac7d43a6fbb5d4a3d01fc9a055c218030af3727
+Author:     Paolo Bonzini <email address hidden>
+AuthorDate: Wed Nov 28 17:28:45 2018 +0100
+Commit:     Paolo Bonzini <email address hidden>
+CommitDate: Fri Jan 11 13:57:24 2019 +0100
+
+    memory: update coalesced_range on transaction_commit
\ No newline at end of file