[libvirt] [PATCH] qemu: QMP capabilities support starts with 1.2

Doug Goldstein cardoe at cardoe.com
Thu Nov 1 22:15:35 UTC 2012


Per the code comment in qemuCapsInitQMPBasic() and Eric, we
should only use QMP for capabilities probing starting with 1.2 and
newer.
---
 src/qemu/qemu_capabilities.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/qemu/qemu_capabilities.c b/src/qemu/qemu_capabilities.c
index 271273c..64c0bea 100644
--- a/src/qemu/qemu_capabilities.c
+++ b/src/qemu/qemu_capabilities.c
@@ -2314,7 +2314,7 @@ qemuCapsInitQMP(qemuCapsPtr caps,
     VIR_DEBUG("Got version %d.%d.%d (%s)",
               major, minor, micro, NULLSTR(package));
 
-    if (!(major >= 1 || (major == 1 && minor >= 1))) {
+    if (!(major >= 1 || (major == 1 && minor >= 2))) {
         VIR_DEBUG("Not new enough for QMP capabilities detection");
         ret = 0;
         goto cleanup;
-- 
1.7.8.6




More information about the libvir-list mailing list