Re: [ovs-dev] [PATCH] ofproto: Fix memory leak in flow deletion.

2015-05-18 Thread Jarno Rajahalme
Pushed to master, thanks for the review! I checked branch-2.3, no backports are needed. Jarno > On May 16, 2015, at 10:07 PM, Ben Pfaff wrote: > > On Fri, May 15, 2015 at 10:59:41AM -0700, Jarno Rajahalme wrote: >> Fix a memory leak that was introduced in commit 834fe5cb997b (ofproto: >> Add

Re: [ovs-dev] [PATCH] ofproto: Fix memory leak in flow deletion.

2015-05-16 Thread Ben Pfaff
On Fri, May 15, 2015 at 10:59:41AM -0700, Jarno Rajahalme wrote: > Fix a memory leak that was introduced in commit 834fe5cb997b (ofproto: > Additional simplifications.). We used to unref the flow > asynchronously, but forgot to do it when the support for asynchronous > operations was removed. > >

[ovs-dev] [PATCH] ofproto: Fix memory leak in flow deletion.

2015-05-15 Thread Jarno Rajahalme
Fix a memory leak that was introduced in commit 834fe5cb997b (ofproto: Additional simplifications.). We used to unref the flow asynchronously, but forgot to do it when the support for asynchronous operations was removed. Signed-off-by: Jarno Rajahalme --- ofproto/ofproto.c |2 ++ 1 file cha