From: Hyong Youb Kim Date: Mon, 14 May 2018 14:11:26 +0000 (-0700) Subject: net/enic: fix missing offload capabilities X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=2b9919feab751aabf7a8a8d33eb211c7126b9c1b;p=dpdk.git net/enic: fix missing offload capabilities Add the following missing flags to the advertised offloads. - DEV_RX_OFFLOAD_CRC_STRIP CRC is always stripped. - DEV_RX_OFFLOAD_JUMBO_FRAME Jumbo support is always enabled on the NIC. - DEV_RX_OFFLOAD_SCATTER Scatter Rx is currently supported. - DEV_TX_OFFLOAD_MULTI_SEGS Multiple-segment transmit has always been supported. Fixes: 93fb21fdbe23 ("net/enic: enable overlay offload for VXLAN and GENEVE") Signed-off-by: Hyong Youb Kim --- diff --git a/drivers/net/enic/enic_res.c b/drivers/net/enic/enic_res.c index a504de5d55..6b404c3c0f 100644 --- a/drivers/net/enic/enic_res.c +++ b/drivers/net/enic/enic_res.c @@ -182,12 +182,16 @@ int enic_get_vnic_config(struct enic *enic) * flags if it enables overlay offloads. */ enic->tx_offload_capa = + DEV_TX_OFFLOAD_MULTI_SEGS | DEV_TX_OFFLOAD_VLAN_INSERT | DEV_TX_OFFLOAD_IPV4_CKSUM | DEV_TX_OFFLOAD_UDP_CKSUM | DEV_TX_OFFLOAD_TCP_CKSUM | DEV_TX_OFFLOAD_TCP_TSO; enic->rx_offload_capa = + DEV_RX_OFFLOAD_SCATTER | + DEV_RX_OFFLOAD_JUMBO_FRAME | + DEV_RX_OFFLOAD_CRC_STRIP | DEV_RX_OFFLOAD_VLAN_STRIP | DEV_RX_OFFLOAD_IPV4_CKSUM | DEV_RX_OFFLOAD_UDP_CKSUM |