Imported Upstream version 16.11.2
[deb_dpdk.git] / examples / kni / main.c
index a5297f2..0be57d8 100644 (file)
@@ -65,7 +65,6 @@
 #include <rte_debug.h>
 #include <rte_ether.h>
 #include <rte_ethdev.h>
-#include <rte_ring.h>
 #include <rte_log.h>
 #include <rte_mempool.h>
 #include <rte_mbuf.h>
@@ -131,7 +130,7 @@ static struct rte_eth_conf port_conf = {
                .hw_ip_checksum = 0,    /* IP checksum offload disabled */
                .hw_vlan_filter = 0,    /* VLAN filtering disabled */
                .jumbo_frame = 0,       /* Jumbo Frame Support disabled */
-               .hw_strip_crc = 0,      /* CRC stripped by hardware */
+               .hw_strip_crc = 1,      /* CRC stripped by hardware */
        },
        .txmode = {
                .mq_mode = ETH_MQ_TX_NONE,
@@ -318,8 +317,6 @@ main_loop(__rte_unused void *arg)
        };
        enum lcore_rxtx flag = LCORE_NONE;
 
-       nb_ports = (uint8_t)(nb_ports < RTE_MAX_ETHPORTS ?
-                               nb_ports : RTE_MAX_ETHPORTS);
        for (i = 0; i < nb_ports; i++) {
                if (!kni_port_params_array[i])
                        continue;
@@ -831,7 +828,8 @@ kni_free_kni(uint8_t port_id)
                return -1;
 
        for (i = 0; i < p[port_id]->nb_kni; i++) {
-               rte_kni_release(p[port_id]->kni[i]);
+               if (rte_kni_release(p[port_id]->kni[i]))
+                       printf("Fail to release kni\n");
                p[port_id]->kni[i] = NULL;
        }
        rte_eth_dev_stop(port_id);