From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=56955 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PSv7w-0001Dz-Fm for qemu-devel@nongnu.org; Wed, 15 Dec 2010 12:26:57 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PSv7u-0005jA-JG for qemu-devel@nongnu.org; Wed, 15 Dec 2010 12:26:56 -0500 Received: from mx1.redhat.com ([209.132.183.28]:61881) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PSv7u-0005j2-8Z for qemu-devel@nongnu.org; Wed, 15 Dec 2010 12:26:54 -0500 Date: Wed, 15 Dec 2010 15:26:39 -0200 From: Luiz Capitulino Message-ID: <20101215152639.0706e166@doriath> In-Reply-To: <4D08F375.3060907@redhat.com> References: <1292225579-27320-1-git-send-email-Jes.Sorensen@redhat.com> <1292225579-27320-3-git-send-email-Jes.Sorensen@redhat.com> <4D08F305.1040503@redhat.com> <4D08F375.3060907@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] Re: [PATCH 2/3] Introduce do_snapshot_blkdev() and monitor command to handle it. List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Jes Sorensen Cc: Kevin Wolf , qemu-devel@nongnu.org, armbru@redhat.com, stefanha@linux.vnet.ibm.com On Wed, 15 Dec 2010 17:57:25 +0100 Jes Sorensen wrote: > On 12/15/10 17:55, Kevin Wolf wrote: > >> +int do_snapshot_blkdev(Monitor *mon, const QDict *qdict, QObject **ret_data) > >> +{ > >> + const char *device = qdict_get_str(qdict, "device"); > >> + const char *filename = qdict_get_try_str(qdict, "snapshot_file"); > >> + const char *format = qdict_get_try_str(qdict, "format"); > >> + const char format_qcow2[] = "qcow2"; > >> + BlockDriverState *bs; > >> + BlockDriver *drv, *proto_drv; > >> + int ret = 0; > >> + int flags; > >> + > >> + bs = bdrv_find(device); > >> + if (!bs) { > >> + qerror_report(QERR_DEVICE_NOT_FOUND, device); > >> + ret = -1; > >> + goto out; > >> + } > >> + > >> + if (!format) { > >> + format = format_qcow2; > >> + } > >> + > >> + drv = bdrv_find_format(format); > >> + if (!drv) { > >> + qerror_report(QERR_INVALID_BLOCK_FORMAT, format); > >> + ret = -1; > >> + goto out; > >> + } > >> + > >> + proto_drv = bdrv_find_protocol(filename); > >> + if (!proto_drv) { > >> + qerror_report(QERR_INVALID_BLOCK_FORMAT, format); > >> + ret = -1; > >> + goto out; > >> + } > >> + > >> + ret = bdrv_img_create(filename, format, bs->filename, > >> + bs->drv->format_name, NULL, -1, bs->open_flags); > >> + if (ret) { > >> + goto out; > >> + } > >> + > >> + qemu_aio_flush(); > >> + bdrv_flush(bs); > >> + > >> + flags = bs->open_flags; > >> + bdrv_close(bs); > >> + ret = bdrv_open(bs, filename, flags, drv); > >> + /* > >> + * If reopening the image file we just created fails, we really > >> + * are in trouble :( > >> + */ > >> + assert(ret == 0); > >> +out: > >> + if (ret) { > >> + ret = 1; > > > > I seem to remember that errors are always -1 for monitor commands. > > I mapped it after something else, but admitted I cannot remember where - > can someone clarify? -1 > > Cheers, > Jes >