summary refs log tree commit diff stats
path: root/gitlab/issues_text/target_arm/host_missing/accel_missing/1640
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-06-01 21:35:14 +0200
committerChristian Krinitsin <mail@krinitsin.com>2025-06-01 21:35:14 +0200
commit3e4c5a6261770bced301b5e74233e7866166ea5b (patch)
tree9379fddaba693ef8a045da06efee8529baa5f6f4 /gitlab/issues_text/target_arm/host_missing/accel_missing/1640
parente5634e2806195bee44407853c4bf8776f7abfa4f (diff)
downloadqemu-analysis-3e4c5a6261770bced301b5e74233e7866166ea5b.tar.gz
qemu-analysis-3e4c5a6261770bced301b5e74233e7866166ea5b.zip
clean up repository
Diffstat (limited to 'gitlab/issues_text/target_arm/host_missing/accel_missing/1640')
-rw-r--r--gitlab/issues_text/target_arm/host_missing/accel_missing/164025
1 files changed, 0 insertions, 25 deletions
diff --git a/gitlab/issues_text/target_arm/host_missing/accel_missing/1640 b/gitlab/issues_text/target_arm/host_missing/accel_missing/1640
deleted file mode 100644
index 5284aa9eb..000000000
--- a/gitlab/issues_text/target_arm/host_missing/accel_missing/1640
+++ /dev/null
@@ -1,25 +0,0 @@
-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:
-