mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-09 14:35:25 +00:00
Handle hotplug change on VLAN configuration using OVS
A new function virNetDevOpenvswitchUpdateVlan has been created to instruct OVS of the changes. qemuDomainChangeNet has been modified to handle the update of the VLAN configuration for a running guest and rely on virNetDevOpenvswitchUpdateVlan to do the actual update if needed. Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
695611f99e
commit
e484cb3eca
@ -2206,6 +2206,7 @@ virNetDevOpenvswitchInterfaceStats;
|
|||||||
virNetDevOpenvswitchRemovePort;
|
virNetDevOpenvswitchRemovePort;
|
||||||
virNetDevOpenvswitchSetMigrateData;
|
virNetDevOpenvswitchSetMigrateData;
|
||||||
virNetDevOpenvswitchSetTimeout;
|
virNetDevOpenvswitchSetTimeout;
|
||||||
|
virNetDevOpenvswitchUpdateVlan;
|
||||||
|
|
||||||
|
|
||||||
# util/virnetdevtap.h
|
# util/virnetdevtap.h
|
||||||
|
@ -3005,6 +3005,7 @@ qemuDomainChangeNet(virQEMUDriverPtr driver,
|
|||||||
bool needReplaceDevDef = false;
|
bool needReplaceDevDef = false;
|
||||||
bool needBandwidthSet = false;
|
bool needBandwidthSet = false;
|
||||||
bool needCoalesceChange = false;
|
bool needCoalesceChange = false;
|
||||||
|
bool needVlanUpdate = false;
|
||||||
int ret = -1;
|
int ret = -1;
|
||||||
int changeidx = -1;
|
int changeidx = -1;
|
||||||
|
|
||||||
@ -3286,12 +3287,15 @@ qemuDomainChangeNet(virQEMUDriverPtr driver,
|
|||||||
virDomainNetGetActualDirectDev(newdev)) ||
|
virDomainNetGetActualDirectDev(newdev)) ||
|
||||||
virDomainNetGetActualDirectMode(olddev) != virDomainNetGetActualDirectMode(newdev) ||
|
virDomainNetGetActualDirectMode(olddev) != virDomainNetGetActualDirectMode(newdev) ||
|
||||||
!virNetDevVPortProfileEqual(virDomainNetGetActualVirtPortProfile(olddev),
|
!virNetDevVPortProfileEqual(virDomainNetGetActualVirtPortProfile(olddev),
|
||||||
virDomainNetGetActualVirtPortProfile(newdev)) ||
|
virDomainNetGetActualVirtPortProfile(newdev))) {
|
||||||
!virNetDevVlanEqual(virDomainNetGetActualVlan(olddev),
|
|
||||||
virDomainNetGetActualVlan(newdev))) {
|
|
||||||
needReconnect = true;
|
needReconnect = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!virNetDevVlanEqual(virDomainNetGetActualVlan(olddev),
|
||||||
|
virDomainNetGetActualVlan(newdev))) {
|
||||||
|
needVlanUpdate = true;
|
||||||
|
}
|
||||||
|
|
||||||
if (olddev->linkstate != newdev->linkstate)
|
if (olddev->linkstate != newdev->linkstate)
|
||||||
needLinkStateChange = true;
|
needLinkStateChange = true;
|
||||||
|
|
||||||
@ -3351,6 +3355,12 @@ qemuDomainChangeNet(virQEMUDriverPtr driver,
|
|||||||
goto cleanup;
|
goto cleanup;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (needVlanUpdate) {
|
||||||
|
if (virNetDevOpenvswitchUpdateVlan(newdev->ifname, &newdev->vlan) < 0)
|
||||||
|
goto cleanup;
|
||||||
|
needReplaceDevDef = true;
|
||||||
|
}
|
||||||
|
|
||||||
if (needReplaceDevDef) {
|
if (needReplaceDevDef) {
|
||||||
/* the changes above warrant replacing olddev with newdev in
|
/* the changes above warrant replacing olddev with newdev in
|
||||||
* the domain's nets list.
|
* the domain's nets list.
|
||||||
|
@ -460,3 +460,41 @@ virNetDevOpenvswitchGetVhostuserIfname(const char *path,
|
|||||||
VIR_FREE(ovs_timeout);
|
VIR_FREE(ovs_timeout);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* virNetDevOpenvswitchUpdateVlan:
|
||||||
|
* @ifname: the network interface name
|
||||||
|
* @virtVlan: VLAN configuration to be applied
|
||||||
|
*
|
||||||
|
* Update VLAN configuration of an OVS port.
|
||||||
|
*
|
||||||
|
* Returns 0 in case of success or -1 in case of failure.
|
||||||
|
*/
|
||||||
|
int virNetDevOpenvswitchUpdateVlan(const char *ifname,
|
||||||
|
virNetDevVlanPtr virtVlan)
|
||||||
|
{
|
||||||
|
int ret = -1;
|
||||||
|
virCommandPtr cmd = NULL;
|
||||||
|
|
||||||
|
cmd = virCommandNew(OVSVSCTL);
|
||||||
|
virNetDevOpenvswitchAddTimeout(cmd);
|
||||||
|
virCommandAddArgList(cmd,
|
||||||
|
"--", "--if-exists", "clear", "Port", ifname, "tag",
|
||||||
|
"--", "--if-exists", "clear", "Port", ifname, "trunk",
|
||||||
|
"--", "--if-exists", "clear", "Port", ifname, "vlan_mode",
|
||||||
|
"--", "--if-exists", "set", "Port", ifname, NULL);
|
||||||
|
|
||||||
|
if (virNetDevOpenvswitchConstructVlans(cmd, virtVlan) < 0)
|
||||||
|
goto cleanup;
|
||||||
|
|
||||||
|
if (virCommandRun(cmd, NULL) < 0) {
|
||||||
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
||||||
|
_("Unable to set vlan configuration on port %s"), ifname);
|
||||||
|
goto cleanup;
|
||||||
|
}
|
||||||
|
|
||||||
|
ret = 0;
|
||||||
|
cleanup:
|
||||||
|
virCommandFree(cmd);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
@ -61,4 +61,8 @@ int virNetDevOpenvswitchGetVhostuserIfname(const char *path,
|
|||||||
char **ifname)
|
char **ifname)
|
||||||
ATTRIBUTE_NONNULL(2) ATTRIBUTE_RETURN_CHECK ATTRIBUTE_NOINLINE;
|
ATTRIBUTE_NONNULL(2) ATTRIBUTE_RETURN_CHECK ATTRIBUTE_NOINLINE;
|
||||||
|
|
||||||
|
int virNetDevOpenvswitchUpdateVlan(const char *ifname,
|
||||||
|
virNetDevVlanPtr virtVlan)
|
||||||
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_RETURN_CHECK;
|
||||||
|
|
||||||
#endif /* __VIR_NETDEV_OPENVSWITCH_H__ */
|
#endif /* __VIR_NETDEV_OPENVSWITCH_H__ */
|
||||||
|
Loading…
Reference in New Issue
Block a user