]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commit
Remove and recreate interface if already exists
authorAaron Rosen <aaronorosen@gmail.com>
Mon, 13 Jan 2014 21:57:04 +0000 (13:57 -0800)
committerThomas Goirand <thomas@goirand.fr>
Thu, 13 Mar 2014 07:20:12 +0000 (15:20 +0800)
commiteca6883587d42a81e71f3ddef5a719d1bb653535
treea79e44a64dc954c3cbabb424770d912422a1a930
parent9e1b74fa0bfbd5e2d3b2123c66c54e6222fac566
Remove and recreate interface if already exists

If the dhcp-agent machine restarts when openvswitch comes up it logs the
following warning messages for all tap interfaces that do not exist:

bridge|WARN|could not open network device tap2cf7dbad-9d (No such device)

Once the dhcp-agent starts it recreates the interfaces and re-adds them to the
ovs-bridge. Unfortunately, ovs does not reinitialize the interfaces as they
are already in ovsdb and does not assign them a ofport number.

This situation corrects itself though the next time a port is added to the
ovs-bridge which is why no one has probably noticed this issue till now.

In order to correct this we should first remove interface that exist and
then readd them.

Closes-bug: #1268762

Change-Id: I4bb0019135ab7fa7cdfa6d5db3bff6eafe22fc85
neutron/agent/linux/interface.py
neutron/tests/unit/test_linux_interface.py