summaryrefslogtreecommitdiffstats
path: root/migration
diff options
context:
space:
mode:
authorJason A. Donenfeld2022-10-25 02:43:17 +0200
committerPeter Maydell2022-10-27 12:34:31 +0200
commit7966d70f6f6b188475e67c2c363f19eec3d28c96 (patch)
treebbd0a95d1d8b8c64bb8dbaf37d38e8f85af5ada6 /migration
parenttarget/arm: Use the max page size in a 2-stage ptw (diff)
downloadqemu-7966d70f6f6b188475e67c2c363f19eec3d28c96.tar.gz
qemu-7966d70f6f6b188475e67c2c363f19eec3d28c96.tar.xz
qemu-7966d70f6f6b188475e67c2c363f19eec3d28c96.zip
reset: allow registering handlers that aren't called by snapshot loading
Snapshot loading only expects to call deterministic handlers, not non-deterministic ones. So introduce a way of registering handlers that won't be called when reseting for snapshots. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> Message-id: 20221025004327.568476-2-Jason@zx2c4.com [PMM: updated json doc comment with Markus' text; fixed checkpatch style nit] Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'migration')
-rw-r--r--migration/savevm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/migration/savevm.c b/migration/savevm.c
index 48e85c052c..a0cdb714f7 100644
--- a/migration/savevm.c
+++ b/migration/savevm.c
@@ -3058,7 +3058,7 @@ bool load_snapshot(const char *name, const char *vmstate,
goto err_drain;
}
- qemu_system_reset(SHUTDOWN_CAUSE_NONE);
+ qemu_system_reset(SHUTDOWN_CAUSE_SNAPSHOT_LOAD);
mis->from_src_file = f;
if (!yank_register_instance(MIGRATION_YANK_INSTANCE, errp)) {