Re: [ovs-dev] [PATCH] revalidator: Simplify push_dump_ops__().

2014-07-02 Thread Joe Stringer
Thanks, I pushed this to master. On 3 July 2014 08:42, Ben Pfaff wrote: > On Tue, Jul 01, 2014 at 01:54:18PM +1200, Joe Stringer wrote: > > Commit acaa8dac49 (revalidator: Eliminate duplicate flow handling.) > > ensured that a ukey will always exist for a given flow, even if it is > > about to

Re: [ovs-dev] [PATCH] revalidator: Simplify push_dump_ops__().

2014-07-02 Thread Ben Pfaff
On Tue, Jul 01, 2014 at 01:54:18PM +1200, Joe Stringer wrote: > Commit acaa8dac49 (revalidator: Eliminate duplicate flow handling.) > ensured that a ukey will always exist for a given flow, even if it is > about to be deleted. This means that push_dump_ops__() no longer needs > to handle the case w

[ovs-dev] [PATCH] revalidator: Simplify push_dump_ops__().

2014-06-30 Thread Joe Stringer
Commit acaa8dac49 (revalidator: Eliminate duplicate flow handling.) ensured that a ukey will always exist for a given flow, even if it is about to be deleted. This means that push_dump_ops__() no longer needs to handle the case where there is no ukey. This commit removes the redundant code. Signed