mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-08 20:51:26 +00:00
hyperv: implement domainUndefine and domainUndefineFlags
Co-authored-by: Sri Ramanujam <sramanujam@datto.com> Signed-off-by: Matt Coleman <matt@datto.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
65e1b4fd26
commit
c79da543c8
@ -1871,6 +1871,46 @@ hypervDomainCreate(virDomainPtr domain)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static int
|
||||||
|
hypervDomainUndefineFlags(virDomainPtr domain, unsigned int flags)
|
||||||
|
{
|
||||||
|
char uuid_string[VIR_UUID_STRING_BUFLEN];
|
||||||
|
hypervPrivate *priv = domain->conn->privateData;
|
||||||
|
g_autoptr(hypervInvokeParamsList) params = NULL;
|
||||||
|
g_auto(virBuffer) eprQuery = VIR_BUFFER_INITIALIZER;
|
||||||
|
|
||||||
|
virCheckFlags(0, -1);
|
||||||
|
|
||||||
|
virUUIDFormat(domain->uuid, uuid_string);
|
||||||
|
|
||||||
|
/* prepare params */
|
||||||
|
params = hypervCreateInvokeParamsList("DestroySystem",
|
||||||
|
MSVM_VIRTUALSYSTEMMANAGEMENTSERVICE_SELECTOR,
|
||||||
|
Msvm_VirtualSystemManagementService_WmiInfo);
|
||||||
|
|
||||||
|
if (!params)
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
virBufferEscapeSQL(&eprQuery, MSVM_COMPUTERSYSTEM_WQL_SELECT "WHERE Name = '%s'", uuid_string);
|
||||||
|
|
||||||
|
if (hypervAddEprParam(params, "AffectedSystem", &eprQuery, Msvm_ComputerSystem_WmiInfo) < 0)
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
/* actually destroy the VM */
|
||||||
|
if (hypervInvokeMethod(priv, ¶ms, NULL) < 0)
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static int
|
||||||
|
hypervDomainUndefine(virDomainPtr domain)
|
||||||
|
{
|
||||||
|
return hypervDomainUndefineFlags(domain, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
static int
|
static int
|
||||||
hypervDomainGetAutostart(virDomainPtr domain, int *autostart)
|
hypervDomainGetAutostart(virDomainPtr domain, int *autostart)
|
||||||
{
|
{
|
||||||
@ -2482,6 +2522,8 @@ static virHypervisorDriver hypervHypervisorDriver = {
|
|||||||
.connectNumOfDefinedDomains = hypervConnectNumOfDefinedDomains, /* 0.9.5 */
|
.connectNumOfDefinedDomains = hypervConnectNumOfDefinedDomains, /* 0.9.5 */
|
||||||
.domainCreate = hypervDomainCreate, /* 0.9.5 */
|
.domainCreate = hypervDomainCreate, /* 0.9.5 */
|
||||||
.domainCreateWithFlags = hypervDomainCreateWithFlags, /* 0.9.5 */
|
.domainCreateWithFlags = hypervDomainCreateWithFlags, /* 0.9.5 */
|
||||||
|
.domainUndefine = hypervDomainUndefine, /* 7.1.0 */
|
||||||
|
.domainUndefineFlags = hypervDomainUndefineFlags, /* 7.1.0 */
|
||||||
.domainGetAutostart = hypervDomainGetAutostart, /* 6.9.0 */
|
.domainGetAutostart = hypervDomainGetAutostart, /* 6.9.0 */
|
||||||
.domainSetAutostart = hypervDomainSetAutostart, /* 6.9.0 */
|
.domainSetAutostart = hypervDomainSetAutostart, /* 6.9.0 */
|
||||||
.domainGetSchedulerType = hypervDomainGetSchedulerType, /* 6.10.0 */
|
.domainGetSchedulerType = hypervDomainGetSchedulerType, /* 6.10.0 */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user