[dpdk-dev] [PATCH v2] test: fix mempool perf test enq_count wraparound of 32-bit uint

2016-06-13 Thread Thomas Monjalon
> > recent CPU's can easily wrap around a 32-bit unsigned int in > > the mempool perf test. Increase to a 64-bit uint. > > > > v2: change from %lu to %"PRIu64" > > > > Signed-off-by: David Hunt > > Acked-by: Olivier Matz Applied, thanks

[dpdk-dev] [PATCH v2] test: fix mempool perf test enq_count wraparound of 32-bit uint

2016-05-30 Thread Olivier Matz
Hi David, On 05/26/2016 04:15 PM, David Hunt wrote: > recent CPU's can easily wrap around a 32-bit unsigned int in > the mempool perf test. Increase to a 64-bit uint. > > v2: change from %lu to %"PRIu64" > > Signed-off-by: David Hunt Acked-by: Olivier Matz

[dpdk-dev] [PATCH v2] test: fix mempool perf test enq_count wraparound of 32-bit uint

2016-05-26 Thread David Hunt
recent CPU's can easily wrap around a 32-bit unsigned int in the mempool perf test. Increase to a 64-bit uint. v2: change from %lu to %"PRIu64" Signed-off-by: David Hunt --- app/test/test_mempool_perf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git