From 310992c344a52b494a17a19540ecce4f4f375788 Mon Sep 17 00:00:00 2001 From: Peter Krempa Date: Mon, 19 Oct 2015 14:01:22 +0200 Subject: [PATCH] conf: Use local copy of maxvcpus in virDomainVcpuParse Use the local variable rather than getting it all the time from the struct. This will simplify further refactors. --- src/conf/domain_conf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/conf/domain_conf.c b/src/conf/domain_conf.c index 50ff301e7..91b045d04 100644 --- a/src/conf/domain_conf.c +++ b/src/conf/domain_conf.c @@ -14407,13 +14407,13 @@ virDomainVcpuParse(virDomainDefPtr def, goto cleanup; } - def->vcpus = def->maxvcpus; + def->vcpus = maxvcpus; } - if (def->maxvcpus < def->vcpus) { + if (maxvcpus < def->vcpus) { virReportError(VIR_ERR_INTERNAL_ERROR, _("maxvcpus must not be less than current vcpus " - "(%u < %u)"), def->maxvcpus, def->vcpus); + "(%u < %u)"), maxvcpus, def->vcpus); goto cleanup; } -- 2.39.5