X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=examples%2Fdistributor%2Fmain.c;h=ae3e7b32d6fdaebbab769a445bec917bb7f101dc;hb=824cb29c0e7b8a2b3ed285546c3a39a8e0b3cd44;hp=78fe3e9042def08d1bc862fbdf835a4a27c850e4;hpb=11f51a26d3e3a3cf78efa4c0a20d6aa5b29117c2;p=dpdk.git diff --git a/examples/distributor/main.c b/examples/distributor/main.c index 78fe3e9042..ae3e7b32d6 100644 --- a/examples/distributor/main.c +++ b/examples/distributor/main.c @@ -47,7 +47,6 @@ #define RX_RING_SIZE 256 #define TX_RING_SIZE 512 #define NUM_MBUFS ((64*1024)-1) -#define MBUF_DATA_SIZE (2048 + RTE_PKTMBUF_HEADROOM) #define MBUF_CACHE_SIZE 250 #define BURST_SIZE 32 #define RTE_RING_SZ 1024 @@ -529,8 +528,8 @@ main(int argc, char *argv[]) "when using a single port\n"); mbuf_pool = rte_pktmbuf_pool_create("MBUF_POOL", - NUM_MBUFS * nb_ports, MBUF_CACHE_SIZE, 0, MBUF_DATA_SIZE, - rte_socket_id()); + NUM_MBUFS * nb_ports, 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"); nb_ports_available = nb_ports;