mirror of https://gitee.com/openkylin/libvirt.git
qemu: Properly report VIR_DOMAIN_EVENT_RESUMED_FROM_SNAPSHOT
VIR_DOMAIN_EVENT_RESUMED_FROM_SNAPSHOT was defined but not used anywhere in our event generation code. This fixes qemuDomainRevertToSnapshot to properly report why the domain was resumed. Signed-off-by: Jiri Denemark <jdenemar@redhat.com> Reviewed-by: John Ferlan <jferlan@redhat.com>
This commit is contained in:
parent
7882c6eca5
commit
55af06187c
|
@ -16273,7 +16273,7 @@ qemuDomainRevertToSnapshot(virDomainSnapshotPtr snapshot,
|
|||
detail);
|
||||
} else if (!was_running) {
|
||||
/* Transition 8 */
|
||||
detail = VIR_DOMAIN_EVENT_RESUMED;
|
||||
detail = VIR_DOMAIN_EVENT_RESUMED_FROM_SNAPSHOT;
|
||||
event = virDomainEventLifecycleNewFromObj(vm,
|
||||
VIR_DOMAIN_EVENT_RESUMED,
|
||||
detail);
|
||||
|
|
Loading…
Reference in New Issue