From: pravin <pravin.shelar@gmail.com>
To: Dmitry Kravkov <dmitry@broadcom.com>
Cc: "davem@davemloft.net" <davem@davemloft.net>,
"netdev@vger.kernel.org" <netdev@vger.kernel.org>
Subject: Re: [PATCH net-next v2 1/2] ip_gre: allow CSUM capable devices to handle packets
Date: Tue, 19 Feb 2013 15:03:45 -0800 [thread overview]
Message-ID: <CANvJab0xqZhj9TDZOQKtqvDjLu4ez7MrocWY3FaBw28Nxc-Qdg@mail.gmail.com> (raw)
In-Reply-To: <504C9EFCA2D0054393414C9CB605C37F1C019A30@SJEXCHMB06.corp.ad.broadcom.com>
On Tue, Feb 19, 2013 at 11:20 AM, Dmitry Kravkov <dmitry@broadcom.com> wrote:
>
>> -----Original Message-----
>> From: pravin [mailto:pravin.shelar@gmail.com]
>> Sent: Tuesday, February 19, 2013 8:28 PM
>> To: Dmitry Kravkov
>> Cc: davem@davemloft.net; netdev@vger.kernel.org
>> Subject: Re: [PATCH net-next v2 1/2] ip_gre: allow CSUM capable devices to
>> handle packets
>>
>> On Mon, Feb 18, 2013 at 11:50 AM, Dmitry Kravkov <dmitry@broadcom.com>
>> wrote:
>> > If device is not able to handle checksumming it will
>> > be handled in dev_xmit
>> >
>> > Signed-off-by: Dmitry Kravkov <dmitry@broadcom.com>
>> > ---
>> > Changes from v1: fixed email address
>> >
>> > net/ipv4/ip_gre.c | 7 ++-----
>> > 1 files changed, 2 insertions(+), 5 deletions(-)
>> >
>> > diff --git a/net/ipv4/ip_gre.c b/net/ipv4/ip_gre.c
>> > index a56f118..cdc31ac 100644
>> > --- a/net/ipv4/ip_gre.c
>> > +++ b/net/ipv4/ip_gre.c
>> > @@ -745,12 +745,9 @@ static struct sk_buff *handle_offloads(struct sk_buff
>> *skb)
>> > goto error;
>> > skb_shinfo(skb)->gso_type |= SKB_GSO_GRE;
>> > return skb;
>> > - } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
>> > - err = skb_checksum_help(skb);
>> > - if (unlikely(err))
>> > - goto error;
>> > }
>> > - skb->ip_summed = CHECKSUM_NONE;
>> > + if (skb->ip_summed != CHECKSUM_PARTIAL)
>> > + skb->ip_summed = CHECKSUM_NONE;
>> >
>> > return skb;
>> >
>> > --
>> > 1.7.7.2
>> >
>> >
>>
>> This patch breaks GRE tunnel with GRE_CSUM. since GRE_CSUM need
>> complete IP packet to checksum entire GRE payload.
>
> Testing for o_flags&GRE_CSUM does not look too hurt here, since it will be used in ipgre_tunnel_xmit() later on
> This is the only problematic case, right?
>
It does not work for me. I have GRE device with csum on. Ping works
fine but Netperf is not working.
Looking at code, I am not sure how tcp will work if inner packet TCP
checksum is calculated after GRE_CSUM calculation.
Thanks,
Pravin.
next prev parent reply other threads:[~2013-02-19 23:03 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-02-18 19:50 [PATCH net-next v2 1/2] ip_gre: allow CSUM capable devices to handle packets Dmitry Kravkov
2013-02-18 19:50 ` [PATCH net-next v2 2/2] ip_gre: propogate target device GSO capability to the tunnel device Dmitry Kravkov
2013-02-19 5:53 ` David Miller
2013-02-19 18:39 ` pravin
2013-02-19 19:31 ` Dmitry Kravkov
2013-02-19 22:51 ` pravin
2013-02-21 22:30 ` Dmitry Kravkov
2013-02-21 23:53 ` pravin
2013-02-24 16:45 ` Dmitry Kravkov
2013-02-25 6:07 ` Pravin Shelar
2013-02-19 5:53 ` [PATCH net-next v2 1/2] ip_gre: allow CSUM capable devices to handle packets David Miller
2013-02-19 18:28 ` pravin
2013-02-19 19:20 ` Dmitry Kravkov
2013-02-19 23:03 ` pravin [this message]
2013-02-20 14:45 ` Dmitry Kravkov
2013-02-21 22:26 ` Dmitry Kravkov
2013-02-21 23:46 ` pravin
2013-02-22 7:19 ` pravin
2013-02-24 16:56 ` Dmitry Kravkov
2013-02-25 6:09 ` Pravin Shelar
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=CANvJab0xqZhj9TDZOQKtqvDjLu4ez7MrocWY3FaBw28Nxc-Qdg@mail.gmail.com \
--to=pravin.shelar@gmail.com \
--cc=davem@davemloft.net \
--cc=dmitry@broadcom.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).