]> xenbits.xensource.com Git - libvirt.git/commitdiff
libxl: remove obsolete check for result of xc_get_max_cpus
authorOlaf Hering <olaf@aepfle.de>
Mon, 3 May 2021 10:56:11 +0000 (12:56 +0200)
committerJim Fehlig <jfehlig@suse.com>
Tue, 4 May 2021 22:24:57 +0000 (16:24 -0600)
xc_get_max_cpus from Xen version 4.3 may return 0 in case xc_physinfo
fails. This has been fixed in Xen 4.4. Remove the obsolete result check
from libvirt. Just convert libxl error codes to plain -1.

Signed-off-by: Olaf Hering <olaf@aepfle.de>
Reviewed-by: Jim Fehlig <jfehlig@suse.com>
src/libxl/libxl_driver.c

index cf3ee4db3dd8e95dfa4855a3eb004abf106b221c..99a170ff2ac036b75a542c242df4bff21c6eabeb 100644 (file)
@@ -972,11 +972,7 @@ libxlConnectGetMaxVcpus(virConnectPtr conn, const char *type G_GNUC_UNUSED)
 
     cfg = libxlDriverConfigGet(driver);
     ret = libxl_get_max_cpus(cfg->ctx);
-    /* On failure, libxl_get_max_cpus() will return ERROR_FAIL from Xen 4.4
-     * onward, but it ever returning 0 is obviously wrong too (and it is
-     * what happens, on failure, on Xen 4.3 and earlier). Therefore, a 'less
-     * or equal' is the catchall we want. */
-    if (ret <= 0)
+    if (ret < 0)
         ret = -1;
 
     virObjectUnref(cfg);