app/testpmd: fix TSO when using outer checksum offloads
The l4_len has also to be copied in mbuf in case we are offloading outer IP checksum. Currently, TSO + outer checksum is not supported by any driver but it will soon be supported by i40e. Reported-by: Jijiang Liu <jijiang.liu@intel.com> Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
This commit is contained in:
parent
c86e19755a
commit
08f661aca1
@ -593,6 +593,7 @@ pkt_burst_checksum_forward(struct fwd_stream *fs)
|
||||
m->outer_l3_len = info.outer_l3_len;
|
||||
m->l2_len = info.l2_len;
|
||||
m->l3_len = info.l3_len;
|
||||
m->l4_len = info.l4_len;
|
||||
}
|
||||
else {
|
||||
/* if there is a outer UDP cksum
|
||||
|
Loading…
x
Reference in New Issue
Block a user