mirror of https://gitee.com/openkylin/libvirt.git
qemu: Fix shutoff reason when domain crashes
Commit 4454a9efc7
changed shutoff reason
from VIR_DOMAIN_SHUTOFF_CRASHED to VIR_DOMAIN_SHUTOFF_FAILED in case we
see an unexpected EOF on monitor connection. But FAILED reason is
dedicated for domains that fail to start. CRASHED reason is the right
one to use in this situation.
This commit is contained in:
parent
018f2e5c9f
commit
3acb664c56
|
@ -139,7 +139,7 @@ qemuProcessHandleMonitorEOF(qemuMonitorPtr mon ATTRIBUTE_UNUSED,
|
|||
VIR_DEBUG("Monitor connection to '%s' closed without SHUTDOWN event; "
|
||||
"assuming the domain crashed", vm->def->name);
|
||||
eventReason = VIR_DOMAIN_EVENT_STOPPED_FAILED;
|
||||
stopReason = VIR_DOMAIN_SHUTOFF_FAILED;
|
||||
stopReason = VIR_DOMAIN_SHUTOFF_CRASHED;
|
||||
auditReason = "failed";
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue