[libvirt] [PATCH v2 02/13] destroy: Wire up the remote protocol

Michal Privoznik mprivozn at redhat.com
Thu Jul 21 16:08:33 UTC 2011


---
 src/remote/remote_driver.c   |    1 +
 src/remote/remote_protocol.x |    8 +++++++-
 src/remote_protocol-structs  |    5 +++++
 3 files changed, 13 insertions(+), 1 deletions(-)

diff --git a/src/remote/remote_driver.c b/src/remote/remote_driver.c
index 82b938c..01e699b 100644
--- a/src/remote/remote_driver.c
+++ b/src/remote/remote_driver.c
@@ -4152,6 +4152,7 @@ static virDriver remote_driver = {
     .domainShutdown = remoteDomainShutdown, /* 0.3.0 */
     .domainReboot = remoteDomainReboot, /* 0.3.0 */
     .domainDestroy = remoteDomainDestroy, /* 0.3.0 */
+    .domainDestroyFlags = remoteDomainDestroyFlags, /* 0.9.4 */
     .domainGetOSType = remoteDomainGetOSType, /* 0.3.0 */
     .domainGetMaxMemory = remoteDomainGetMaxMemory, /* 0.3.0 */
     .domainSetMaxMemory = remoteDomainSetMaxMemory, /* 0.3.0 */
diff --git a/src/remote/remote_protocol.x b/src/remote/remote_protocol.x
index ef9dd10..414b088 100644
--- a/src/remote/remote_protocol.x
+++ b/src/remote/remote_protocol.x
@@ -676,6 +676,11 @@ struct remote_domain_destroy_args {
     remote_nonnull_domain dom;
 };
 
+struct remote_domain_destroy_flags_args {
+    remote_nonnull_domain dom;
+    unsigned int flags;
+};
+
 struct remote_domain_get_os_type_args {
     remote_nonnull_domain dom;
 };
@@ -2390,7 +2395,8 @@ enum remote_procedure {
     REMOTE_PROC_DOMAIN_GET_CONTROL_INFO = 229, /* autogen autogen */
     REMOTE_PROC_DOMAIN_GET_VCPU_PIN_INFO = 230,  /* skipgen skipgen */
 
-    REMOTE_PROC_DOMAIN_UNDEFINE_FLAGS = 231  /* autogen autogen */
+    REMOTE_PROC_DOMAIN_UNDEFINE_FLAGS = 231,  /* autogen autogen */
+    REMOTE_PROC_DOMAIN_DESTROY_FLAGS = 232 /* autogen autogen */
 
     /*
      * Notice how the entries are grouped in sets of 10 ?
diff --git a/src/remote_protocol-structs b/src/remote_protocol-structs
index 96e74eb..1dd75e5 100644
--- a/src/remote_protocol-structs
+++ b/src/remote_protocol-structs
@@ -390,6 +390,10 @@ struct remote_domain_reboot_args {
 struct remote_domain_destroy_args {
         remote_nonnull_domain      dom;
 };
+struct remote_domain_destroy_flags_args {
+        remote_nonnull_domain      dom;
+        u_int                      flags;
+};
 struct remote_domain_get_os_type_args {
         remote_nonnull_domain      dom;
 };
@@ -1864,4 +1868,5 @@ enum remote_procedure {
         REMOTE_PROC_DOMAIN_GET_CONTROL_INFO = 229,
         REMOTE_PROC_DOMAIN_GET_VCPU_PIN_INFO = 230,
         REMOTE_PROC_DOMAIN_UNDEFINE_FLAGS = 231,
+        REMOTE_PROC_DOMAIN_DESTROY_FLAGS = 232,
 };
-- 
1.7.5.rc3




More information about the libvir-list mailing list