Re: [ovs-dev] [PATCH] ofproto: Fix is_flow_deletion_pending() false positive.

2014-05-01 Thread Ben Pfaff
On Wed, Apr 30, 2014 at 05:29:01PM -0700, Ethan Jackson wrote: > If one tries to install a rule that's identical to another rule in > another OpenFlow table which is being deleted, it's possible that > is_flow_deletion_pending() might confuse them and block the > installation. This is such an edge

[ovs-dev] [PATCH] ofproto: Fix is_flow_deletion_pending() false positive.

2014-04-30 Thread Ethan Jackson
If one tries to install a rule that's identical to another rule in another OpenFlow table which is being deleted, it's possible that is_flow_deletion_pending() might confuse them and block the installation. This is such an edge case I doubt it has ever actually happened. Found by inspection. Sig