[dpdk-dev] [PATCH] mempool: fix lack of free() registration

2016-07-19 Thread Olivier Matz
Hi Zoltan, I ran ./scripts/check-git-log.sh on your patch, showing some minor styling issues: On 07/19/2016 04:37 PM, Zoltan Kiss wrote: > [PATCH] mempool: fix lack of free() registration "()" should be removed > The new mempool handler interface forgets to register the free() function > of the

[dpdk-dev] [PATCH] mempool: fix lack of free() registration

2016-07-19 Thread Zoltan Kiss
On 19/07/16 16:26, Olivier Matz wrote: > Hi Zoltan, > > I ran ./scripts/check-git-log.sh on your patch, showing some minor > styling issues: Thanks, do you want me to resend it, or could Thomas fix them upon commiting? > > On 07/19/2016 04:37 PM, Zoltan Kiss wrote: >> [PATCH] mempool: fix lack

[dpdk-dev] [PATCH] mempool: fix lack of free() registration

2016-07-19 Thread Zoltan Kiss
The new mempool handler interface forgets to register the free() function of the ops. Introduced in this patch: 449c49b9 mempool: support handler operations Signed-off-by: Zoltan Kiss --- lib/librte_mempool/rte_mempool_ops.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/librte_mempool