qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Eduardo Habkost <ehabkost@redhat.com>
To: Anthony Liguori <anthony@codemonkey.ws>
Cc: Naphtali Sprei <nsprei@redhat.com>,
	qemu-devel@nongnu.org, Luiz Capitulino <lcapitulino@redhat.com>
Subject: [Qemu-devel] [PATCH 1/2] monitor: allow device to be ejected if no disk is inserted
Date: Thu,  3 Dec 2009 14:33:20 -0200	[thread overview]
Message-ID: <1259858001-1273-2-git-send-email-ehabkost@redhat.com> (raw)
In-Reply-To: <1259858001-1273-1-git-send-email-ehabkost@redhat.com>

This 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() has another side effect: a memory leak if the "change"
command is used multiple times, 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 5bf32f0..d882c51 100644
--- a/monitor.c
+++ b/monitor.c
@@ -741,19 +741,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

  reply	other threads:[~2009-12-03 16:33 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-12-03 16:33 [Qemu-devel] [PATCH 0/2] integrate eject/uneject fixes Eduardo Habkost
2009-12-03 16:33 ` Eduardo Habkost [this message]
2009-12-18 19:07   ` [Qemu-devel] [PATCH v2 STABLE] monitor: allow device to be ejected if no disk is inserted Eduardo Habkost
2009-12-18 20:15     ` [Qemu-devel] " Luiz Capitulino
2009-12-18 20:22       ` Eduardo Habkost
2009-12-18 20:45         ` Luiz Capitulino
2009-12-03 16:33 ` [Qemu-devel] [PATCH 2/2] Fix for cdrom un-eject Eduardo Habkost
2009-12-18 18:57   ` Eduardo Habkost

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1259858001-1273-2-git-send-email-ehabkost@redhat.com \
    --to=ehabkost@redhat.com \
    --cc=anthony@codemonkey.ws \
    --cc=lcapitulino@redhat.com \
    --cc=nsprei@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).