netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Tom Herbert <tom@herbertland.com>
To: Eric Dumazet <eric.dumazet@gmail.com>
Cc: "David S. Miller" <davem@davemloft.net>,
	Linux Kernel Network Developers <netdev@vger.kernel.org>,
	Kernel Team <kernel-team@fb.com>
Subject: Re: [PATCH net-next 6/8] tcp: Fix conditions to determine checksum offload
Date: Mon, 14 Dec 2015 12:39:12 -0800	[thread overview]
Message-ID: <CALx6S34NgOUathkcaMv0y1mHPyd-0oOwqrzSatjEW51m2UFcfQ@mail.gmail.com> (raw)
In-Reply-To: <1450121944.8474.8.camel@edumazet-glaptop2.roam.corp.google.com>

On Mon, Dec 14, 2015 at 11:39 AM, Eric Dumazet <eric.dumazet@gmail.com> wrote:
> On Mon, 2015-12-14 at 11:19 -0800, Tom Herbert wrote:
>> In tcp_send_sendpage and tcp_sendmsg we check the route capabilities to
>> determine if checksum offload can be performed. This check currently
>> does not take the IP protocol into account for devices that advertise
>> only one of NETIF_F_IPV6_CSUM or NETIF_F_IP_CSUM. This patch adds a
>> function to check capabilities for checksum offload with a socket
>> called sk_check_csum_caps. This function checks for specific IPv4 or
>> IPv6 offload support based on the family of the socket.
>>
>> Signed-off-by: Tom Herbert <tom@herbertland.com>
>> ---
>>  include/net/sock.h | 9 +++++++++
>>  net/ipv4/tcp.c     | 4 ++--
>>  2 files changed, 11 insertions(+), 2 deletions(-)
>>
>> diff --git a/include/net/sock.h b/include/net/sock.h
>> index 0ca22b0..ab0269f 100644
>> --- a/include/net/sock.h
>> +++ b/include/net/sock.h
>> @@ -1791,6 +1791,15 @@ static inline void sk_nocaps_add(struct sock *sk, netdev_features_t flags)
>>       sk->sk_route_caps &= ~flags;
>>  }
>>
>> +static inline bool sk_check_csum_caps(struct sock *sk)
>> +{
>> +     return (sk->sk_route_caps & NETIF_F_HW_CSUM) ||
>> +            (sk->sk_family == PF_INET &&
>> +             (sk->sk_route_caps & NETIF_F_IP_CSUM)) ||
>> +            (sk->sk_family == PF_INET6 &&
>> +             (sk->sk_route_caps & NETIF_F_IPV6_CSUM));
>> +}
>> +
>
> Not sure this handles ipv6_mapped correctly ?
>
It would be handled correctly, but might be suboptimal since we could
be missing opportunities to offload. The original code would assume
that all IPv6 can be offloaded with just NETIF_F_IP_CSUM which
presumably is also suboptimal because we're missing opportunity to do
copy-csum. I don't know which is better to optimize for...

> Since this is going to be called quite often, we might set a single bit
> in sk_setup_caps() or elsewhere and test it here as fast as possible.
>
>
>

  reply	other threads:[~2015-12-14 20:39 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-12-14 19:19 [PATCH net-next 0/8] net: The beginning of the end for NETIF_F_IP_CSUM and NETIF_F_IPV6_CSUM Tom Herbert
2015-12-14 19:19 ` [PATCH net-next 1/8] net: Add skb_inner_transport_offset function Tom Herbert
2015-12-14 19:19 ` [PATCH net-next 2/8] sctp: Rename NETIF_F_SCTP_CSUM to NETIF_F_SCTP_CRC Tom Herbert
2015-12-14 19:19 ` [PATCH net-next 3/8] fcoe: Use CHECKSUM_PARTIAL to indicate CRC offload Tom Herbert
2015-12-14 19:19 ` [PATCH net-next 4/8] net: Rename NETIF_F_ALL_CSUM to NETIF_F_CSUM_MASK Tom Herbert
2015-12-14 19:19 ` [PATCH net-next 5/8] net: Eliminate NETIF_F_GEN_CSUM and NETIF_F_V[46]_CSUM Tom Herbert
2015-12-14 19:19 ` [PATCH net-next 6/8] tcp: Fix conditions to determine checksum offload Tom Herbert
2015-12-14 19:39   ` Eric Dumazet
2015-12-14 20:39     ` Tom Herbert [this message]
2015-12-14 19:19 ` [PATCH net-next 7/8] net: Add driver helper functions to determine checksum offloadability Tom Herbert
2015-12-14 19:19 ` [PATCH net-next 8/8] net: Elaborate on checksum offload interface description Tom Herbert
2015-12-15 21:32 ` [PATCH net-next 0/8] net: The beginning of the end for NETIF_F_IP_CSUM and NETIF_F_IPV6_CSUM David Miller
2015-12-15 22:11   ` Tom Herbert
2015-12-15 22:18     ` Tom Herbert
2015-12-16  2:07     ` David Miller

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=CALx6S34NgOUathkcaMv0y1mHPyd-0oOwqrzSatjEW51m2UFcfQ@mail.gmail.com \
    --to=tom@herbertland.com \
    --cc=davem@davemloft.net \
    --cc=eric.dumazet@gmail.com \
    --cc=kernel-team@fb.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).