mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-07 17:28:15 +00:00
destroy: Implement internal API for ESX driver
This commit is contained in:
parent
427eaf13e2
commit
3959fe300e
@ -1937,7 +1937,8 @@ esxDomainReboot(virDomainPtr domain, unsigned int flags)
|
||||
|
||||
|
||||
static int
|
||||
esxDomainDestroy(virDomainPtr domain)
|
||||
esxDomainDestroyFlags(virDomainPtr domain,
|
||||
unsigned int flags)
|
||||
{
|
||||
int result = -1;
|
||||
esxPrivate *priv = domain->conn->privateData;
|
||||
@ -1949,6 +1950,8 @@ esxDomainDestroy(virDomainPtr domain)
|
||||
esxVI_TaskInfoState taskInfoState;
|
||||
char *taskInfoErrorMessage = NULL;
|
||||
|
||||
virCheckFlags(0, -1);
|
||||
|
||||
if (priv->vCenter != NULL) {
|
||||
ctx = priv->vCenter;
|
||||
} else {
|
||||
@ -2001,6 +2004,12 @@ esxDomainDestroy(virDomainPtr domain)
|
||||
}
|
||||
|
||||
|
||||
static int
|
||||
esxDomainDestroy(virDomainPtr dom)
|
||||
{
|
||||
return esxDomainDestroyFlags(dom, 0);
|
||||
}
|
||||
|
||||
|
||||
static char *
|
||||
esxDomainGetOSType(virDomainPtr domain ATTRIBUTE_UNUSED)
|
||||
@ -4734,6 +4743,7 @@ static virDriver esxDriver = {
|
||||
.domainShutdown = esxDomainShutdown, /* 0.7.0 */
|
||||
.domainReboot = esxDomainReboot, /* 0.7.0 */
|
||||
.domainDestroy = esxDomainDestroy, /* 0.7.0 */
|
||||
.domainDestroyFlags = esxDomainDestroyFlags, /* 0.9.4 */
|
||||
.domainGetOSType = esxDomainGetOSType, /* 0.7.0 */
|
||||
.domainGetMaxMemory = esxDomainGetMaxMemory, /* 0.7.0 */
|
||||
.domainSetMaxMemory = esxDomainSetMaxMemory, /* 0.7.0 */
|
||||
|
Loading…
x
Reference in New Issue
Block a user