41 lines
1.3 KiB
Diff
41 lines
1.3 KiB
Diff
|
|
From d15694ef4ae7f7ebdbdac250a8a793ab66254655 Mon Sep 17 00:00:00 2001
|
||
|
|
From: tangbinzy <tangbin_yewu@cmss.chinamobile.com>
|
||
|
|
Date: Tue, 26 Sep 2023 08:16:21 +0000
|
||
|
|
Subject: [PATCH] replay: fix event queue flush for qemu shutdown mainline
|
||
|
|
inclusion commit c4b8ffcbb8531206e12cf3ad92fa90f7c80ed464 category: bugfix
|
||
|
|
|
||
|
|
---------------------------------------------------------------
|
||
|
|
|
||
|
|
This patch fixes event queue flush in the case of emulator
|
||
|
|
shutdown. replay_finish_events should be called when replay_mode
|
||
|
|
is not cleared.
|
||
|
|
|
||
|
|
Signed-off-by: Pavel Dovgalyuk <Pavel.Dovgalyuk@ispras.ru>
|
||
|
|
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
|
||
|
|
Message-Id: <165364836758.688121.7959245442743676491.stgit@pasha-ThinkPad-X280>
|
||
|
|
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
|
||
|
|
|
||
|
|
Signed-off-by: tangbinzy <tangbin_yewu@cmss.chinamobile.com>
|
||
|
|
---
|
||
|
|
replay/replay.c | 3 +--
|
||
|
|
1 file changed, 1 insertion(+), 2 deletions(-)
|
||
|
|
|
||
|
|
diff --git a/replay/replay.c b/replay/replay.c
|
||
|
|
index 6df2abc18c..2d3607998a 100644
|
||
|
|
--- a/replay/replay.c
|
||
|
|
+++ b/replay/replay.c
|
||
|
|
@@ -387,9 +387,8 @@ void replay_finish(void)
|
||
|
|
g_free(replay_snapshot);
|
||
|
|
replay_snapshot = NULL;
|
||
|
|
|
||
|
|
- replay_mode = REPLAY_MODE_NONE;
|
||
|
|
-
|
||
|
|
replay_finish_events();
|
||
|
|
+ replay_mode = REPLAY_MODE_NONE;
|
||
|
|
}
|
||
|
|
|
||
|
|
void replay_add_blocker(Error *reason)
|
||
|
|
--
|
||
|
|
2.41.0.windows.1
|
||
|
|
|