mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-15 10:17:20 +00:00
vxlan: stop checking CSUM_ENCAP_VXLAN when converting inner CSUM flags into normal, for decapsulation.
The packet, if processed at this point, was already parsed to be UDP directed to a vxlan port. Connect-X 4+ does not provide easy method to infer which parser processed the packet, so driver cannot set the flag without a lot of efforts which are only to satisfy the formal requirements. Reviewed by: bryanv, np Sponsored by: Mellanox Technologies/NVidia Networking Differential revision: https://reviews.freebsd.org/D27449 MFC after: 1 week
This commit is contained in:
parent
2ac1c19272
commit
994e47023a
@ -2824,8 +2824,7 @@ vxlan_input(struct vxlan_socket *vso, uint32_t vni, struct mbuf **m0,
|
||||
m_clrprotoflags(m);
|
||||
m->m_pkthdr.rcvif = ifp;
|
||||
M_SETFIB(m, ifp->if_fib);
|
||||
if (m->m_pkthdr.csum_flags & CSUM_ENCAP_VXLAN &&
|
||||
((ifp->if_capenable & IFCAP_RXCSUM &&
|
||||
if (((ifp->if_capenable & IFCAP_RXCSUM &&
|
||||
m->m_pkthdr.csum_flags & CSUM_INNER_L3_CALC) ||
|
||||
(ifp->if_capenable & IFCAP_RXCSUM_IPV6 &&
|
||||
!(m->m_pkthdr.csum_flags & CSUM_INNER_L3_CALC)))) {
|
||||
|
Loading…
Reference in New Issue
Block a user