Re: [ovs-dev] [PATCH] revalidator: Don't delete non-existent flow.

2014-12-17 Thread Joe Stringer
On 17 December 2014 at 07:45, Thomas Graf wrote: > On 12/16/14 at 07:04pm, Joe Stringer wrote: >> If ukey_acquire() returns ENOENT, then it is unable to locate the ukey >> corresponding to the flow and the flow has disappeared since it was >> dumped. Don't bother deleting the flow in this case, as

Re: [ovs-dev] [PATCH] revalidator: Don't delete non-existent flow.

2014-12-17 Thread Thomas Graf
On 12/16/14 at 07:04pm, Joe Stringer wrote: > If ukey_acquire() returns ENOENT, then it is unable to locate the ukey > corresponding to the flow and the flow has disappeared since it was > dumped. Don't bother deleting the flow in this case, as it will fail. > > Signed-off-by: Joe Stringer Acked

[ovs-dev] [PATCH] revalidator: Don't delete non-existent flow.

2014-12-16 Thread Joe Stringer
If ukey_acquire() returns ENOENT, then it is unable to locate the ukey corresponding to the flow and the flow has disappeared since it was dumped. Don't bother deleting the flow in this case, as it will fail. Signed-off-by: Joe Stringer --- ofproto/ofproto-dpif-upcall.c |4 +++- 1 file chang