]> xenbits.xensource.com Git - libvirt.git/commitdiff
include: virDomainBlockCopyFlags: Convert to prefix comments
authorPeter Krempa <pkrempa@redhat.com>
Wed, 1 Dec 2021 13:54:30 +0000 (14:54 +0100)
committerPeter Krempa <pkrempa@redhat.com>
Tue, 7 Dec 2021 08:00:39 +0000 (09:00 +0100)
Switch to the comment style allowing more text.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
include/libvirt/libvirt-domain.h

index 2f017c5b68eaf0b82c5afba41f705315a79a35a5..dddcae86a40473e603a076d489416b26822b8723 100644 (file)
@@ -2590,13 +2590,14 @@ int virDomainBlockRebase(virDomainPtr dom, const char *disk,
  * Flags available for virDomainBlockCopy().
  */
 typedef enum {
-    VIR_DOMAIN_BLOCK_COPY_SHALLOW   = 1 << 0, /* Limit copy to top of source
-                                                 backing chain */
-    VIR_DOMAIN_BLOCK_COPY_REUSE_EXT = 1 << 1, /* Reuse existing external
-                                                 file for a copy */
-    VIR_DOMAIN_BLOCK_COPY_TRANSIENT_JOB = 1 << 2, /* Don't force usage of
-                                                     recoverable job for the
-                                                     copy operation */
+    /* Limit copy to top of source backing chain */
+    VIR_DOMAIN_BLOCK_COPY_SHALLOW   = 1 << 0,
+
+    /* Reuse existing external file for a copy */
+    VIR_DOMAIN_BLOCK_COPY_REUSE_EXT = 1 << 1,
+
+    /* Don't force usage of recoverable job for the copy operation */
+    VIR_DOMAIN_BLOCK_COPY_TRANSIENT_JOB = 1 << 2,
 } virDomainBlockCopyFlags;
 
 /**