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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
id = 678
title = "eject (monitor command) not work for blockdev cdrom"
state = "opened"
created_at = "2021-10-18T08:43:41.026Z"
closed_at = "n/a"
labels = ["Storage"]
url = "https://gitlab.com/qemu-project/qemu/-/issues/678"
host-os = "Debian 11.1 Bullseye"
host-arch = "amd64"
qemu-version = "QEMU emulator version 5.2.0 (Debian 1:5.2+dfsg-11+deb11u1)"
guest-os = "Windows 10 1607"
guest-arch = "amd64"
description = """cdrom1 device work fine, all files reads, but when i whant to eject CD-ROM disk from device by telnet monitor, it not work."""
reproduce = """1. Connect to monitor with
```
telnet 127.0.0.1 9100
(QEMU 5.2.0 monitor - type 'help' for more information)
```
2. Show block devices
```
info block
cdrom1-format: /mnt/soft/QEMU/Windows VirtIO Drivers/virtio-win-0.1.208-1.iso (raw, read-only)
Attached to: cdrom1
Removable device: not locked, tray closed
Cache mode: writeback
```
3. Send eject commands
```
eject cdrom1
Error: Device 'cdrom1' not found
eject cdrom1-format
Error: Device 'cdrom1-format' not found
eject cdrom1-storage
Error: Device 'cdrom1-storage' not found
```"""
additional = """When i run qemu with next lines (replace -blockdev to -drive):
```
-device ide-cd,bus=ide.1,drive=cdrom1,id=idecd1,bootindex=2
-drive if=none,id=cdrom1,media=cdrom,readonly=on,file="/mnt/soft/QEMU/Windows VirtIO Drivers/virtio-win-0.1.208-1.iso"
```
eject cdrom1 command work fine
```
info block
cdrom1 (#block133): /mnt/soft/QEMU/Windows VirtIO Drivers/virtio-win-0.1.208-1.iso (raw, read-only)
Attached to: idecd1
Removable device: not locked, tray closed
Cache mode: writeback
eject cdrom1
```
Also i found a similar bug description on this link https://bugs.launchpad.net/qemu/+bug/1799766"""
|