diff --git a/docs/formatdomain.html.in b/docs/formatdomain.html.in index e851f852a1..93ee05c94e 100644 --- a/docs/formatdomain.html.in +++ b/docs/formatdomain.html.in @@ -1624,6 +1624,20 @@ </auth> <target dev='vda' bus='virtio'/> </disk> + <disk type='file' device='disk'> + <driver name='qemu' type='qcow2'/> + <source file='/var/lib/libvirt/images/domain.qcow'/> + <backingStore type='file'> + <format type='qcow2'/> + <source file='/var/lib/libvirt/images/snapshot.qcow'/> + <backingStore type='block'> + <format type='raw'/> + <source dev='/dev/mapper/base'/> + <backingStore/> + </backingStore> + </backingStore> + <target dev='vda' bus='virtio'/> + </disk> </devices> ... @@ -1814,6 +1828,53 @@ This feature doesn't support migration currently.
+backingStore
source
element. It is currently ignored on input
+ and only used for output to describe the detected backing chains.
+ Since 1.2.4. An empty
+ backingStore
element means the sibling source is
+ self-contained and is not based on any backing store. The following
+ attributes and sub-elements are supported in
+ backingStore
:
+ type
attributetype
attribute represents the type of disk used
+ by the backing store, see disk type attribute above for more
+ details and possible values.
+ index
attributevirDomainBlockRebase
API). For example,
+ vda[2]
refers to the backing store with
+ index='2'
of the disk with vda
target.
+ format
sub-elementformat
element contains type
+ attribute which specifies the internal format of the backing
+ store, such as raw
or qcow2
.
+ source
sub-elementsource
+ element in disk
. It specifies which file, device,
+ or network location contains the data of the described backing
+ store.
+ backingStore
sub-elementbackingStore
+ element.
+ mirror