examples/tep_term: remove redundant info get
authorXiaoyun Li <xiaoyun.li@intel.com>
Mon, 17 Feb 2020 01:41:15 +0000 (09:41 +0800)
committerDavid Marchand <david.marchand@redhat.com>
Fri, 21 Feb 2020 10:14:35 +0000 (11:14 +0100)
Removed redundant function call of 'rte_eth_dev_info_get()' since it has
already been called earlier.

Coverity issue: 349922
Fixes: 2bb43bd4350a ("examples/tep_term: add TSO offload configuration")
Cc: stable@dpdk.org
Signed-off-by: Xiaoyun Li <xiaoyun.li@intel.com>
Reviewed-by: Xiaolong Ye <xiaolong.ye@intel.com>
Acked-by: David Marchand <david.marchand@redhat.com>
examples/tep_termination/vxlan_setup.c

index eca119a..4b44ccc 100644 (file)
@@ -194,8 +194,6 @@ vxlan_port_init(uint16_t port, struct rte_mempool *mbuf_pool)
                        ports_eth_addr[port].addr_bytes[5]);
 
        if (tso_segsz != 0) {
-               struct rte_eth_dev_info dev_info;
-               rte_eth_dev_info_get(port, &dev_info);
                if ((dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_TSO) == 0)
                        RTE_LOG(WARNING, PORT,
                                "hardware TSO offload is not supported\n");