qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Daniel P. Berrangé" <berrange@redhat.com>
To: qemu-devel@nongnu.org
Cc: "Kevin Wolf" <kwolf@redhat.com>,
	"Peter Krempa" <pkrempa@redhat.com>,
	"Daniel P. Berrangé" <berrange@redhat.com>,
	"Denis V. Lunev" <den@virtuozzo.com>,
	qemu-block@nongnu.org, "Juan Quintela" <quintela@redhat.com>,
	"Dr. David Alan Gilbert" <dgilbert@redhat.com>,
	"Markus Armbruster" <armbru@redhat.com>,
	"Pavel Dovgalyuk" <pavel.dovgaluk@ispras.ru>,
	"Paolo Bonzini" <pbonzini@redhat.com>,
	"Max Reitz" <mreitz@redhat.com>, "John Snow" <jsnow@redhat.com>
Subject: [PATCH v4 7/9] migration: introduce a delete_snapshot wrapper
Date: Tue, 15 Sep 2020 12:35:21 +0100	[thread overview]
Message-ID: <20200915113523.2520317-8-berrange@redhat.com> (raw)
In-Reply-To: <20200915113523.2520317-1-berrange@redhat.com>

Make snapshot deletion consistent with the snapshot save
and load commands by using a wrapper around the blockdev
layer. The main difference is that we get upfront validation
of the passed in device list (if any).

Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
---
 include/migration/snapshot.h |  4 +++-
 migration/savevm.c           | 13 +++++++++++++
 monitor/hmp-cmds.c           |  2 +-
 3 files changed, 17 insertions(+), 2 deletions(-)

diff --git a/include/migration/snapshot.h b/include/migration/snapshot.h
index b2c72e0a1b..f46f28745d 100644
--- a/include/migration/snapshot.h
+++ b/include/migration/snapshot.h
@@ -25,5 +25,7 @@ int load_snapshot(const char *name,
                   const char *vmstate,
                   bool has_devices, strList *devices,
                   Error **errp);
-
+int delete_snapshot(const char *name,
+                    bool has_devices, strList *devices,
+                    Error **errp);
 #endif
diff --git a/migration/savevm.c b/migration/savevm.c
index b3d2ce7045..56f85be250 100644
--- a/migration/savevm.c
+++ b/migration/savevm.c
@@ -2940,6 +2940,19 @@ err_drain:
     return -1;
 }
 
+int delete_snapshot(const char *name, bool has_devices, strList *devices, Error **errp)
+{
+    if (!bdrv_all_can_snapshot(has_devices, devices, errp)) {
+        return -1;
+    }
+
+    if (bdrv_all_delete_snapshot(name, has_devices, devices, errp) < 0) {
+        return -1;
+    }
+
+    return 0;
+}
+
 void vmstate_register_ram(MemoryRegion *mr, DeviceState *dev)
 {
     qemu_ram_set_idstr(mr->ram_block,
diff --git a/monitor/hmp-cmds.c b/monitor/hmp-cmds.c
index 1191aac3ae..278dca59b0 100644
--- a/monitor/hmp-cmds.c
+++ b/monitor/hmp-cmds.c
@@ -1140,7 +1140,7 @@ void hmp_delvm(Monitor *mon, const QDict *qdict)
     Error *err = NULL;
     const char *name = qdict_get_str(qdict, "name");
 
-    bdrv_all_delete_snapshot(name, false, NULL, &err);
+    delete_snapshot(name, false, NULL, &err);
     hmp_handle_error(mon, err);
 }
 
-- 
2.26.2



  parent reply	other threads:[~2020-09-15 11:43 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-15 11:35 [PATCH v4 0/9] migration: bring improved savevm/loadvm/delvm to QMP Daniel P. Berrangé
2020-09-15 11:35 ` [PATCH v4 1/9] block: push error reporting into bdrv_all_*_snapshot functions Daniel P. Berrangé
2020-09-15 11:35 ` [PATCH v4 2/9] migration: stop returning errno from load_snapshot() Daniel P. Berrangé
2020-09-15 11:35 ` [PATCH v4 3/9] block: add ability to specify list of blockdevs during snapshot Daniel P. Berrangé
2020-09-15 11:35 ` [PATCH v4 4/9] block: allow specifying name of block device for vmstate storage Daniel P. Berrangé
2020-09-15 11:35 ` [PATCH v4 5/9] migration: control whether snapshots are ovewritten Daniel P. Berrangé
2020-09-16  7:47   ` Markus Armbruster
2020-09-16  8:25     ` Daniel P. Berrangé
2020-09-15 11:35 ` [PATCH v4 6/9] migration: wire up support for snapshot device selection Daniel P. Berrangé
2020-09-21 17:41   ` Dr. David Alan Gilbert
2020-09-15 11:35 ` Daniel P. Berrangé [this message]
2020-09-15 11:35 ` [PATCH v4 8/9] iotests: add support for capturing and matching QMP events Daniel P. Berrangé
2020-09-15 11:35 ` [PATCH v4 9/9] migration: introduce snapshot-{save, load, delete} QMP commands Daniel P. Berrangé
2020-09-16  8:17   ` Markus Armbruster
2020-09-16  8:27     ` Daniel P. Berrangé
2020-09-16 11:44       ` Markus Armbruster
2020-09-21 18:16     ` Eric Blake
2020-10-02 15:56       ` Daniel P. Berrangé

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=20200915113523.2520317-8-berrange@redhat.com \
    --to=berrange@redhat.com \
    --cc=armbru@redhat.com \
    --cc=den@virtuozzo.com \
    --cc=dgilbert@redhat.com \
    --cc=jsnow@redhat.com \
    --cc=kwolf@redhat.com \
    --cc=mreitz@redhat.com \
    --cc=pavel.dovgaluk@ispras.ru \
    --cc=pbonzini@redhat.com \
    --cc=pkrempa@redhat.com \
    --cc=qemu-block@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=quintela@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).