Re: [ovs-dev] [PATCH] stopwatch: Free stopwatch packets after processing

2019-05-08 Thread Ben Pfaff
On Wed, May 08, 2019 at 04:26:01PM +0200, Eelco Chaudron wrote: > > On 8 May 2019, at 14:56, Dumitru Ceara wrote: > > > The free(pkt) call was missing inside the stopwatch_thread processing > > loop. > > > > Signed-off-by: Dumitru Ceara > > --- > > lib/stopwatch.c | 1 + > > 1 file changed, 1

Re: [ovs-dev] [PATCH] stopwatch: Free stopwatch packets after processing

2019-05-08 Thread Eelco Chaudron
On 8 May 2019, at 14:56, Dumitru Ceara wrote: > The free(pkt) call was missing inside the stopwatch_thread processing > loop. > > Signed-off-by: Dumitru Ceara > --- > lib/stopwatch.c | 1 + > 1 file changed, 1 insertion(+) > Change looks good to me… Acked-by: Eelco Chaudron

[ovs-dev] [PATCH] stopwatch: Free stopwatch packets after processing

2019-05-08 Thread Dumitru Ceara
The free(pkt) call was missing inside the stopwatch_thread processing loop. Signed-off-by: Dumitru Ceara --- lib/stopwatch.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/stopwatch.c b/lib/stopwatch.c index 54a85ed..f560216 100644 --- a/lib/stopwatch.c +++ b/lib/stopwatch.c @@ -450,6