mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 20:01:16 +00:00
1b5c8d4cbc
I got annoyed at having to use both 'virsh vol-list $pool --details' AND 'virsh vol-dumpxml $vol $pool' to learn if I had populated the volume correctly. Since two-thirds of the data present in virStorageVolGetInfo() already appears in virStorageVolGetXMLDesc(), this just adds the remaining piece of information, as: <volume type='...'> ... </volume> * docs/formatstorage.html.in: Document new <volume type=...>. * docs/schemas/storagevol.rng (vol): Add it to RelaxNG. * src/conf/storage_conf.h (virStorageVolTypeToString): Declare. * src/conf/storage_conf.c (virStorageVolTargetDefFormat): Output the metatype. (virStorageVolDefParseXML): Parse it, for unit tests. * tests/storagevolxml2xmlout/vol-*.xml: Update tests to match. Signed-off-by: Eric Blake <eblake@redhat.com>
30 lines
737 B
XML
30 lines
737 B
XML
<volume type='block'>
|
|
<name>Swap</name>
|
|
<key>r4xkCv-MQhr-WKIT-R66x-Epn2-e8hG-1Z5gY0</key>
|
|
<source>
|
|
<device path='/dev/sda2'>
|
|
<extent start='31440502784' end='33520877568'/>
|
|
</device>
|
|
</source>
|
|
<capacity>2080374784</capacity>
|
|
<allocation>2080374784</allocation>
|
|
<target>
|
|
<path>/dev/HostVG/Swap</path>
|
|
<permissions>
|
|
<mode>0660</mode>
|
|
<owner>0</owner>
|
|
<group>6</group>
|
|
<label>system_u:object_r:fixed_disk_device_t:s0</label>
|
|
</permissions>
|
|
</target>
|
|
<backingStore>
|
|
<path>/dev/HostVG/snapshot</path>
|
|
<permissions>
|
|
<mode>0744</mode>
|
|
<owner>1</owner>
|
|
<group>1</group>
|
|
<label>virt_image_t</label>
|
|
</permissions>
|
|
</backingStore>
|
|
</volume>
|