From f239aed5e674965691846e8ce3f187dd47523689 Mon Sep 17 00:00:00 2001 From: Luca Boccassi Date: Wed, 16 Aug 2017 18:42:05 +0100 Subject: New upstream version 17.08 Change-Id: I288b50990f52646089d6b1f3aaa6ba2f091a51d7 Signed-off-by: Luca Boccassi --- examples/ip_fragmentation/Makefile | 2 +- examples/ip_fragmentation/main.c | 11 +++++++++-- 2 files changed, 10 insertions(+), 3 deletions(-) (limited to 'examples/ip_fragmentation') diff --git a/examples/ip_fragmentation/Makefile b/examples/ip_fragmentation/Makefile index c321e6a1..4bc01abb 100644 --- a/examples/ip_fragmentation/Makefile +++ b/examples/ip_fragmentation/Makefile @@ -34,7 +34,7 @@ ifeq ($(RTE_SDK),) $(error "Please define RTE_SDK environment variable") endif -# Default target, can be overriden by command line or environment +# Default target, can be overridden by command line or environment RTE_TARGET ?= x86_64-native-linuxapp-gcc include $(RTE_SDK)/mk/rte.vars.mk diff --git a/examples/ip_fragmentation/main.c b/examples/ip_fragmentation/main.c index 71c1d12f..8c0e1791 100644 --- a/examples/ip_fragmentation/main.c +++ b/examples/ip_fragmentation/main.c @@ -50,7 +50,6 @@ #include #include #include -#include #include #include #include @@ -960,6 +959,14 @@ main(int argc, char **argv) ret, portid); } + ret = rte_eth_dev_adjust_nb_rx_tx_desc(portid, &nb_rxd, + &nb_txd); + if (ret < 0) { + printf("\n"); + rte_exit(EXIT_FAILURE, "Cannot adjust number of " + "descriptors: err=%d, port=%d\n", ret, portid); + } + /* init one RX queue */ ret = rte_eth_rx_queue_setup(portid, 0, nb_rxd, socket, NULL, @@ -1020,7 +1027,7 @@ main(int argc, char **argv) if (check_ptype(portid) == 0) { rte_eth_add_rx_callback(portid, 0, cb_parse_ptype, NULL); - printf("Add Rx callback funciton to detect L3 packet type by SW :" + printf("Add Rx callback function to detect L3 packet type by SW :" " port = %d\n", portid); } } -- cgit 1.2.3-korg