diff options
author | Konstantin Ananyev <konstantin.ananyev@intel.com> | 2015-04-30 00:31:51 +0100 |
---|---|---|
committer | Thomas Monjalon <thomas.monjalon@6wind.com> | 2015-05-11 15:51:14 +0200 |
commit | 824cb29c0e7b8a2b3ed285546c3a39a8e0b3cd44 (patch) | |
tree | 2bb414d2d372af4784f915b413c03e5795da49e2 /examples/l3fwd-vf | |
parent | 11f51a26d3e3a3cf78efa4c0a20d6aa5b29117c2 (diff) | |
download | dpdk-824cb29c0e7b8a2b3ed285546c3a39a8e0b3cd44.zip dpdk-824cb29c0e7b8a2b3ed285546c3a39a8e0b3cd44.tar.gz dpdk-824cb29c0e7b8a2b3ed285546c3a39a8e0b3cd44.tar.xz |
apps: fix default mbuf size
Latest mbuf changes (priv_size addition and related fixes)
exposed small problem with testpmd and few other sample apps:
when mbuf size is exaclty 2KB or less, that causes
ixgbe PMD to select scattered RX even for configs with 'normal'
max packet length (max_rx_pkt_len == ETHER_MAX_LEN).
To overcome that problem and unify the code, new macro was created
to represent recommended minimal buffer length for mbuf.
When appropriate, samples are updated to use that macro.
Fixes: dfb03bbe2b ("app/testpmd: use standard functions to initialize
mbufs and mbuf pool")
Signed-off-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
Acked-by: Olivier Matz <olivier.matz@6wind.com>
Diffstat (limited to 'examples/l3fwd-vf')
-rw-r--r-- | examples/l3fwd-vf/main.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/examples/l3fwd-vf/main.c b/examples/l3fwd-vf/main.c index f007bc1..6e56cfb 100644 --- a/examples/l3fwd-vf/main.c +++ b/examples/l3fwd-vf/main.c @@ -94,8 +94,6 @@ #define MEMPOOL_CACHE_SIZE 256 -#define MBUF_DATA_SIZE (2048 + RTE_PKTMBUF_HEADROOM) - /* * This expression is used to calculate the number of mbufs needed depending on user input, taking * into account memory for rx and tx hardware rings, cache per lcore and mtable per port per lcore. @@ -925,8 +923,8 @@ init_mem(unsigned nb_mbuf) if (pktmbuf_pool[socketid] == NULL) { snprintf(s, sizeof(s), "mbuf_pool_%d", socketid); pktmbuf_pool[socketid] = rte_pktmbuf_pool_create(s, - nb_mbuf, MEMPOOL_CACHE_SIZE, 0, MBUF_DATA_SIZE, - socketid); + nb_mbuf, MEMPOOL_CACHE_SIZE, 0, + RTE_MBUF_DEFAULT_BUF_SIZE, socketid); if (pktmbuf_pool[socketid] == NULL) rte_exit(EXIT_FAILURE, "Cannot init mbuf pool on socket %d\n", socketid); else |