X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=app%2Ftest%2Ftest_table.c;h=1faa0a6d80a511c2e671655a63b20224736ce9dd;hb=dd0eedb1cfcf0cb7423d859177c5bc6f931eaf8a;hp=c3093cce74494697c92fe1bc7bb2e94122800beb;hpb=7822c43aba8ce07208a94124a46579fe43c0b103;p=dpdk.git diff --git a/app/test/test_table.c b/app/test/test_table.c index c3093cce74..1faa0a6d80 100644 --- a/app/test/test_table.c +++ b/app/test/test_table.c @@ -89,15 +89,10 @@ app_init_mbuf_pools(void) printf("Getting/Creating the mempool ...\n"); pool = rte_mempool_lookup("mempool"); if (!pool) { - pool = rte_mempool_create( + pool = rte_pktmbuf_pool_create( "mempool", POOL_SIZE, - POOL_BUFFER_SIZE, - POOL_CACHE_SIZE, - sizeof(struct rte_pktmbuf_pool_private), - rte_pktmbuf_pool_init, NULL, - rte_pktmbuf_init, NULL, - 0, + POOL_CACHE_SIZE, 0, POOL_BUFFER_SIZE, 0); if (pool == NULL) rte_panic("Cannot create mbuf pool\n"); @@ -197,15 +192,11 @@ test_table(void) #ifdef RTE_LIBRTE_ACL printf("\n\n\n\n************ACL tests************\n"); - if (test_table_ACL() < 0) + if (test_table_acl() < 0) return -1; #endif return 0; } -static struct test_command table_cmd = { - .command = "table_autotest", - .callback = test_table, -}; -REGISTER_TEST_COMMAND(table_cmd); +REGISTER_TEST_COMMAND(table_autotest, test_table);