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:
parent
17855c5ca0
commit
f8a890a6a4
@ -58,3 +58,17 @@ libxlRetrieveDomainConfigurationWrapper(libxl_ctx *ctx,
|
|||||||
|
|
||||||
return ret;
|
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;
|
||||||
|
}
|
||||||
|
@ -37,6 +37,7 @@
|
|||||||
#include "viruuid.h"
|
#include "viruuid.h"
|
||||||
#include "virhook.h"
|
#include "virhook.h"
|
||||||
#include "vircommand.h"
|
#include "vircommand.h"
|
||||||
|
#include "libxl_api_wrapper.h"
|
||||||
#include "libxl_domain.h"
|
#include "libxl_domain.h"
|
||||||
#include "libxl_driver.h"
|
#include "libxl_driver.h"
|
||||||
#include "libxl_conf.h"
|
#include "libxl_conf.h"
|
||||||
@ -1292,7 +1293,7 @@ libxlDomainShutdownFlags(virDomainPtr dom, unsigned int flags)
|
|||||||
goto cleanup;
|
goto cleanup;
|
||||||
|
|
||||||
if (flags & VIR_DOMAIN_SHUTDOWN_PARAVIRT) {
|
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)
|
if (ret == 0)
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user