diff options
author | Xavier Simonart <xavier.simonart@intel.com> | 2018-10-27 16:26:26 +0200 |
---|---|---|
committer | Xavier Simonart <xavier.simonart@intel.com> | 2018-10-31 15:25:34 +0100 |
commit | 997a3664e7508f5e2b24cb0d105e411bf71e0d60 (patch) | |
tree | b699b02bcea7aea851375257b765d5ece29b522f /VNFs/DPPD-PROX/handle_ipv6_tunnel.c | |
parent | ffdcfa6b834d3ad00188ee9805370d6aefc44b4b (diff) |
Support for DPDK 18.05 and DPDK 18.08
Improve DPDK 18.05 support introduced by 3e532aca.
Support for DPDK 18.08.
Change-Id: Ide712ee94254b506a0ad88c95a7e01b789f99d48
Signed-off-by: Xavier Simonart <xavier.simonart@intel.com>
Diffstat (limited to 'VNFs/DPPD-PROX/handle_ipv6_tunnel.c')
-rw-r--r-- | VNFs/DPPD-PROX/handle_ipv6_tunnel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/VNFs/DPPD-PROX/handle_ipv6_tunnel.c b/VNFs/DPPD-PROX/handle_ipv6_tunnel.c index 13570b14..cf56069e 100644 --- a/VNFs/DPPD-PROX/handle_ipv6_tunnel.c +++ b/VNFs/DPPD-PROX/handle_ipv6_tunnel.c @@ -167,7 +167,7 @@ static void init_task_ipv6_tun_base(struct task_ipv6_tun_base* tun_base, struct struct prox_port_cfg *port = find_reachable_port(targ); if (port) { - tun_base->offload_crc = port->capabilities.tx_offload_cksum; + tun_base->offload_crc = port->requested_tx_offload & (DEV_TX_OFFLOAD_IPV4_CKSUM | DEV_TX_OFFLOAD_UDP_CKSUM); } } |