[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] qemu: send stop event after bdrv_flush_all
From: |
tianren |
Subject: |
[PATCH] qemu: send stop event after bdrv_flush_all |
Date: |
Mon, 4 Dec 2023 18:45:59 +0800 |
From: Tianren Zhang <tianren@smartx.com>
The stop process is not finished until bdrv_flush_all
is done. Some users (e.g., libvirt) detects the STOP
event and invokes some lock release logic to revoke
the disk lock held by current qemu when such event is
emitted. In such case, if the bdrv_flush_all is after
the stop event, it's possible that the disk lock is
released while the qemu is still waiting for I/O.
Therefore, it's better to have the stop event generated
after the whole stop process is done.
Change-Id: Ia2f95cd55edfdeb71ee2e04005ac216cfabffa22
Signed-off-by: Tianren Zhang <tianren@smartx.com>
---
system/cpus.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/system/cpus.c b/system/cpus.c
index a444a747f0..b0421f3e22 100644
--- a/system/cpus.c
+++ b/system/cpus.c
@@ -268,15 +268,16 @@ static int do_vm_stop(RunState state, bool send_stop)
cpu_disable_ticks();
pause_all_vcpus();
vm_state_notify(0, state);
- if (send_stop) {
- qapi_event_send_stop();
- }
}
bdrv_drain_all();
ret = bdrv_flush_all();
trace_vm_stop_flush_all(ret);
+ if (runstate_is_running() && send_stop) {
+ qapi_event_send_stop();
+ }
+
return ret;
}
--
2.38.1
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [PATCH] qemu: send stop event after bdrv_flush_all,
tianren <=