New upstream version 17.08
[deb_dpdk.git] / examples / ip_fragmentation / main.c
index 71c1d12..8c0e179 100644 (file)
@@ -50,7 +50,6 @@
 #include <rte_memcpy.h>
 #include <rte_memzone.h>
 #include <rte_eal.h>
-#include <rte_per_lcore.h>
 #include <rte_launch.h>
 #include <rte_atomic.h>
 #include <rte_cycles.h>
@@ -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);
                }
        }