OVS stuck with del-br br-int patch-tun
I'm currently setting up a testlab with Ubuntu 14.04 and the RC1 of Icehouse. I have 3 nodes (controller, compute, network) and the controller and compute node run fine so far. On the network node I run into a problem with OVS. As soon as the machine comes up it goes to 100% CPU and syslog keeps repeating:
Apr 8 13:02:13 network ovs-vsctl: ovs|00001|vsctl|INFO|Called as /usr/bin/ovs-vsctl --timeout=10 -- --if-exists del-port br-int patch-tun
Apr 8 13:02:14 network ovs-vsctl: ovs|00001|vsctl|INFO|Called as /usr/bin/ovs-vsctl --timeout=10 -- --if-exists del-port br-int patch-tun
Apr 8 13:02:14 network ovs-vsctl: ovs|00001|vsctl|INFO|Called as /usr/bin/ovs-vsctl --timeout=10 -- --if-exists del-port br-int patch-tun
Some info on the setup: ovs_neutron_plugin.ini
[DATABASE]
sql_connection = mysql://XXX:XXX@172.16.0.200/neutron
[OVS]
tenant_network_type = gre
integration_bridge = br-int
tunnel_id_ranges = 1:1000
tunnel_bridge = br-tun
local_ip = 172.16.0.202
enable_tunneling = True
OVS Version and info
vagrant@network:~$ ovs-vsctl --version
ovs-vsctl (Open vSwitch) 2.0.1
Compiled Feb 23 2014 14:42:32
vagrant@network:~$ lsmod | grep openvswitch
openvswitch 66901 0
vxlan 37490 1 openvswitch
gre 13997 1 openvswitch
libcrc32c 12644 1 openvswitch
vagrant@network:~$ dpkg -l openvswitch\*
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Architecture Description
+++-======================================-========================-========================-=================================================================================
ii openvswitch-common 2.0.1+git20140120-0ubunt amd64 Open vSwitch common components
un openvswitch-datapath-module <none> <none> (no description available)
ii openvswitch-datapath-source 2.0.1+git20140120-0ubunt all Open vSwitch datapath module source - module-assistant version
ii openvswitch-switch 2.0.1+git20140120-0ubunt amd64 Open vSwitch switch implementations
The whole thing seems related to https://ask.openstack.org/en/question/1427/ovs-plugin-error-failed-to-create-ovs-patch-port/ but I think it is different enough to be a new question because it's 14.04 and OVS 2.0.1
It would be great if someone could point to a solution.