DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] test/mempool: improve default mempool ops selection
@ 2017-11-17 18:07 Jerin Jacob
  2017-12-12 14:21 ` Olivier MATZ
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Jerin Jacob @ 2017-11-17 18:07 UTC (permalink / raw)
  To: dev; +Cc: olivier.matz, santosh.shukla, Jerin Jacob

Use of rte_eal_mbuf_default_mempool_ops() API will
allow to override pool handler through "--mbuf-pool-ops-name"
eal command line argument.

Signed-off-by: Jerin Jacob <jerin.jacob@caviumnetworks.com>
---
 test/test/test_mempool.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/test/test_mempool.c b/test/test/test_mempool.c
index 37ead503b..46eb5ce06 100644
--- a/test/test/test_mempool.c
+++ b/test/test/test_mempool.c
@@ -565,7 +565,7 @@ test_mempool(void)
 
 	/* Create a mempool based on Default handler */
 	printf("Testing %s mempool handler\n",
-	       RTE_MBUF_DEFAULT_MEMPOOL_OPS);
+	       rte_eal_mbuf_default_mempool_ops());
 	default_pool = rte_mempool_create_empty("default_pool",
 						MEMPOOL_SIZE,
 						MEMPOOL_ELT_SIZE,
@@ -577,7 +577,7 @@ test_mempool(void)
 		goto err;
 	}
 	if (rte_mempool_set_ops_byname(default_pool,
-				RTE_MBUF_DEFAULT_MEMPOOL_OPS, NULL) < 0) {
+				rte_eal_mbuf_default_mempool_ops(), NULL) < 0) {
 		printf("cannot set %s handler\n",
 			RTE_MBUF_DEFAULT_MEMPOOL_OPS);
 		goto err;
-- 
2.15.0

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2018-01-18 14:10 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-17 18:07 [dpdk-dev] [PATCH] test/mempool: improve default mempool ops selection Jerin Jacob
2017-12-12 14:21 ` Olivier MATZ
2017-12-12 15:10 ` santosh
2018-01-09 15:57 ` [dpdk-dev] [PATCH v2] " Jerin Jacob
2018-01-16 14:25   ` Olivier Matz
2018-01-18 14:09     ` Thomas Monjalon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).