}
-static int
-virDomainDiskSourcePrivateDataParse(xmlNodePtr node,
- xmlXPathContextPtr ctxt,
- virStorageSourcePtr src,
- unsigned int flags,
- virDomainXMLOptionPtr xmlopt)
-{
- VIR_XPATH_NODE_AUTORESTORE(ctxt);
-
- if (!(flags & VIR_DOMAIN_DEF_PARSE_STATUS) ||
- !xmlopt || !xmlopt->privateData.storageParse)
- return 0;
-
- ctxt->node = node;
-
- if (!(ctxt->node = virXPathNode("./privateData", ctxt)))
- return 0;
-
- if (xmlopt->privateData.storageParse(ctxt, src) < 0)
- return -1;
-
- return 0;
-}
-
-
static int
virDomainDiskSourcePRParse(xmlNodePtr node,
xmlXPathContextPtr ctxt,
virDomainStorageSourceParse(xmlNodePtr node,
xmlXPathContextPtr ctxt,
virStorageSourcePtr src,
- unsigned int flags)
+ unsigned int flags,
+ virDomainXMLOptionPtr xmlopt)
{
VIR_XPATH_NODE_AUTORESTORE(ctxt);
xmlNodePtr tmp;
if (src->path && !*src->path)
VIR_FREE(src->path);
+ if ((flags & VIR_DOMAIN_DEF_PARSE_STATUS) &&
+ xmlopt && xmlopt->privateData.storageParse &&
+ (tmp = virXPathNode("./privateData", ctxt))) {
+ ctxt->node = tmp;
+
+ if (xmlopt->privateData.storageParse(ctxt, src) < 0)
+ return -1;
+ }
+
return 0;
}
unsigned int flags,
virDomainXMLOptionPtr xmlopt)
{
- if (virDomainStorageSourceParse(node, ctxt, src, flags) < 0)
- return -1;
-
- if (virDomainDiskSourcePrivateDataParse(node, ctxt, src, flags, xmlopt) < 0)
+ if (virDomainStorageSourceParse(node, ctxt, src, flags, xmlopt) < 0)
return -1;
return 0;
}
if (virDomainStorageSourceParse(ctxt->node, ctxt, migrSource,
- VIR_DOMAIN_DEF_PARSE_STATUS) < 0)
+ VIR_DOMAIN_DEF_PARSE_STATUS, NULL) < 0)
goto cleanup;
if ((ctxt->node = virXPathNode("./privateData", ctxt)) &&