Upcoming changes will use different LIBXL_API_VERSION variants.
Prepare libxl_domain_shutdown, which got a new parameter
"ao_how" in Xen 4.12. libvirt does not use this parameter.
No functional change intended.
Signed-off-by: Olaf Hering <olaf@aepfle.de>
Reviewed-by: Jim Fehlig <jfehlig@suse.com>
return ret;
}
+
+static inline int
+libxlDomainShutdownWrapper(libxl_ctx *ctx, uint32_t domid)
+{
+ int ret;
+
+#if LIBXL_API_VERSION < 0x041300
+ ret = libxl_domain_shutdown(ctx, domid);
+#else
+ ret = libxl_domain_shutdown(ctx, domid, NULL);
+#endif
+
+ return ret;
+}
#include "viruuid.h"
#include "virhook.h"
#include "vircommand.h"
+#include "libxl_api_wrapper.h"
#include "libxl_domain.h"
#include "libxl_driver.h"
#include "libxl_conf.h"
goto cleanup;
if (flags & VIR_DOMAIN_SHUTDOWN_PARAVIRT) {
- ret = libxl_domain_shutdown(cfg->ctx, vm->def->id);
+ ret = libxlDomainShutdownWrapper(cfg->ctx, vm->def->id);
if (ret == 0)
goto cleanup;