mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-22 04:25:18 +00:00
qemu: agent: Fix incorrect and weird debug/warning log entries
Replace the nonsensical debug statement by adding the expected event code into the existing debug statement. Since the monitor code always notifies the agent on guest reboot/shutdown even if that was not initiated by the agent the warning emitted later is bogus and pollutes the logs in such cases. Delete it and keep just the original debug message where this info can be inferred.
This commit is contained in:
parent
5143429303
commit
a46aad791c
@ -1230,19 +1230,14 @@ qemuAgentMakeStringsArray(const char **strings, unsigned int len)
|
||||
void qemuAgentNotifyEvent(qemuAgentPtr mon,
|
||||
qemuAgentEvent event)
|
||||
{
|
||||
VIR_DEBUG("mon=%p event=%d", mon, event);
|
||||
VIR_DEBUG("mon=%p event=%d await_event=%d", mon, event, mon->await_event);
|
||||
if (mon->await_event == event) {
|
||||
VIR_DEBUG("Waking up a tragedian");
|
||||
mon->await_event = QEMU_AGENT_EVENT_NONE;
|
||||
/* somebody waiting for this event, wake him up. */
|
||||
if (mon->msg && !mon->msg->finished) {
|
||||
mon->msg->finished = 1;
|
||||
virCondSignal(&mon->notify);
|
||||
}
|
||||
} else {
|
||||
/* shouldn't happen but one never knows */
|
||||
VIR_WARN("Received unexpected event %d (expected %d)",
|
||||
event, mon->await_event);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user