]> git.droids-corp.org - dpdk.git/blobdiff - examples/skeleton/basicfwd.c
apps: fix default mbuf size
[dpdk.git] / examples / skeleton / basicfwd.c
index ae606bf45a6415a203d8c6ef227ef9a2813b09c0..c89822cb23a153b28e0eae90e69bb10afad76460 100644 (file)
@@ -43,7 +43,6 @@
 #define TX_RING_SIZE 512
 
 #define NUM_MBUFS 8191
-#define MBUF_DATA_SIZE (1600 + RTE_PKTMBUF_HEADROOM)
 #define MBUF_CACHE_SIZE 250
 #define BURST_SIZE 32
 
@@ -191,7 +190,7 @@ main(int argc, char *argv[])
 
        /* Creates a new mempool in memory to hold the mbufs. */
        mbuf_pool = rte_pktmbuf_pool_create("MBUF_POOL", NUM_MBUFS * nb_ports,
-               MBUF_CACHE_SIZE, 0, MBUF_DATA_SIZE, rte_socket_id());
+               MBUF_CACHE_SIZE, 0, RTE_MBUF_DEFAULT_BUF_SIZE, rte_socket_id());
 
        if (mbuf_pool == NULL)
                rte_exit(EXIT_FAILURE, "Cannot create mbuf pool\n");