1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-04-01 20:05:19 +00:00

network: Clean up after inactive objects during start

Once networkUpdateState() identifies a dead network it should clean up
after it as well.

Resolves: https://issues.redhat.com/browse/RHEL-50968
Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
Reviewed-by: Laine Stump <laine@redhat.com>
This commit is contained in:
Martin Kletzander 2024-09-03 15:56:56 +02:00
parent 0e43cb09ee
commit 447fda8981

View File

@ -510,6 +510,12 @@ networkUpdateState(virNetworkObj *obj,
virNetworkObjSetDnsmasqPid(obj, dnsmasqPid);
}
/* Clean up after networks which were active but we have found out they are
* actually down */
if (!virNetworkObjIsActive(obj)) {
networkShutdownNetwork(driver, obj);
}
return 0;
}