diff options
author | Daniel P. Berrangé <berrange@redhat.com> | 2021-02-04 12:48:27 +0000 |
---|---|---|
committer | Dr. David Alan Gilbert <dgilbert@redhat.com> | 2021-02-08 11:19:51 +0000 |
commit | c22d644ca78dcccdfc4a2e2bc3594bd27c1f4fe5 (patch) | |
tree | 79ad975c46da354eb3324e63e5fd625b099ab278 /replay | |
parent | cf3a74c94f3da92fdf8d45047756f0e43657be1a (diff) | |
download | qemu-c22d644ca78dcccdfc4a2e2bc3594bd27c1f4fe5.zip |
block: allow specifying name of block device for vmstate storage
Currently the vmstate will be stored in the first block device that
supports snapshots. Historically this would have usually been the
root device, but with UEFI it might be the variable store. There
needs to be a way to override the choice of block device to store
the state in.
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Message-Id: <20210204124834.774401-6-berrange@redhat.com>
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Diffstat (limited to 'replay')
-rw-r--r-- | replay/replay-debugging.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/replay/replay-debugging.c b/replay/replay-debugging.c index 67d8237077..ca37cf4025 100644 --- a/replay/replay-debugging.c +++ b/replay/replay-debugging.c @@ -148,7 +148,7 @@ static char *replay_find_nearest_snapshot(int64_t icount, *snapshot_icount = -1; - bs = bdrv_all_find_vmstate_bs(false, NULL, NULL); + bs = bdrv_all_find_vmstate_bs(NULL, false, NULL, NULL); if (!bs) { goto fail; } |