From: Dong Xu Wang <wdongxu@linux.vnet.ibm.com>
To: qemu-devel@nongnu.org
Cc: Kevin Wolf <kwolf@redhat.com>,
Marcelo Tosatti <mtosatti@redhat.com>,
Dong Xu Wang <wdongxu@linux.vnet.ibm.com>,
Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Subject: [Qemu-devel] [PATCH 3/3 v9] add-cow: support snapshot_blkdev
Date: Tue, 8 May 2012 01:34:18 +0800 [thread overview]
Message-ID: <1336412058-13751-3-git-send-email-wdongxu@linux.vnet.ibm.com> (raw)
In-Reply-To: <1336412058-13751-1-git-send-email-wdongxu@linux.vnet.ibm.com>
Raw does not support snapshot_blkdev, we will use add-cow as metadata.
CC: Marcelo Tosatti <mtosatti@redhat.com>
CC: Kevin Wolf <kwolf@redhat.com>
CC: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Dong Xu Wang <wdongxu@linux.vnet.ibm.com>
---
blockdev.c | 31 +++++++++++++++++++++++++++----
docs/live-block-ops.txt | 10 +++++++++-
2 files changed, 36 insertions(+), 5 deletions(-)
diff --git a/blockdev.c b/blockdev.c
index d25ffea..b9939d3 100644
--- a/blockdev.c
+++ b/blockdev.c
@@ -780,15 +780,38 @@ void qmp_transaction(BlockdevActionList *dev_list, Error **errp)
/* create new image w/backing file */
if (mode != NEW_IMAGE_MODE_EXISTING) {
- ret = bdrv_img_create(new_image_file, format,
+ if (strcmp(format, "add-cow")) {
+ ret = bdrv_img_create(new_image_file, format,
states->old_bs->filename,
states->old_bs->drv->format_name,
NULL, -1, flags);
- if (ret) {
- error_set(errp, QERR_OPEN_FILE_FAILED, new_image_file);
- goto delete_and_fail;
+ } else {
+ char image_file[1024];
+ char option[1024];
+ uint64_t size;
+
+ bdrv_get_geometry(states->old_bs, &size);
+ size *= BDRV_SECTOR_SIZE;
+
+ sprintf(image_file, "%s.raw", new_image_file);
+
+ ret = bdrv_img_create(image_file, "raw", NULL,
+ NULL, NULL, size, flags);
+ if (ret) {
+ error_set(errp, QERR_UNDEFINED_ERROR);
+ return;
+ }
+ sprintf(option, "image_file=%s.raw", new_image_file);
+ ret = bdrv_img_create(new_image_file, format,
+ states->old_bs->filename,
+ states->old_bs->drv->format_name,
+ option, -1, flags);
}
}
+ if (ret) {
+ error_set(errp, QERR_OPEN_FILE_FAILED, new_image_file);
+ goto delete_and_fail;
+ }
/* We will manually add the backing_hd field to the bs later */
states->new_bs = bdrv_new("");
diff --git a/docs/live-block-ops.txt b/docs/live-block-ops.txt
index a257087..c97344b 100644
--- a/docs/live-block-ops.txt
+++ b/docs/live-block-ops.txt
@@ -2,7 +2,8 @@ LIVE BLOCK OPERATIONS
=====================
High level description of live block operations. Note these are not
-supported for use with the raw format at the moment.
+supported for use with the raw format at the moment, but we can use
+add-cow as metadata to suport raw format.
Snapshot live merge
===================
@@ -56,3 +57,10 @@ into that image. Example:
(qemu) block_stream ide0-hd0
+
+Raw is not supported, but we can use add-cow in the 1st step:
+
+(qemu) snapshot_blkdev ide0-hd0 /new-path/disk.img add-cow
+
+It will create a raw file named disk.img.raw, with the same virtual size of
+ide0-hd0 first, and then create disk.img.
--
1.7.9.5
next prev parent reply other threads:[~2012-05-07 17:35 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-05-07 17:34 [Qemu-devel] [PATCH 1/3 v9] add-cow file format Dong Xu Wang
2012-05-07 17:34 ` [Qemu-devel] [PATCH 2/3 v9] qemu-iotests: support " Dong Xu Wang
2012-05-07 17:34 ` Dong Xu Wang [this message]
[not found] ` <CAJSP0QV0H+kta+tzk7hvBcXHM3q1OM=ofz26Nc4ziTb_Sb13Hg@mail.gmail.com>
[not found] ` <CAGrFBshR4f4oJ7zu2+spkZTG-=ov4S=p_HUkpK_dBcv+mwGNbg@mail.gmail.com>
[not found] ` <CAJSP0QWjfR_8EbgsV-xXFewPc=2syhHPB2BsRA+zMXkwtm_CMw@mail.gmail.com>
2012-06-04 8:15 ` [Qemu-devel] [PATCH 1/3 v9] " Dong Xu Wang
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=1336412058-13751-3-git-send-email-wdongxu@linux.vnet.ibm.com \
--to=wdongxu@linux.vnet.ibm.com \
--cc=kwolf@redhat.com \
--cc=mtosatti@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@linux.vnet.ibm.com \
/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).