* [Qemu-devel] [PATCH] monitor: make 'eject' work when there is no disk on the host drive
@ 2009-11-30 21:06 Eduardo Habkost
0 siblings, 0 replies; only message in thread
From: Eduardo Habkost @ 2009-11-30 21:06 UTC (permalink / raw)
To: Anthony Liguori; +Cc: qemu-devel
This patch changes the monitor eject_device() function to not check for
bdrv_is_inserted().
Example run where the bug manifests itself:
(output of 'info block' is stripped to include only the CD-ROM device)
QEMU 0.11.50 monitor - type 'help' for more information
(qemu) info block
ide1-cd0: type=cdrom removable=1 locked=0 [not inserted]
(qemu) change ide1-cd0 /mnt/common/images/smalldisk1.img
(qemu) info block
ide1-cd0: type=cdrom removable=1 locked=0 file=/mnt/common/images/smalldisk1.img ro=0 drv=raw encrypted=0
(qemu) eject ide1-cd0
(qemu) info block
ide1-cd0: type=cdrom removable=1 locked=0 [not inserted]
When using a file, eject works as expected. But when using a host cdrom device:
(qemu) change ide1-cd0 /dev/cdrom
(qemu) info block
ide1-cd0: type=cdrom removable=1 locked=0 file=/dev/cdrom ro=0 drv=host_cdrom encrypted=0
(qemu) eject ide1-cd0
(qemu) info block
ide1-cd0: type=cdrom removable=1 locked=0 file=/dev/cdrom ro=0 drv=host_cdrom encrypted=0
Eject didn't work because the is_inserted() check fails.
I have no clue why the code had the is_inserted() check, as it doesn't matter
if there is a disk present at the host drive, when the user wants the virtual
device to be disconnected from the host device.
The is_inserted() check has another bad side effect: a memory leak (and other
potential problems caused by a missing bdrv_close() call), if the 'change'
command is used multiple times when there is no disk on the host drive, as
do_change() calls eject_device() before re-opening the block device, but
bdrv_close() is never called.
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
---
monitor.c | 20 +++++++++-----------
1 files changed, 9 insertions(+), 11 deletions(-)
diff --git a/monitor.c b/monitor.c
index 3286ba2..042aba5 100644
--- a/monitor.c
+++ b/monitor.c
@@ -554,19 +554,17 @@ static void do_quit(Monitor *mon, const QDict *qdict, QObject **ret_data)
static int eject_device(Monitor *mon, BlockDriverState *bs, int force)
{
- if (bdrv_is_inserted(bs)) {
- if (!force) {
- if (!bdrv_is_removable(bs)) {
- monitor_printf(mon, "device is not removable\n");
- return -1;
- }
- if (bdrv_is_locked(bs)) {
- monitor_printf(mon, "device is locked\n");
- return -1;
- }
+ if (!force) {
+ if (!bdrv_is_removable(bs)) {
+ monitor_printf(mon, "device is not removable\n");
+ return -1;
+ }
+ if (bdrv_is_locked(bs)) {
+ monitor_printf(mon, "device is locked\n");
+ return -1;
}
- bdrv_close(bs);
}
+ bdrv_close(bs);
return 0;
}
--
1.6.3.rc4.29.g8146
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2009-11-30 21:06 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-30 21:06 [Qemu-devel] [PATCH] monitor: make 'eject' work when there is no disk on the host drive Eduardo Habkost
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).