提交 692c4ea6 编写于 作者: P Peter Krempa

qemu: dump: Resume CPUs only when the VM is still alive

Check if the VM is alive after we possibly called into monitor to reset
the guest.
上级 736ea71b
...@@ -3681,15 +3681,17 @@ qemuDomainCoreDumpWithFormat(virDomainPtr dom, ...@@ -3681,15 +3681,17 @@ qemuDomainCoreDumpWithFormat(virDomainPtr dom,
qemuDomainObjExitMonitor(driver, vm); qemuDomainObjExitMonitor(driver, vm);
} }
if (resume && qemuProcessStartCPUs(driver, vm, dom->conn, if (resume && virDomainObjIsActive(vm)) {
VIR_DOMAIN_RUNNING_UNPAUSED, if (qemuProcessStartCPUs(driver, vm, dom->conn,
QEMU_ASYNC_JOB_DUMP) < 0) { VIR_DOMAIN_RUNNING_UNPAUSED,
event = virDomainEventLifecycleNewFromObj(vm, QEMU_ASYNC_JOB_DUMP) < 0) {
VIR_DOMAIN_EVENT_SUSPENDED, event = virDomainEventLifecycleNewFromObj(vm,
VIR_DOMAIN_EVENT_SUSPENDED_API_ERROR); VIR_DOMAIN_EVENT_SUSPENDED,
if (virGetLastError() == NULL) VIR_DOMAIN_EVENT_SUSPENDED_API_ERROR);
virReportError(VIR_ERR_OPERATION_FAILED, if (virGetLastError() == NULL)
"%s", _("resuming after dump failed")); virReportError(VIR_ERR_OPERATION_FAILED,
"%s", _("resuming after dump failed"));
}
} }
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册