Rename them to comply with the naming policy.
virStorageNetHostTransportTypeToString;
virStorageNetProtocolTypeToString;
virStorageSourceAuthClear;
+virStorageSourceBackingStoreClear;
virStorageSourceClear;
-virStorageSourceClearBackingStore;
virStorageSourceFree;
virStorageSourceGetActualType;
virStorageSourceGetSecurityLabelDef;
if (disk->src->backingStore) {
if (force)
- virStorageSourceClearBackingStore(disk->src);
+ virStorageSourceBackingStoreClear(disk->src);
else
goto cleanup;
}
* recompute it. Better would be storing the chain ourselves rather than
* reprobing, but this requires modifying domain_conf and our XML to fully
* track the chain across libvirtd restarts. */
- virStorageSourceClearBackingStore(disk->src);
+ virStorageSourceBackingStoreClear(disk->src);
if (virStorageFileInit(snap->src) < 0)
goto cleanup;
/**
- * virStorageSourceClearBackingStore:
+ * virStorageSourceBackingStoreClear:
*
* @src: disk source to clear
*
* Clears information about backing store of the current storage file.
*/
void
-virStorageSourceClearBackingStore(virStorageSourcePtr def)
+virStorageSourceBackingStoreClear(virStorageSourcePtr def)
{
if (!def)
return;
virStorageNetHostDefFree(def->nhosts, def->hosts);
virStorageSourceAuthClear(def);
- virStorageSourceClearBackingStore(def);
+ virStorageSourceBackingStoreClear(def);
}
void virStorageSourceClear(virStorageSourcePtr def);
int virStorageSourceGetActualType(virStorageSourcePtr def);
void virStorageSourceFree(virStorageSourcePtr def);
-void virStorageSourceClearBackingStore(virStorageSourcePtr def);
+void virStorageSourceBackingStoreClear(virStorageSourcePtr def);
virStorageSourcePtr virStorageSourceNewFromBacking(virStorageSourcePtr parent);
typedef int