summary refs log tree commit diff stats
path: root/results/classifier/118/virtual/1640
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-06-16 16:59:00 +0000
committerChristian Krinitsin <mail@krinitsin.com>2025-06-16 16:59:33 +0000
commit9aba81d8eb048db908c94a3c40c25a5fde0caee6 (patch)
treeb765e7fb5e9a3c2143c68b0414e0055adb70e785 /results/classifier/118/virtual/1640
parentb89a938452613061c0f1f23e710281cf5c83cb29 (diff)
downloadqemu-analysis-9aba81d8eb048db908c94a3c40c25a5fde0caee6.tar.gz
qemu-analysis-9aba81d8eb048db908c94a3c40c25a5fde0caee6.zip
add 18th iteration of classifier
Diffstat (limited to 'results/classifier/118/virtual/1640')
-rw-r--r--results/classifier/118/virtual/164055
1 files changed, 55 insertions, 0 deletions
diff --git a/results/classifier/118/virtual/1640 b/results/classifier/118/virtual/1640
new file mode 100644
index 000000000..a38171f07
--- /dev/null
+++ b/results/classifier/118/virtual/1640
@@ -0,0 +1,55 @@
+arm: 0.955
+virtual: 0.943
+architecture: 0.942
+graphic: 0.924
+device: 0.922
+kernel: 0.808
+PID: 0.804
+network: 0.803
+vnc: 0.793
+performance: 0.793
+VMM: 0.786
+socket: 0.771
+files: 0.744
+hypervisor: 0.737
+peripherals: 0.712
+boot: 0.704
+ppc: 0.692
+register: 0.632
+risc-v: 0.616
+permissions: 0.589
+debug: 0.572
+TCG: 0.553
+user-level: 0.441
+semantic: 0.435
+mistranslation: 0.420
+x86: 0.225
+assembly: 0.139
+i386: 0.139
+KVM: 0.100
+
+aarch64: usb_mtp_get_data: Assertion `(s->dataset.size == 0xFFFFFFFF) || (s->dataset.size == d->offset)' failed
+Description of problem:
+When attempting to write to an MTP device in QEMU 8.0.0 on arm64, QEMU will crash at runtime with the following error:
+`qemu-system-aarch64: ../hw/usb/dev-mtp.c:1819: usb_mtp_get_data: Assertion '(s->dataset.size == 0xFFFFFFFF) || (s->dataset.size == d->offset)' failed.`
+
+This was observed in Nixpkgs where we use QEMU to provide automated testing of MTP devices for GVFS and jmtpfs, the full log for that test run that crashes due to this QEMU regression on arm64 is available here https://hydra.nixos.org/build/218858556/nixlog/1
+Steps to reproduce:
+1. Launch a QEMU virtual machine with `-usb -device usb-mtp,rootdir=/tmp,readonly=false` using any QEMU version above 6.0.0
+2. Mount the MTP device using something like:
+   ```
+   mkdir mtpDevice && jmtpfs mtpDevice
+   ```
+3. Try to write to the mtp device:
+   ```
+   dd if=/dev/urandom of=./mtpDevice/file
+   ```
+4. Observe that QEMU will crash when trying to write to the device, like this:
+   ```
+   client # 10+0 records in
+   client # 10+0 records out
+   client # 10485760 bytes (10 MB, 10 MiB) copied, 0.0318363 s, 329 MB/s
+   client # qemu-system-aarch64: ../hw/usb/dev-mtp.c:1819: usb_mtp_get_data: Assertion '(s->dataset.size == 0xFFFFFFFF) || (s->dataset.size == d->offset)' failed.error
+   ```
+Additional information:
+