Re: [ovs-dev] [PATCH] ofproto: Initialize tunnel module earlier.

2015-02-04 Thread Jarno Rajahalme
Thanks for review, merged with master. Jarno On Feb 4, 2015, at 1:47 PM, Ben Pfaff wrote: > On Wed, Feb 04, 2015 at 12:59:04PM -0800, Jarno Rajahalme wrote: >> The tunnel module can get called by the handler threads right after >> they are started, so we need to call ofproto_tunnel_init() bef

Re: [ovs-dev] [PATCH] ofproto: Initialize tunnel module earlier.

2015-02-04 Thread Ben Pfaff
On Wed, Feb 04, 2015 at 12:59:04PM -0800, Jarno Rajahalme wrote: > The tunnel module can get called by the handler threads right after > they are started, so we need to call ofproto_tunnel_init() before > opening the backer. > > Late initialization caused a spurious ovs-vswitchd handler thread > c

[ovs-dev] [PATCH] ofproto: Initialize tunnel module earlier.

2015-02-04 Thread Jarno Rajahalme
The tunnel module can get called by the handler threads right after they are started, so we need to call ofproto_tunnel_init() before opening the backer. Late initialization caused a spurious ovs-vswitchd handler thread crash on start-up due to the tunnel module fat_rwlock not being initialized ye