Re: [ovs-dev] [PATCH] ovn-controller: race between binding-run and patch-run for localnet ports

2016-03-07 Thread Russell Bryant
On Fri, Mar 4, 2016 at 8:40 PM, Ramu Ramamurthy wrote: > when ctx->ovnsb_idl_txn is null, binding_run exits early > and does not add any local_datapaths, but patch_run > doesnt check this, and ends up deleting localnet ports, > because there are no local datapaths for

[ovs-dev] [PATCH] ovn-controller: race between binding-run and patch-run for localnet ports

2016-03-04 Thread Ramu Ramamurthy
when ctx->ovnsb_idl_txn is null, binding_run exits early and does not add any local_datapaths, but patch_run doesnt check this, and ends up deleting localnet ports, because there are no local datapaths for them, They get readded in a subsequent run causing unnecessary deletion and readdition.