mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 05:35:25 +00:00
lxc: Move setting ifname_guest_actual to virLXCSetupInterfaces
so it applies to interfaces of type 'direct' too. Reported and patch provided by Bastian Blank at https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=769600
This commit is contained in:
parent
d776e995e3
commit
c1deb7f58c
@ -260,8 +260,6 @@ char *virLXCProcessSetupInterfaceBridged(virConnectPtr conn,
|
||||
|
||||
if (virNetDevSetMAC(containerVeth, &net->mac) < 0)
|
||||
goto cleanup;
|
||||
if (VIR_STRDUP(net->ifname_guest_actual, containerVeth) < 0)
|
||||
goto cleanup;
|
||||
|
||||
if (vport && vport->virtPortType == VIR_NETDEV_VPORT_PROFILE_OPENVSWITCH) {
|
||||
if (virNetDevOpenvswitchAddPort(brname, parentVeth, &net->mac,
|
||||
@ -432,6 +430,9 @@ static int virLXCProcessSetupInterfaces(virConnectPtr conn,
|
||||
|
||||
(*veths)[(*nveths)-1] = veth;
|
||||
|
||||
if (VIR_STRDUP(def->nets[i]->ifname_guest_actual, veth) < 0)
|
||||
goto cleanup;
|
||||
|
||||
/* Make sure all net definitions will have a name in the container */
|
||||
if (!net->ifname_guest) {
|
||||
if (virAsprintf(&net->ifname_guest, "eth%zu", niface) < 0)
|
||||
|
Loading…
Reference in New Issue
Block a user