Commit ea0504f5 authored by Pavel Belous's avatar Pavel Belous Committed by David S. Miller

net:ethernet:aquantia: Fix packet type detection (TCP/UDP) for IPv6.

In order for the checksum offloads to work correctly we need to set the
packet type bit (TCP/UDP) in the TX context buffer.

Fixes: 97bde5c4 ("net: ethernet: aquantia: Support for NIC-specific code")
Signed-off-by: default avatarPavel Belous <pavel.belous@aquantia.com>
Tested-by: default avatarDavid Arcari <darcari@redhat.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 1adbddef
...@@ -510,10 +510,22 @@ static unsigned int aq_nic_map_skb(struct aq_nic_s *self, ...@@ -510,10 +510,22 @@ static unsigned int aq_nic_map_skb(struct aq_nic_s *self,
if (skb->ip_summed == CHECKSUM_PARTIAL) { if (skb->ip_summed == CHECKSUM_PARTIAL) {
dx_buff->is_ip_cso = (htons(ETH_P_IP) == skb->protocol) ? dx_buff->is_ip_cso = (htons(ETH_P_IP) == skb->protocol) ?
1U : 0U; 1U : 0U;
dx_buff->is_tcp_cso =
(ip_hdr(skb)->protocol == IPPROTO_TCP) ? 1U : 0U; if (ip_hdr(skb)->version == 4) {
dx_buff->is_udp_cso = dx_buff->is_tcp_cso =
(ip_hdr(skb)->protocol == IPPROTO_UDP) ? 1U : 0U; (ip_hdr(skb)->protocol == IPPROTO_TCP) ?
1U : 0U;
dx_buff->is_udp_cso =
(ip_hdr(skb)->protocol == IPPROTO_UDP) ?
1U : 0U;
} else if (ip_hdr(skb)->version == 6) {
dx_buff->is_tcp_cso =
(ipv6_hdr(skb)->nexthdr == NEXTHDR_TCP) ?
1U : 0U;
dx_buff->is_udp_cso =
(ipv6_hdr(skb)->nexthdr == NEXTHDR_UDP) ?
1U : 0U;
}
} }
for (; nr_frags--; ++frag_count) { for (; nr_frags--; ++frag_count) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment