mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
replay: don't drain/flush bdrv queue while RR is working
In record/replay mode bdrv queue is controlled by replay mechanism. It does not allow saving or loading the snapshots when bdrv queue is not empty. Stopping the VM is not blocked by nonempty queue, but flushing the queue is still impossible there, because it may cause deadlocks in replay mode. This patch disables bdrv_drain_all and bdrv_flush_all in record/replay mode. Stopping the machine when the IO requests are not finished is needed for the debugging. E.g., breakpoint may be set at the specified step, and forcing the IO requests to finish may break the determinism of the execution. Signed-off-by: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru> Acked-by: Kevin Wolf <kwolf@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
de499eb67c
commit
c8aa7895eb
2 changed files with 28 additions and 2 deletions
2
cpus.c
2
cpus.c
|
@ -1097,7 +1097,6 @@ static int do_vm_stop(RunState state, bool send_stop)
|
|||
}
|
||||
|
||||
bdrv_drain_all();
|
||||
replay_disable_events();
|
||||
ret = bdrv_flush_all();
|
||||
|
||||
return ret;
|
||||
|
@ -2181,7 +2180,6 @@ int vm_prepare_start(void)
|
|||
/* We are sending this now, but the CPUs will be resumed shortly later */
|
||||
qapi_event_send_resume();
|
||||
|
||||
replay_enable_events();
|
||||
cpu_enable_ticks();
|
||||
runstate_set(RUN_STATE_RUNNING);
|
||||
vm_state_notify(1, RUN_STATE_RUNNING);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue