]> git.droids-corp.org - dpdk.git/blobdiff - examples/l2fwd/main.c
ring: get size in memory
[dpdk.git] / examples / l2fwd / main.c
index 65017bc64c8b617b29f87cc61b999fb27ee0ab40..2d9436661346ed9bddc3ec104e3bc9eae645dfd5 100644 (file)
@@ -163,6 +163,11 @@ static const struct rte_eth_txconf tx_conf = {
        },
        .tx_free_thresh = 0, /* Use PMD default values */
        .tx_rs_thresh = 0, /* Use PMD default values */
+       /*
+       * As the example won't handle mult-segments and offload cases,
+       * set the flag by default.
+       */
+       .txq_flags = ETH_TXQ_FLAGS_NOMULTSEGS | ETH_TXQ_FLAGS_NOOFFLOADS,
 };
 
 struct rte_mempool * l2fwd_pktmbuf_pool = NULL;