summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPeter Krempa <pkrempa@redhat.com>2021-12-01 14:54:30 +0100
committerPeter Krempa <pkrempa@redhat.com>2021-12-07 09:00:39 +0100
commitb1fc1dbd1a024f13d3bb00fd032f6c80e7024f3f (patch)
treef7db3b327ae0806c83a2aacd47320f1ae289aa3d /include
parent7d773a77ffec06defc11f6ffade0fa00bcbf9dfe (diff)
downloadlibvirt-b1fc1dbd1a024f13d3bb00fd032f6c80e7024f3f.tar.gz
include: virDomainBlockCopyFlags: Convert to prefix comments
Switch to the comment style allowing more text. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/libvirt/libvirt-domain.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/include/libvirt/libvirt-domain.h b/include/libvirt/libvirt-domain.h
index 2f017c5b68..dddcae86a4 100644
--- a/include/libvirt/libvirt-domain.h
+++ b/include/libvirt/libvirt-domain.h
@@ -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;
/**