summaryrefslogtreecommitdiffstats
path: root/blockdev.c
diff options
context:
space:
mode:
authorAlberto Garcia2015-10-26 13:27:14 +0100
committerKevin Wolf2015-11-11 16:25:47 +0100
commita911e6ae7ce47d51b519d462c1d99d53b37b0f8c (patch)
treeaa128c742f265b7f0d56e6c5d0eb37ac59fff5b4 /blockdev.c
parentblock: check for existing device IDs in external_snapshot_prepare() (diff)
downloadqemu-a911e6ae7ce47d51b519d462c1d99d53b37b0f8c.tar.gz
qemu-a911e6ae7ce47d51b519d462c1d99d53b37b0f8c.tar.xz
qemu-a911e6ae7ce47d51b519d462c1d99d53b37b0f8c.zip
block: rename BlockdevSnapshot to BlockdevSnapshotSync
We will introduce the 'blockdev-snapshot' command that will require its own struct for the parameters, so we need to rename this one in order to avoid name clashes. Signed-off-by: Alberto Garcia <berto@igalia.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Max Reitz <mreitz@redhat.com> Reviewed-by: Kevin Wolf <kwolf@redhat.com> Reviewed-by: Jeff Cody <jcody@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'blockdev.c')
-rw-r--r--blockdev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/blockdev.c b/blockdev.c
index 0c6c2a7845..86a29d8fa3 100644
--- a/blockdev.c
+++ b/blockdev.c
@@ -1168,7 +1168,7 @@ void qmp_blockdev_snapshot_sync(bool has_device, const char *device,
bool has_format, const char *format,
bool has_mode, NewImageMode mode, Error **errp)
{
- BlockdevSnapshot snapshot = {
+ BlockdevSnapshotSync snapshot = {
.has_device = has_device,
.device = (char *) device,
.has_node_name = has_node_name,