> -----Original Message----- > From: Zhichao Zeng <zhichaox.z...@intel.com> > Sent: Friday, November 18, 2022 3:03 PM > To: dev@dpdk.org > Cc: Zhang, Qi Z <qi.z.zh...@intel.com>; Zhou, YidingX > <yidingx.z...@intel.com>; Zeng, ZhichaoX <zhichaox.z...@intel.com>; Wu, > Jingjing <jingjing...@intel.com>; Xing, Beilei <beilei.x...@intel.com>; Peng > Zhang <peng1x.zh...@intel.com> > Subject: [PATCH] net/iavf: fix outer udp checksum offload > > Currently, when dealing with UDP tunnel pkts checksum offloading, the > outer-udp checksum will be offloaded by default. So the 'csum set outer-udp > hw/sw' command does not work. > > This patch enables the 'csum set outer-udp hw/sw' command by adding > judgment on the outer-udp chekcusm offload flag. > > Fixes: f7c8c36fdeb7 ("net/iavf: enable inner and outer Tx checksum offload") > > Signed-off-by: Zhichao Zeng <zhichaox.z...@intel.com>
Tested and passed. Verified applying only outer IP checksum without outer UDP checksum. Outer UDP checksum will be errors as this feature is to ignore this checksum error. Inner checksum is not influenced. Outer IP checksum is not influenced. Regards, Tested-by: Ke Xu <ke1...@intel.com> > --- > drivers/net/iavf/iavf_rxtx.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) >