From patchwork Thu Dec 3 16:33:20 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eduardo Habkost X-Patchwork-Id: 40180 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id F3B0FB7B93 for ; Fri, 4 Dec 2009 03:34:08 +1100 (EST) Received: from localhost ([127.0.0.1]:38832 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NGEd2-0007iQ-Bt for incoming@patchwork.ozlabs.org; Thu, 03 Dec 2009 11:34:04 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NGEcU-0007gu-K2 for qemu-devel@nongnu.org; Thu, 03 Dec 2009 11:33:30 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NGEcR-0007dr-1U for qemu-devel@nongnu.org; Thu, 03 Dec 2009 11:33:30 -0500 Received: from [199.232.76.173] (port=58398 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NGEcQ-0007dk-Rl for qemu-devel@nongnu.org; Thu, 03 Dec 2009 11:33:26 -0500 Received: from mx1.redhat.com ([209.132.183.28]:61754) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NGEcQ-0000B3-Gc for qemu-devel@nongnu.org; Thu, 03 Dec 2009 11:33:26 -0500 Received: from int-mx05.intmail.prod.int.phx2.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.18]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id nB3GXNWF012379 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 3 Dec 2009 11:33:24 -0500 Received: from blackpad.lan.raisama.net (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by int-mx05.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id nB3GXMi6007555; Thu, 3 Dec 2009 11:33:23 -0500 Received: by blackpad.lan.raisama.net (Postfix, from userid 500) id BE61E17FCFE; Thu, 3 Dec 2009 14:33:21 -0200 (BRST) From: Eduardo Habkost To: Anthony Liguori Date: Thu, 3 Dec 2009 14:33:20 -0200 Message-Id: <1259858001-1273-2-git-send-email-ehabkost@redhat.com> In-Reply-To: <1259858001-1273-1-git-send-email-ehabkost@redhat.com> References: <1259858001-1273-1-git-send-email-ehabkost@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.18 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Cc: Naphtali Sprei , qemu-devel@nongnu.org, Luiz Capitulino Subject: [Qemu-devel] [PATCH 1/2] monitor: allow device to be ejected if no disk is inserted X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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 --- 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; }