qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Wenchao Xia <xiawenc@linux.vnet.ibm.com>
To: qemu-devel@nongnu.org
Cc: kwolf@redhat.com, phrdina@redhat.com, famz@redhat.com,
	Wenchao Xia <xiawenc@linux.vnet.ibm.com>,
	armbru@redhat.com, lcapitulino@redhat.com, stefanha@redhat.com,
	pbonzini@redhat.com, dietmar@proxmox.com
Subject: [Qemu-devel] [PATCH V4 5/9] qmp: add interface blockdev-snapshot-internal-sync
Date: Mon,  8 Jul 2013 16:00:47 +0800	[thread overview]
Message-ID: <1373270451-18436-6-git-send-email-xiawenc@linux.vnet.ibm.com> (raw)
In-Reply-To: <1373270451-18436-1-git-send-email-xiawenc@linux.vnet.ibm.com>

Snapshot ID can't be specified in this interface.

Signed-off-by: Wenchao Xia <xiawenc@linux.vnet.ibm.com>
---
 blockdev.c       |   13 +++++++++++++
 qapi-schema.json |   22 ++++++++++++++++++++++
 qmp-commands.hx  |   30 ++++++++++++++++++++++++++++++
 3 files changed, 65 insertions(+), 0 deletions(-)

diff --git a/blockdev.c b/blockdev.c
index 2fda33b..d2cca6c 100644
--- a/blockdev.c
+++ b/blockdev.c
@@ -777,6 +777,19 @@ void qmp_blockdev_snapshot_sync(const char *device, const char *snapshot_file,
                        &snapshot, errp);
 }
 
+void qmp_blockdev_snapshot_internal_sync(const char *device,
+                                         const char *name,
+                                         Error **errp)
+{
+    BlockdevSnapshotInternal snapshot = {
+        .device = (char *) device,
+        .name = (char *) name
+    };
+
+    blockdev_do_action(TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC,
+                       &snapshot, errp);
+}
+
 
 /* New and old BlockDriverState structs for group snapshots */
 
diff --git a/qapi-schema.json b/qapi-schema.json
index a2d27c8..40f9c8e 100644
--- a/qapi-schema.json
+++ b/qapi-schema.json
@@ -1746,6 +1746,28 @@
             '*mode': 'NewImageMode'} }
 
 ##
+# @blockdev-snapshot-internal-sync
+#
+# Synchronously take an internal snapshot of a block device, when the format
+# of the image used supports it.
+#
+# @device: the name of the device to generate the snapshot from
+#
+# @name: the name of new snapshot name
+#
+# Returns: nothing on success
+#          If @device is not a valid block device, DeviceNotFound
+#          If any snapshot matching @name exists, or the name string is invalid
+#          which may collide with snapshot IDs, or name is empty, GenericError
+#          If the format of the image used does not support it,
+#          BlockFormatFeatureNotSupported
+#
+# Since 1.6
+##
+{ 'command': 'blockdev-snapshot-internal-sync',
+  'data': { 'device': 'str', 'name': 'str'} }
+
+##
 # @human-monitor-command:
 #
 # Execute a command on the human monitor and return the output.
diff --git a/qmp-commands.hx b/qmp-commands.hx
index d154506..a2675cf 100644
--- a/qmp-commands.hx
+++ b/qmp-commands.hx
@@ -1092,6 +1092,36 @@ Example:
 EQMP
 
     {
+        .name       = "blockdev-snapshot-internal-sync",
+        .args_type  = "device:B,name:s",
+        .mhandler.cmd_new = qmp_marshal_input_blockdev_snapshot_internal_sync,
+    },
+
+SQMP
+blockdev-snapshot-internal-sync
+-------------------------------
+
+Synchronously take an internal snapshot of a block device when the format of
+image used supports it.  If the name is a numeric string which may collide with
+snapshot IDs, such as "19", or an empty string, the operation will fail.  If a
+snapshot with name already exists, the operation will fail.
+
+Arguments:
+
+- "device": device name to snapshot (json-string)
+- "name": name of the new snapshot (json-string)
+
+Example:
+
+-> { "execute": "blockdev-snapshot-internal-sync",
+                "arguments": { "device": "ide-hd0",
+                               "name": "snapshot0" }
+   }
+<- { "return": {} }
+
+EQMP
+
+    {
         .name       = "drive-mirror",
         .args_type  = "sync:s,device:B,target:s,speed:i?,mode:s?,format:s?,"
                       "on-source-error:s?,on-target-error:s?,"
-- 
1.7.1

  parent reply	other threads:[~2013-07-08  8:04 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-07-08  8:00 [Qemu-devel] [PATCH V4 0/9] add internal snapshot support at block device level Wenchao Xia
2013-07-08  8:00 ` [Qemu-devel] [PATCH V4 1/9] snapshot: new function bdrv_snapshot_find_by_id_and_name() Wenchao Xia
2013-07-08  8:00 ` [Qemu-devel] [PATCH V4 2/9] snapshot: add paired functions for internal snapshot id and name Wenchao Xia
2013-07-10 13:10   ` Kevin Wolf
2013-07-10 13:54     ` Wenchao Xia
2013-07-10 14:22       ` Kevin Wolf
2013-07-10 14:43         ` Wenchao Xia
2013-07-10 14:49           ` Kevin Wolf
2013-07-10 15:17             ` Wenchao Xia
2013-07-08  8:00 ` [Qemu-devel] [PATCH V4 3/9] snapshot: distinguish id and name in snapshot delete Wenchao Xia
2013-07-08  8:00 ` [Qemu-devel] [PATCH V4 4/9] qmp: add internal snapshot support in qmp_transaction Wenchao Xia
2013-07-08  8:00 ` Wenchao Xia [this message]
2013-07-08  8:00 ` [Qemu-devel] [PATCH V4 6/9] qmp: add interface blockdev-snapshot-delete-internal-sync Wenchao Xia
2013-07-08  8:00 ` [Qemu-devel] [PATCH V4 7/9] hmp: add interface hmp_snapshot_blkdev_internal Wenchao Xia
2013-07-08  8:00 ` [Qemu-devel] [PATCH V4 8/9] hmp: add interface hmp_snapshot_delete_blkdev_internal Wenchao Xia
2013-07-08  8:00 ` [Qemu-devel] [PATCH V4 9/9] qemu-iotests: add 056 internal snapshot for block device test case Wenchao Xia

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=1373270451-18436-6-git-send-email-xiawenc@linux.vnet.ibm.com \
    --to=xiawenc@linux.vnet.ibm.com \
    --cc=armbru@redhat.com \
    --cc=dietmar@proxmox.com \
    --cc=famz@redhat.com \
    --cc=kwolf@redhat.com \
    --cc=lcapitulino@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=phrdina@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=stefanha@redhat.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).