This breaks vCPU hotplug, because when starting a domain, we
create a copy of domain definition (which becomes live XML) and
during the post parse callbacks we might adjust some tunings so
that vCPU hotplug is possible.
This reverts commit
c0f90799bc7fa4b690ead6a592806378a243873c.
{
int ret;
- if (flags & VIR_DOMAIN_DEF_PARSE_SKIP_POST_PARSE)
- return 0;
-
if (xmlopt->config.devicesPostParseCallback) {
ret = xmlopt->config.devicesPostParseCallback(dev, def, caps, flags,
xmlopt->config.priv,
.parseOpaque = parseOpaque,
};
- if (parseFlags & VIR_DOMAIN_DEF_PARSE_SKIP_POST_PARSE)
- return 0;
-
/* this must be done before the hypervisor-specific callback,
* in case presence of a controller at a specific index is checked
*/
VIR_DOMAIN_DEF_PARSE_ABI_UPDATE = 1 << 9,
/* skip definition validation checks meant to be executed on define time only */
VIR_DOMAIN_DEF_PARSE_SKIP_VALIDATE = 1 << 10,
- /* skip post parse callback */
- VIR_DOMAIN_DEF_PARSE_SKIP_POST_PARSE = 1 << 11,
} virDomainDefParseFlags;
typedef enum {