[libvirt] [PATCH 2/5] DomainXMLFlags: Introduce flag allowing suppress of generation of additional items

Michal Privoznik mprivozn at redhat.com
Thu Mar 17 14:38:46 UTC 2011


---
 include/libvirt/libvirt.h.in |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/include/libvirt/libvirt.h.in b/include/libvirt/libvirt.h.in
index eaeccd6..596f3b3 100644
--- a/include/libvirt/libvirt.h.in
+++ b/include/libvirt/libvirt.h.in
@@ -886,9 +886,10 @@ int                     virDomainGetSecurityLabel (virDomainPtr domain,
  */
 
 typedef enum {
-    VIR_DOMAIN_XML_SECURE       = (1 << 0), /* dump security sensitive information too */
-    VIR_DOMAIN_XML_INACTIVE     = (1 << 1), /* dump inactive domain information */
-    VIR_DOMAIN_XML_UPDATE_CPU   = (1 << 2), /* update guest CPU requirements according to host CPU */
+    VIR_DOMAIN_XML_SECURE        = (1 << 0), /* dump security sensitive information too */
+    VIR_DOMAIN_XML_INACTIVE      = (1 << 1), /* dump inactive domain information */
+    VIR_DOMAIN_XML_UPDATE_CPU    = (1 << 2), /* update guest CPU requirements according to host CPU */
+    VIR_DOMAIN_PARSE_NO_GENERATE = (1 << 3), /* suppress generation of additional items in the parse */
 } virDomainXMLFlags;
 
 char *                  virDomainGetXMLDesc     (virDomainPtr domain,
-- 
1.7.4




More information about the libvir-list mailing list