1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-03-07 17:28:15 +00:00

libxl: add API wrapper for libxl_domain_shutdown

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>
This commit is contained in:
Olaf Hering 2021-03-25 17:26:03 +01:00 committed by Jim Fehlig
parent 17855c5ca0
commit f8a890a6a4
2 changed files with 16 additions and 1 deletions

View File

@ -58,3 +58,17 @@ libxlRetrieveDomainConfigurationWrapper(libxl_ctx *ctx,
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;
}

View File

@ -37,6 +37,7 @@
#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"
@ -1292,7 +1293,7 @@ libxlDomainShutdownFlags(virDomainPtr dom, unsigned int flags)
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;