提交 43db9cf4 编写于 作者: D Daniel P. Berrange

Ensure failure to create macvtap device aborts LXC start

A mistaken initialization of 'ret' caused failure to create
macvtap devices to be ignored. The libvirt_lxc process
would later fail to start due to missing devices

Also make sure code checks '< 0' and not '!= 0' since only
-1 is considered an error condition
Signed-off-by: NDaniel P. Berrange <berrange@redhat.com>
上级 68dceb63
...@@ -360,7 +360,7 @@ static int virLXCProcessSetupInterfaceDirect(virConnectPtr conn, ...@@ -360,7 +360,7 @@ static int virLXCProcessSetupInterfaceDirect(virConnectPtr conn,
unsigned int *nveths, unsigned int *nveths,
char ***veths) char ***veths)
{ {
int ret = 0; int ret = -1;
char *res_ifname = NULL; char *res_ifname = NULL;
virLXCDriverPtr driver = conn->privateData; virLXCDriverPtr driver = conn->privateData;
virNetDevBandwidthPtr bw; virNetDevBandwidthPtr bw;
...@@ -539,10 +539,10 @@ static int virLXCProcessSetupInterfaces(virConnectPtr conn, ...@@ -539,10 +539,10 @@ static int virLXCProcessSetupInterfaces(virConnectPtr conn,
} }
} }
ret= 0; ret = 0;
cleanup: cleanup:
if (ret != 0) { if (ret < 0) {
for (i = 0 ; i < def->nnets ; i++) { for (i = 0 ; i < def->nnets ; i++) {
virDomainNetDefPtr iface = def->nets[i]; virDomainNetDefPtr iface = def->nets[i];
virNetDevVPortProfilePtr vport = virDomainNetGetActualVirtPortProfile(iface); virNetDevVPortProfilePtr vport = virDomainNetGetActualVirtPortProfile(iface);
...@@ -1046,7 +1046,7 @@ int virLXCProcessStart(virConnectPtr conn, ...@@ -1046,7 +1046,7 @@ int virLXCProcessStart(virConnectPtr conn,
} }
} }
if (virLXCProcessSetupInterfaces(conn, vm->def, &nveths, &veths) != 0) if (virLXCProcessSetupInterfaces(conn, vm->def, &nveths, &veths) < 0)
goto cleanup; goto cleanup;
/* Save the configuration for the controller */ /* Save the configuration for the controller */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册