提交 6d394989 编写于 作者: P Pino Toscano 提交者: Michal Privoznik

vmx: allocate space for network interfaces if needed

Dynamically grow the array of network interfaces for each interface
read, instead of using a single array of size 4.  This way, in the
future it will be easier to not limit the number of network interfaces
(which this patch still does not change).
Signed-off-by: NPino Toscano <ptoscano@redhat.com>
上级 5d5430e1
......@@ -1751,19 +1751,16 @@ virVMXParseConfig(virVMXContext *ctx,
}
/* def:nets */
if (VIR_ALLOC_N(def->nets, 4) < 0)
goto cleanup;
def->nnets = 0;
for (controller = 0; controller < 4; ++controller) {
if (virVMXParseEthernet(conf, controller,
&def->nets[def->nnets]) < 0) {
virDomainNetDefPtr net = NULL;
if (virVMXParseEthernet(conf, controller, &net) < 0)
goto cleanup;
}
if (def->nets[def->nnets] != NULL)
++def->nnets;
if (!net)
continue;
if (VIR_APPEND_ELEMENT(def->nets, def->nnets, net) < 0)
goto cleanup;
}
/* def:inputs */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册