1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-04-01 20:05:19 +00:00

qemu: Acquire QUERY job in qemuDomainQueryWakeupSuspendSupport()

The qemuDomainQueryWakeupSuspendSupport() does not change state
of the domain as it just runs 'query-current-machine' QMP
command. Therefore, there's no need for it to acquire MODIFY job,
QUERY job is perfectly okay.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
Michal Privoznik 2022-11-07 14:54:33 +01:00
parent 8d175cbe64
commit b697b702ac

View File

@ -16323,7 +16323,7 @@ qemuDomainQueryWakeupSuspendSupport(virDomainObj *vm,
if (!virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_QUERY_CURRENT_MACHINE))
return -1;
if (virDomainObjBeginJob(vm, VIR_JOB_MODIFY) < 0)
if (virDomainObjBeginJob(vm, VIR_JOB_QUERY) < 0)
return -1;
if ((ret = virDomainObjCheckActive(vm)) < 0)