app/test: fix ring size
authorJerin Jacob <jerin.jacob@caviumnetworks.com>
Mon, 18 Jul 2016 05:55:54 +0000 (11:25 +0530)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Thu, 21 Jul 2016 21:49:46 +0000 (23:49 +0200)
commit69238e3cbedbf6dfd9fd65c1ef8fe12d0d5aabf9
tree83b97607a8ec454cc3618dc9cf5b7ea798fdf354
parentecc7d10e448e91d01b821499baa755ca6a92115b
app/test: fix ring size

rte_ring_create expects the size of the ring to
be a power of 2. REFCNT_RING_SIZE value is not
power of 2 in-case if RTE_MAX_LCORE == 96.
Fix it by aligning the size to next power of 2 value.

Fixes: af75078f ("first public release")

Signed-off-by: Jerin Jacob <jerin.jacob@caviumnetworks.com>
Acked-by: Olivier Matz <olivier.matz@6wind.com>
app/test/test_mbuf.c