ip_frag: remove remaining IP checkum offload flag
authorSunil Kumar Kori <skori@marvell.com>
Tue, 16 Jul 2019 06:23:28 +0000 (11:53 +0530)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 16 Jul 2019 11:23:04 +0000 (13:23 +0200)
commitd601426a2711f396201817bb077ec4f73c3faffe
treedb88c82ad43e46cdd0fb73f9a21b9ee2e432ecd2
parentb8d5e544e73e3dca81ff8a35f22e148cf0a032c3
ip_frag: remove remaining IP checkum offload flag

Currently PKT_TX_IP_CKSUM is being set into mbuf->ol_flags during
fragmentation operation implicitly by the library. Because of this,
application is forced to use checksum offload whether it is supported
by platform or not.

Also documentation does not provide any expected value of ol_flags in
returned fragmented mbufs so application will never come to know that which
offloads are enabled. So transmission may be failed for the platforms which
does not support checksum offload.

So removing mentioned flag from the library.

Mentioned change is part of http://patches.dpdk.org/patch/53475.
Changes for reassembly operation is already accepted. This patch set
implements the similar change for fragmentation operation.

Fixes: e29fc44370c2 ("ip_frag: remove IP checkum offload flag")

Signed-off-by: Sunil Kumar Kori <skori@marvell.com>
lib/librte_ip_frag/rte_ipv4_fragmentation.c