mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
migration: wire up support for snapshot device selection
Modify load_snapshot/save_snapshot to accept the device list and vmstate node name parameters previously added to the block layer. Reviewed-by: Eric Blake <eblake@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com> Message-Id: <20210204124834.774401-9-berrange@redhat.com> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
This commit is contained in:
parent
f781f84189
commit
f1a9fcdd01
6 changed files with 43 additions and 21 deletions
|
@ -1139,7 +1139,7 @@ void hmp_loadvm(Monitor *mon, const QDict *qdict)
|
|||
|
||||
vm_stop(RUN_STATE_RESTORE_VM);
|
||||
|
||||
if (!load_snapshot(name, &err) && saved_vm_running) {
|
||||
if (!load_snapshot(name, NULL, false, NULL, &err) && saved_vm_running) {
|
||||
vm_start();
|
||||
}
|
||||
hmp_handle_error(mon, err);
|
||||
|
@ -1149,7 +1149,8 @@ void hmp_savevm(Monitor *mon, const QDict *qdict)
|
|||
{
|
||||
Error *err = NULL;
|
||||
|
||||
save_snapshot(qdict_get_try_str(qdict, "name"), true, &err);
|
||||
save_snapshot(qdict_get_try_str(qdict, "name"),
|
||||
true, NULL, false, NULL, &err);
|
||||
hmp_handle_error(mon, err);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue