blob: 021c035c2daf6eeda1133f62afb61830087393e1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
device: 0.952
graphic: 0.916
PID: 0.740
semantic: 0.683
performance: 0.679
debug: 0.652
vnc: 0.630
files: 0.622
permissions: 0.481
boot: 0.464
socket: 0.418
network: 0.381
other: 0.151
KVM: 0.134
Cannot write to MTP Devices in Qemu 6.0.0+
Description of problem:
QEMU versions above 6.0.0 are no longer able to write to MTP devices, the kernel prints a warning which is unique to versions above 6.0.0:
```
usb-mtp: file monitoring init failed: File monitoring not available on this platform is just warning
```
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:
```
mkdir mtpDevice && jmtpfs mtpDevice
```
3. Try to write to the mtp device:
```
touch mtpDevice/test
```
4. Observe that you will get an input/output error when trying to write to the device, like this:
```
vm-test-run-mtp> client: must succeed: /nix/store/xmib7222ybr72iyycra4w386s8p1k4av-jmtpfsTest.sh >&2
vm-test-run-mtp> client # Device 0 (VID=46f4 and PID=0004) is a QEMU Virtual MTP.
vm-test-run-mtp> client # qemu-system-x86_64: usb-mtp: file monitoring init failed: File monitoring not available on this platform
vm-test-run-mtp> client # /nix/store/xmib7222ybr72iyycra4w386s8p1k4av-jmtpfsTest.sh: line 4: phone/tmp/testFile: Input/output error
```
Additional information:
|