From: Steffen Klassert <steffen.klassert@secunet.com>
To: Ansis Atteka <ansisatteka@gmail.com>
Cc: Ansis Atteka <aatteka@ovn.org>, <netdev@vger.kernel.org>
Subject: Re: [PATCH net] xfrm: calculate L4 checksums also for GSO case before encrypting packets
Date: Thu, 20 Apr 2017 11:47:43 +0200 [thread overview]
Message-ID: <20170420094743.GI2649@secunet.com> (raw)
In-Reply-To: <CAMQa7Bimd378QJgsv6yBP0ULH+__C9gjjcXa39wx1z7p_9mT=g@mail.gmail.com>
On Tue, Apr 18, 2017 at 07:10:03PM -0700, Ansis Atteka wrote:
>
> However, after taking pointers from your patch I came up with this one
> that may solve this problem once and for all (note, that I was seeing
> this bug only with ixgbe NIC that supports tx csum offloads). I hope
> it does not break any other IPsec tests that you have.
>
> diff --git a/net/ipv4/udp_offload.c b/net/ipv4/udp_offload.c
> index b2be1d9..7812501 100644
> --- a/net/ipv4/udp_offload.c
> +++ b/net/ipv4/udp_offload.c
> @@ -29,6 +29,7 @@ static struct sk_buff
> *__skb_udp_tunnel_segment(struct sk_buff *skb,
> u16 mac_len = skb->mac_len;
> int udp_offset, outer_hlen;
> __wsum partial;
> + bool need_ipsec;
>
> if (unlikely(!pskb_may_pull(skb, tnl_hlen)))
> goto out;
> @@ -62,8 +63,10 @@ static struct sk_buff
> *__skb_udp_tunnel_segment(struct sk_buff *skb,
>
> ufo = !!(skb_shinfo(skb)->gso_type & SKB_GSO_UDP);
>
> + need_ipsec = skb_dst(skb) && dst_xfrm(skb_dst(skb));
> /* Try to offload checksum if possible */
> offload_csum = !!(need_csum &&
> + !need_ipsec &&
> (skb->dev->features &
> (is_ipv6 ? (NETIF_F_HW_CSUM | NETIF_F_IPV6_CSUM) :
> (NETIF_F_HW_CSUM | NETIF_F_IP_CSUM))));
This looks good, but we should fix udp4_ufo_fragment() too.
Thanks!
next prev parent reply other threads:[~2017-04-20 9:47 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-04-10 18:42 [PATCH net] xfrm: calculate L4 checksums also for GSO case before encrypting packets Ansis Atteka
2017-04-11 7:07 ` Steffen Klassert
[not found] ` <CAMQa7Biajree5Kc1fOWQN42R1UDDGp7ZevZZRtUMZOKDWTk-Vw@mail.gmail.com>
2017-04-14 2:54 ` Ansis Atteka
2017-04-18 9:09 ` Steffen Klassert
2017-04-19 2:10 ` Ansis Atteka
2017-04-20 9:47 ` Steffen Klassert [this message]
2017-04-21 21:45 ` Ansis Atteka
2017-04-27 9:04 ` Steffen Klassert
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170420094743.GI2649@secunet.com \
--to=steffen.klassert@secunet.com \
--cc=aatteka@ovn.org \
--cc=ansisatteka@gmail.com \
--cc=netdev@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).