mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-08 22:15:21 +00:00
qemu: caps: Don't check capability before clearing it
Checking whether a qemu capability set right before clearing it without any other logic doesn't make sense. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Cole Robinson <crobinso@redhat.com>
This commit is contained in:
parent
78c2a8b934
commit
a64265f440
@ -4602,8 +4602,7 @@ virQEMUCapsInitProcessCaps(virQEMUCapsPtr qemuCaps)
|
||||
/* Prealloc on NVDIMMs is broken on older QEMUs leading to
|
||||
* user data corruption. If we are dealing with such version
|
||||
* of QEMU pretend we don't know how to NVDIMM. */
|
||||
if (qemuCaps->version < 2009000 &&
|
||||
virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_NVDIMM))
|
||||
if (qemuCaps->version < 2009000)
|
||||
virQEMUCapsClear(qemuCaps, QEMU_CAPS_DEVICE_NVDIMM);
|
||||
|
||||
if (ARCH_IS_X86(qemuCaps->arch) &&
|
||||
|
Loading…
Reference in New Issue
Block a user