X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=examples%2Fl3fwd%2Fmain.c;h=78710386ab0a01c1aca2d9ab2220d3e8d4a2a830;hb=ea0c20ea95fd5d71a10757e6598ac66233ea1495;hp=6f7d7d4017a18075eaea98ae937fce39c7b74849;hpb=da826b7135a411c05ae574565a65bca26b48f8ac;p=dpdk.git diff --git a/examples/l3fwd/main.c b/examples/l3fwd/main.c index 6f7d7d4017..78710386ab 100644 --- a/examples/l3fwd/main.c +++ b/examples/l3fwd/main.c @@ -43,13 +43,12 @@ #include #include -#include +#include #include #include #include #include #include -#include #include #include #include @@ -120,7 +119,7 @@ #define MEMPOOL_CACHE_SIZE 256 -#define MBUF_SIZE (2048 + sizeof(struct rte_mbuf) + RTE_PKTMBUF_HEADROOM) +#define MBUF_DATA_SIZE (2048 + RTE_PKTMBUF_HEADROOM) /* * This expression is used to calculate the number of mbufs needed depending on user input, taking @@ -2316,11 +2315,9 @@ init_mem(unsigned nb_mbuf) if (pktmbuf_pool[socketid] == NULL) { snprintf(s, sizeof(s), "mbuf_pool_%d", socketid); pktmbuf_pool[socketid] = - rte_mempool_create(s, nb_mbuf, MBUF_SIZE, MEMPOOL_CACHE_SIZE, - sizeof(struct rte_pktmbuf_pool_private), - rte_pktmbuf_pool_init, NULL, - rte_pktmbuf_init, NULL, - socketid, 0); + rte_pktmbuf_pool_create(s, nb_mbuf, + MEMPOOL_CACHE_SIZE, 0, MBUF_DATA_SIZE, + socketid); if (pktmbuf_pool[socketid] == NULL) rte_exit(EXIT_FAILURE, "Cannot init mbuf pool on socket %d\n", socketid);