mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-23 14:15:28 +00:00
qemu: agent: cleanup agent error flag correctly
Sometimes after domain restart agent is unavailabe even if it is up and running in guest. Diagnostic message is "QEMU guest agent is not available due to an error" that is 'priv->agentError' is set. Investiagion shows that 'priv->agent' is not NULL, so error flag is set probably during domain shutdown process and not cleaned up eventually. The patch is quite simple - just clean up error flag unconditionally upon domain stop. Other hunks address other cases when error flag is not cleaned up. 1. processSerialChangedEvent. We need to clean error flag unconditionally here too. For example if upon first 'connected' event we fail to connect and set error flag and then connect on second 'connected' event then error flag will remain set erroneously and make agent unavailable. 2. qemuProcessHandleAgentEOF. If error flag is set and we get EOF we need to change state (and diagnostic) from 'error' to 'not connected'.
This commit is contained in:
parent
f5109f20ff
commit
6ba861ae36
@ -4467,8 +4467,8 @@ processSerialChangedEvent(virQEMUDriverPtr driver,
|
||||
if (priv->agent) {
|
||||
qemuAgentClose(priv->agent);
|
||||
priv->agent = NULL;
|
||||
priv->agentError = false;
|
||||
}
|
||||
priv->agentError = false;
|
||||
}
|
||||
|
||||
event = virDomainEventAgentLifecycleNewFromObj(vm, newstate,
|
||||
|
@ -151,6 +151,7 @@ qemuProcessHandleAgentEOF(qemuAgentPtr agent,
|
||||
|
||||
qemuAgentClose(agent);
|
||||
priv->agent = NULL;
|
||||
priv->agentError = false;
|
||||
|
||||
virObjectUnlock(vm);
|
||||
return;
|
||||
@ -5995,8 +5996,8 @@ void qemuProcessStop(virQEMUDriverPtr driver,
|
||||
if (priv->agent) {
|
||||
qemuAgentClose(priv->agent);
|
||||
priv->agent = NULL;
|
||||
priv->agentError = false;
|
||||
}
|
||||
priv->agentError = false;
|
||||
|
||||
if (priv->mon) {
|
||||
qemuMonitorClose(priv->mon);
|
||||
|
Loading…
Reference in New Issue
Block a user