Hello community, here is the log from the commit of package libvirt for openSUSE:Factory checked in at 2015-12-09 19:51:12 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libvirt (Old) and /work/SRC/openSUSE:Factory/.libvirt.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libvirt" Changes: -------- --- /work/SRC/openSUSE:Factory/libvirt/libvirt.changes 2015-11-22 11:00:31.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.libvirt.new/libvirt.changes 2015-12-09 22:23:53.000000000 +0100 @@ -1,0 +2,5 @@ +Thu Dec 3 10:16:34 UTC 2015 - [email protected] + +- Run udevadm settle after removing NICs in lxc driver. + bsc#829033. lxc-wait-after-eth-del.patch +------------------------------------------------------------------- New: ---- lxc-wait-after-eth-del.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libvirt.spec ++++++ --- /var/tmp/diff_new_pack.guxBma/_old 2015-12-09 22:23:56.000000000 +0100 +++ /var/tmp/diff_new_pack.guxBma/_new 2015-12-09 22:23:56.000000000 +0100 @@ -475,6 +475,7 @@ Patch208: apparmor-no-mount.patch Patch209: qemu-apparmor-screenshot.patch Patch210: libvirt-suse-netcontrol.patch +Patch211: lxc-wait-after-eth-del.patch # SocketUser and SocketGroup settings were added to systemd.socket in # version 214. Patch the setting away in earlier systemd %if 0%{systemd_version} < 214 @@ -989,6 +990,7 @@ %patch208 -p1 %patch209 -p1 %patch210 -p1 +%patch211 -p1 %if 0%{systemd_version} < 214 %patch300 -p1 %endif ++++++ lxc-wait-after-eth-del.patch ++++++ >From 3bff82b57564ffc1fe4fff23f9d121fcf410dd5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Bosdonnat?= <[email protected]> Date: Wed, 25 Nov 2015 11:43:56 +0100 Subject: [PATCH] Wait for udev events to be handled after removing veth As per http://www.redhat.com/archives/libvir-list/2013-July/msg01279.html, wait for udev events to be handled after removing a virtual NIC. Any udev rule associated to NIC destroy could happen to run with a new device with the same name that is being created. --- src/lxc/lxc_controller.c | 1 + src/lxc/lxc_driver.c | 2 ++ src/lxc/lxc_process.c | 1 + 3 files changed, 4 insertions(+) diff --git a/src/lxc/lxc_controller.c b/src/lxc/lxc_controller.c index 3e5d2b4..02ef04f 100644 --- a/src/lxc/lxc_controller.c +++ b/src/lxc/lxc_controller.c @@ -2002,6 +2002,7 @@ static int virLXCControllerDeleteInterfaces(virLXCControllerPtr ctrl) if (virNetDevVethDelete(ctrl->veths[i]) < 0) ret = -1; } + virFileWaitForDevices(); return ret; } diff --git a/src/lxc/lxc_driver.c b/src/lxc/lxc_driver.c index 1a9550e..4c7c28f 100644 --- a/src/lxc/lxc_driver.c +++ b/src/lxc/lxc_driver.c @@ -4254,6 +4254,7 @@ lxcDomainAttachDeviceNetLive(virConnectPtr conn, case VIR_DOMAIN_NET_TYPE_BRIDGE: case VIR_DOMAIN_NET_TYPE_NETWORK: ignore_value(virNetDevVethDelete(veth)); + virFileWaitForDevices(); break; case VIR_DOMAIN_NET_TYPE_DIRECT: @@ -4681,6 +4682,7 @@ lxcDomainDetachDeviceNetLive(virDomainObjPtr vm, virDomainAuditNet(vm, detach, NULL, "detach", false); goto cleanup; } + virFileWaitForDevices(); break; /* It'd be nice to support this, but with macvlan diff --git a/src/lxc/lxc_process.c b/src/lxc/lxc_process.c index 57e3880..8967de8 100644 --- a/src/lxc/lxc_process.c +++ b/src/lxc/lxc_process.c @@ -221,6 +221,7 @@ static void virLXCProcessCleanup(virLXCDriverPtr driver, } networkReleaseActualDevice(vm->def, iface); } + virFileWaitForDevices(); virDomainConfVMNWFilterTeardown(vm); -- 2.1.4
