mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
Replace the VMSTOP macros with a proper state type
Today, when notifying a VM state change with vm_state_notify(), we pass a VMSTOP macro as the 'reason' argument. This is not ideal because the VMSTOP macros tell why qemu stopped and not exactly what the current VM state is. One example to demonstrate this problem is that vm_start() calls vm_state_notify() with reason=0, which turns out to be VMSTOP_USER. This commit fixes that by replacing the VMSTOP macros with a proper state type called RunState. Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
This commit is contained in:
parent
bff046f86b
commit
1dfb4dd993
24 changed files with 91 additions and 76 deletions
|
@ -374,7 +374,7 @@ void migrate_fd_put_ready(void *opaque)
|
|||
int old_vm_running = vm_running;
|
||||
|
||||
DPRINTF("done iterating\n");
|
||||
vm_stop(VMSTOP_MIGRATE);
|
||||
vm_stop(RSTATE_PRE_MIGRATE);
|
||||
|
||||
if ((qemu_savevm_state_complete(s->mon, s->file)) < 0) {
|
||||
if (old_vm_running) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue