[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v7 07/22] replay: fix save/load vm for non-empty que
From: |
Pavel Dovgalyuk |
Subject: |
[Qemu-devel] [PATCH v7 07/22] replay: fix save/load vm for non-empty queue |
Date: |
Tue, 27 Feb 2018 12:52:14 +0300 |
User-agent: |
StGit/0.17.1-dirty |
This patch does not allows saving/loading vmstate when
replay events queue is not empty. There is no reliable
way to save events queue, because it describes internal
coroutine state. Therefore saving and loading operations
should be deferred to another record/replay step.
Signed-off-by: Pavel Dovgalyuk <address@hidden>
--
v2: fixed error_report calls
---
include/sysemu/replay.h | 3 +++
migration/savevm.c | 13 +++++++++++++
replay/replay-snapshot.c | 6 ++++++
3 files changed, 22 insertions(+)
diff --git a/include/sysemu/replay.h b/include/sysemu/replay.h
index dc8ae7b..5462555 100644
--- a/include/sysemu/replay.h
+++ b/include/sysemu/replay.h
@@ -164,5 +164,8 @@ void replay_audio_in(int *recorded, void *samples, int
*wpos, int size);
/*! Called at the start of execution.
Loads or saves initial vmstate depending on execution mode. */
void replay_vmstate_init(void);
+/*! Called to ensure that replay state is consistent and VM snapshot
+ can be created */
+bool replay_can_snapshot(void);
#endif
diff --git a/migration/savevm.c b/migration/savevm.c
index 8e6d872..d98ea64 100644
--- a/migration/savevm.c
+++ b/migration/savevm.c
@@ -53,6 +53,7 @@
#include "qemu/cutils.h"
#include "io/channel-buffer.h"
#include "io/channel-file.h"
+#include "sysemu/replay.h"
#ifndef ETH_P_RARP
#define ETH_P_RARP 0x8035
@@ -2196,6 +2197,12 @@ int save_snapshot(const char *name, Error **errp)
struct tm tm;
AioContext *aio_context;
+ if (!replay_can_snapshot()) {
+ error_report("Record/replay does not allow making snapshot "
+ "right now. Try once more later.");
+ return ret;
+ }
+
if (!bdrv_all_can_snapshot(&bs)) {
error_setg(errp, "Device '%s' is writable but does not support "
"snapshots", bdrv_get_device_name(bs));
@@ -2387,6 +2394,12 @@ int load_snapshot(const char *name, Error **errp)
AioContext *aio_context;
MigrationIncomingState *mis = migration_incoming_get_current();
+ if (!replay_can_snapshot()) {
+ error_report("Record/replay does not allow loading snapshot "
+ "right now. Try once more later.");
+ return -EINVAL;
+ }
+
if (!bdrv_all_can_snapshot(&bs)) {
error_setg(errp,
"Device '%s' is writable but does not support snapshots",
diff --git a/replay/replay-snapshot.c b/replay/replay-snapshot.c
index b2e1076..7075986 100644
--- a/replay/replay-snapshot.c
+++ b/replay/replay-snapshot.c
@@ -83,3 +83,9 @@ void replay_vmstate_init(void)
}
}
}
+
+bool replay_can_snapshot(void)
+{
+ return replay_mode == REPLAY_MODE_NONE
+ || !replay_has_events();
+}
- [Qemu-devel] [ PATCH v7 00/22] replay additions, Pavel Dovgalyuk, 2018/02/27
- [Qemu-devel] [PATCH v7 01/22] cpu-exec: fix exception_index handling, Pavel Dovgalyuk, 2018/02/27
- [Qemu-devel] [PATCH v7 02/22] block: implement bdrv_snapshot_goto for blkreplay, Pavel Dovgalyuk, 2018/02/27
- [Qemu-devel] [PATCH v7 03/22] blkreplay: create temporary overlay for underlaying devices, Pavel Dovgalyuk, 2018/02/27
- [Qemu-devel] [PATCH v7 04/22] replay: disable default snapshot for record/replay, Pavel Dovgalyuk, 2018/02/27
- [Qemu-devel] [PATCH v7 05/22] replay: fix processing async events, Pavel Dovgalyuk, 2018/02/27
- [Qemu-devel] [PATCH v7 06/22] replay: fixed replay_enable_events, Pavel Dovgalyuk, 2018/02/27
- [Qemu-devel] [PATCH v7 07/22] replay: fix save/load vm for non-empty queue,
Pavel Dovgalyuk <=
- [Qemu-devel] [PATCH v7 08/22] replay: added replay log format description, Pavel Dovgalyuk, 2018/02/27
- [Qemu-devel] [PATCH v7 09/22] replay: save prior value of the host clock, Pavel Dovgalyuk, 2018/02/27
- [Qemu-devel] [PATCH v7 11/22] replay/replay-internal.c: track holding of replay_lock, Pavel Dovgalyuk, 2018/02/27
- [Qemu-devel] [PATCH v7 10/22] replay/replay.c: bump REPLAY_VERSION again, Pavel Dovgalyuk, 2018/02/27
- [Qemu-devel] [PATCH v7 12/22] replay: make locking visible outside replay code, Pavel Dovgalyuk, 2018/02/27
- [Qemu-devel] [PATCH v7 13/22] replay: push replay_mutex_lock up the call tree, Pavel Dovgalyuk, 2018/02/27
- [Qemu-devel] [PATCH v7 14/22] replay: don't destroy mutex at exit, Pavel Dovgalyuk, 2018/02/27
- [Qemu-devel] [PATCH v7 15/22] replay: check return values of fwrite, Pavel Dovgalyuk, 2018/02/27
- [Qemu-devel] [PATCH v7 16/22] replay: avoid recursive call of checkpoints, Pavel Dovgalyuk, 2018/02/27
- [Qemu-devel] [PATCH v7 17/22] scripts/replay-dump.py: replay log dumper, Pavel Dovgalyuk, 2018/02/27