mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 17:34:18 +03:00
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>
This commit is contained in:
parent
7d773a77ff
commit
b1fc1dbd1a
@ -2590,13 +2590,14 @@ int virDomainBlockRebase(virDomainPtr dom, const char *disk,
|
|||||||
* Flags available for virDomainBlockCopy().
|
* Flags available for virDomainBlockCopy().
|
||||||
*/
|
*/
|
||||||
typedef enum {
|
typedef enum {
|
||||||
VIR_DOMAIN_BLOCK_COPY_SHALLOW = 1 << 0, /* Limit copy to top of source
|
/* Limit copy to top of source backing chain */
|
||||||
backing chain */
|
VIR_DOMAIN_BLOCK_COPY_SHALLOW = 1 << 0,
|
||||||
VIR_DOMAIN_BLOCK_COPY_REUSE_EXT = 1 << 1, /* Reuse existing external
|
|
||||||
file for a copy */
|
/* Reuse existing external file for a copy */
|
||||||
VIR_DOMAIN_BLOCK_COPY_TRANSIENT_JOB = 1 << 2, /* Don't force usage of
|
VIR_DOMAIN_BLOCK_COPY_REUSE_EXT = 1 << 1,
|
||||||
recoverable job for the
|
|
||||||
copy operation */
|
/* Don't force usage of recoverable job for the copy operation */
|
||||||
|
VIR_DOMAIN_BLOCK_COPY_TRANSIENT_JOB = 1 << 2,
|
||||||
} virDomainBlockCopyFlags;
|
} virDomainBlockCopyFlags;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user