diff mbox series

test: use the best mempool ops API to get mbuf pool

Message ID 1517816591-29030-1-git-send-email-nipun.gupta@nxp.com
State New
Headers show
Series test: use the best mempool ops API to get mbuf pool | expand

Commit Message

Nipun Gupta Feb. 5, 2018, 7:43 a.m. UTC
From: Hemant Agrawal <hemant.agrawal@nxp.com>


This patch replaces the uses of default mempool ops API
with newly supported best_mempool_ops API.

Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>

---
 test/test/test_mempool.c      | 3 ++-
 test/test/test_mempool_perf.c | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

-- 
1.9.1

Comments

Thomas Monjalon Feb. 6, 2018, 12:58 a.m. UTC | #1
05/02/2018 08:43, Nipun Gupta:
> From: Hemant Agrawal <hemant.agrawal@nxp.com>

> 

> This patch replaces the uses of default mempool ops API

> with newly supported best_mempool_ops API.

> 

> Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>


Applied, thanks
diff mbox series

Patch

diff --git a/test/test/test_mempool.c b/test/test/test_mempool.c
index f39df5a..63f921e 100644
--- a/test/test/test_mempool.c
+++ b/test/test/test_mempool.c
@@ -25,6 +25,7 @@ 
 #include <rte_mempool.h>
 #include <rte_spinlock.h>
 #include <rte_malloc.h>
+#include <rte_mbuf_pool_ops.h>
 
 #include "test.h"
 
@@ -485,7 +486,7 @@  static int test_mempool_single_consumer(void)
 	struct rte_mempool *mp_nocache = NULL;
 	struct rte_mempool *mp_stack = NULL;
 	struct rte_mempool *default_pool = NULL;
-	const char *default_pool_ops = rte_eal_mbuf_default_mempool_ops();
+	const char *default_pool_ops = rte_mbuf_best_mempool_ops();
 
 	rte_atomic32_init(&synchro);
 
diff --git a/test/test/test_mempool_perf.c b/test/test/test_mempool_perf.c
index 70de0b3..4c87783 100644
--- a/test/test/test_mempool_perf.c
+++ b/test/test/test_mempool_perf.c
@@ -25,6 +25,7 @@ 
 #include <rte_mempool.h>
 #include <rte_spinlock.h>
 #include <rte_malloc.h>
+#include <rte_mbuf_pool_ops.h>
 
 #include "test.h"
 
@@ -308,7 +309,7 @@  struct mempool_test_stats {
 	if (mp_cache == NULL)
 		goto err;
 
-	default_pool_ops = rte_eal_mbuf_default_mempool_ops();
+	default_pool_ops = rte_mbuf_best_mempool_ops();
 	/* Create a mempool based on Default handler */
 	default_pool = rte_mempool_create_empty("default_pool",
 						MEMPOOL_SIZE,