diff options
author | Heiner Kallweit <hkallweit1@gmail.com> | 2020-02-18 21:08:21 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-02-19 20:20:59 +0100 |
commit | 8518b3bcd4c17f91fcf2a8afbfc01f1edda38fd4 (patch) | |
tree | 5609bbdbd4e486d22fc4bb2fc58717bd6ea63721 /drivers/net/ethernet/qualcomm | |
parent | ionic: use new helper tcp_v6_gso_csum_prep (diff) | |
download | linux-8518b3bcd4c17f91fcf2a8afbfc01f1edda38fd4.tar.xz linux-8518b3bcd4c17f91fcf2a8afbfc01f1edda38fd4.zip |
net: qcom/emac: use new helper tcp_v6_gso_csum_prep
Use new helper tcp_v6_gso_csum_prep in additional network drivers.
Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/qualcomm')
-rw-r--r-- | drivers/net/ethernet/qualcomm/emac/emac-mac.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/net/ethernet/qualcomm/emac/emac-mac.c b/drivers/net/ethernet/qualcomm/emac/emac-mac.c index bebe38d74d66..251d4ac4af02 100644 --- a/drivers/net/ethernet/qualcomm/emac/emac-mac.c +++ b/drivers/net/ethernet/qualcomm/emac/emac-mac.c @@ -1288,11 +1288,8 @@ static int emac_tso_csum(struct emac_adapter *adpt, memset(tpd, 0, sizeof(*tpd)); memset(&extra_tpd, 0, sizeof(extra_tpd)); - ipv6_hdr(skb)->payload_len = 0; - tcp_hdr(skb)->check = - ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr, - &ipv6_hdr(skb)->daddr, - 0, IPPROTO_TCP, 0); + tcp_v6_gso_csum_prep(skb); + TPD_PKT_LEN_SET(&extra_tpd, skb->len); TPD_LSO_SET(&extra_tpd, 1); TPD_LSOV_SET(&extra_tpd, 1); |