]> git.droids-corp.org - dpdk.git/commit
net/vmxnet3: remove IP checksum from capabilities
authorMaxime Leroy <maxime.leroy@6wind.com>
Tue, 13 Aug 2019 13:29:47 +0000 (15:29 +0200)
committerFerruh Yigit <ferruh.yigit@intel.com>
Wed, 4 Sep 2019 08:14:28 +0000 (10:14 +0200)
commit86536da001c03d2bcbdb38ccdcd023e6d744f5b8
tree9aa2ad512ae41e3c1a2cffe7966e15d59d2047d5
parente573264c71de3de67e8fa81b0872c10bf4650f15
net/vmxnet3: remove IP checksum from capabilities

The vmxnet3_prep_pkts function set rte_errno to ENOTSUP for any packets
having PKT_TX_IP_CHECKSUM set in ol_flags. But the vmxnet3 has
DEV_TX_OFFLOAD_IPV4_CKSUM set in this tx offload capa.

This issue has been introduced with the new Rx offload
API. DEV_TX_OFFLOAD_IPV4_CKSUM and DEV_RX_OFFLOAD_IPV4_CKSUM has been
added to the tx/rx offloads capa, but the vmxnet3 driver doesn't support
it.

To fix the issue, DEV_TX/RX_OFFLOAD_IPV4_CKSUM needs to be removed from
tx/rx offload capa.

Fixes: 95e4a96ccbf1 ("net/vmxnet3: convert to new Rx offload API")
Cc: stable@dpdk.org
Signed-off-by: Maxime Leroy <maxime.leroy@6wind.com>
Acked-by: Yong Wang <yongwang@vmware.com>
drivers/net/vmxnet3/vmxnet3_ethdev.c