mirror of https://gitee.com/openkylin/libvirt.git
virDomainSnapshotDiskDefFree: Export and register as autoptr func
Allow using the function for creating temporary snapshot disk definitions for creating <transient/> disk overlays. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com> Tested-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
0912f8e9af
commit
797ee40b21
|
@ -70,6 +70,11 @@ struct _virDomainSnapshotDiskDef {
|
|||
virStorageSourcePtr src;
|
||||
};
|
||||
|
||||
void
|
||||
virDomainSnapshotDiskDefFree(virDomainSnapshotDiskDefPtr disk);
|
||||
|
||||
G_DEFINE_AUTOPTR_CLEANUP_FUNC(virDomainSnapshotDiskDef, virDomainSnapshotDiskDefFree);
|
||||
|
||||
/* Stores the complete snapshot metadata */
|
||||
struct _virDomainSnapshotDef {
|
||||
virDomainMomentDef parent;
|
||||
|
|
|
@ -30,6 +30,3 @@ virDomainSnapshotDiskDefParseXML(xmlNodePtr node,
|
|||
virDomainSnapshotDiskDefPtr def,
|
||||
unsigned int flags,
|
||||
virDomainXMLOptionPtr xmlopt);
|
||||
|
||||
void
|
||||
virDomainSnapshotDiskDefFree(virDomainSnapshotDiskDefPtr disk);
|
||||
|
|
Loading…
Reference in New Issue