]> xenbits.xensource.com Git - libvirt.git/commitdiff
qemu: monitor: Fix qemuMonitorGetAllBlockStatsInfo with HMP
authorPeter Krempa <pkrempa@redhat.com>
Tue, 14 Apr 2015 15:08:23 +0000 (17:08 +0200)
committerPeter Krempa <pkrempa@redhat.com>
Wed, 15 Apr 2015 11:58:26 +0000 (13:58 +0200)
Commit f6563bc3 introduced HMP impl of the function (so that a different
uglier function could be removed). Before the HMP code is called there's
a leftover check that the monitor is JSON which inhibits the code from
working.

src/qemu/qemu_monitor.c

index 0561d528acaaa429774527625b366279b490c37c..1f955473b923b1e0fab1838edb4ee956ab9ed67b 100644 (file)
@@ -1873,12 +1873,6 @@ qemuMonitorGetAllBlockStatsInfo(qemuMonitorPtr mon,
     int ret = -1;
     VIR_DEBUG("mon=%p ret_stats=%p, backing=%d", mon, ret_stats, backingChain);
 
-    if (!mon->json) {
-        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
-                       _("unable to query all block stats with this QEMU"));
-        return -1;
-    }
-
     if (!(*ret_stats = virHashCreate(10, virHashValueFree)))
         goto error;