mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-02 18:05:20 +00:00
qemu: fix response timeout for agent guest-sync
The agent 'guest-sync' command historically had a 5s response timeout which was different from other agent commands, which waited forever. When we added the ability to customize the response timeout for guest agent commands, we intended to continue to use 5s for 'guest-sync' when the user specified a response timeout greater than 5s, and use the user-specified timeout if it was below 5s. Unfortunately, when attempting to determine whether the user-specified timeout was less than 5s, we were comparing against an enum value of VIR_DOMAIN_QEMU_AGENT_COMMAND_DEFAULT (which is -1) rather than against the actual time value that it represented (5). This change makes it so that 'guest-sync' now uses the user-specified tiemout if it is less than 5s. Signed-off-by: Jonathon Jongsma <jjongsma@redhat.com> Reviewed-by: Daniel Henrique Barboza <danielhb413@gmail.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
b66744e466
commit
d9605abed6
@ -904,7 +904,7 @@ qemuAgentGuestSync(qemuAgentPtr agent)
|
||||
|
||||
/* if user specified a custom agent timeout that is lower than the
|
||||
* default timeout, use the shorter timeout instead */
|
||||
if ((agent->timeout >= 0) && (agent->timeout < timeout))
|
||||
if ((agent->timeout >= 0) && (agent->timeout < QEMU_AGENT_WAIT_TIME))
|
||||
timeout = agent->timeout;
|
||||
|
||||
memset(&sync_msg, 0, sizeof(sync_msg));
|
||||
|
Loading…
x
Reference in New Issue
Block a user