From: Eric Dumazet <eric.dumazet@gmail.com>
To: David Miller <davem@davemloft.net>
Cc: netdev <netdev@vger.kernel.org>,
"Dmitry Kravkov" <dmitry@broadcom.com>,
"Eilon Greenstein" <eilong@broadcom.com>,
"Pravin B Shelar" <pshelar@nicira.com>,
"H.K. Jerry Chu" <hkchu@google.com>,
"Maciej Żenczykowski" <maze@google.com>
Subject: [PATCH net-next] gro: relax ID check in inet_gro_receive()
Date: Wed, 20 Mar 2013 21:52:33 -0700 [thread overview]
Message-ID: <1363841553.3333.47.camel@edumazet-glaptop> (raw)
From: Eric Dumazet <edumazet@google.com>
GRE TSO support doesn't increment the ID in the inner IP header.
Remove the ID check in inet_gro_receive() so that GRO can properly
aggregate GRE encapsulated TCP packets, instead of forcing
a flush for every packet.
Testing the IP ID is not really needed anyway for proper GRO operation.
We can use more readable (and faster) code to access tot_len and
frag_off fields.
Tested on a bnx2x setup after commit a848ade408b6b
(bnx2x: add CSUM and TSO support for encapsulation protocols)
Signed-off-by: Eric Dumazet <edumazet@google.com>
Cc: Dmitry Kravkov <dmitry@broadcom.com>
Cc: Eilon Greenstein <eilong@broadcom.com>
Cc: Pravin B Shelar <pshelar@nicira.com>
Cc: H.K. Jerry Chu <hkchu@google.com>
Cc: Maciej Żenczykowski <maze@google.com>
---
net/ipv4/af_inet.c | 11 ++++-------
1 file changed, 4 insertions(+), 7 deletions(-)
diff --git a/net/ipv4/af_inet.c b/net/ipv4/af_inet.c
index 9e5882c..302a47e 100644
--- a/net/ipv4/af_inet.c
+++ b/net/ipv4/af_inet.c
@@ -1355,7 +1355,6 @@ static struct sk_buff **inet_gro_receive(struct sk_buff **head,
const struct iphdr *iph;
unsigned int hlen;
unsigned int off;
- unsigned int id;
int flush = 1;
int proto;
@@ -1381,9 +1380,9 @@ static struct sk_buff **inet_gro_receive(struct sk_buff **head,
if (unlikely(ip_fast_csum((u8 *)iph, 5)))
goto out_unlock;
- id = ntohl(*(__be32 *)&iph->id);
- flush = (u16)((ntohl(*(__be32 *)iph) ^ skb_gro_len(skb)) | (id ^ IP_DF));
- id >>= 16;
+ flush = ntohs(iph->tot_len) ^ skb_gro_len(skb);
+
+ flush |= (__force u16)iph->frag_off ^ htons(IP_DF);
for (p = *head; p; p = p->next) {
struct iphdr *iph2;
@@ -1400,11 +1399,9 @@ static struct sk_buff **inet_gro_receive(struct sk_buff **head,
continue;
}
- /* All fields must match except length and checksum. */
NAPI_GRO_CB(p)->flush |=
(iph->ttl ^ iph2->ttl) |
- (iph->tos ^ iph2->tos) |
- ((u16)(ntohs(iph2->id) + NAPI_GRO_CB(p)->count) ^ id);
+ (iph->tos ^ iph2->tos);
NAPI_GRO_CB(p)->flush |= flush;
}
next reply other threads:[~2013-03-21 4:52 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-03-21 4:52 Eric Dumazet [this message]
2013-03-21 9:59 ` [PATCH net-next] gro: relax ID check in inet_gro_receive() Maciej Żenczykowski
2013-03-21 10:05 ` Maciej Żenczykowski
2013-03-21 14:56 ` David Miller
2013-03-21 15:46 ` David Miller
2013-03-21 16:08 ` Eric Dumazet
2013-03-21 16:31 ` David Miller
2013-03-21 18:11 ` Dmitry Kravkov
2013-03-21 18:56 ` David Miller
2013-03-21 20:14 ` Maciej Żenczykowski
2013-03-21 20:20 ` David Miller
2013-03-21 20:47 ` Maciej Żenczykowski
2013-03-21 21:05 ` David Miller
2013-03-21 21:37 ` Jesse Gross
2013-03-21 21:39 ` David Miller
[not found] ` <CAM8tLiPh=g1+XqhwKQAH7XyTmpT80j5422VXGjLksxtFxYoxRQ@mail.gmail.com>
2013-03-21 20:07 ` Maciej Żenczykowski
2013-03-21 20:13 ` Dmitry Kravkov
2013-03-21 16:20 ` Ben Hutchings
2013-03-21 16:31 ` 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=1363841553.3333.47.camel@edumazet-glaptop \
--to=eric.dumazet@gmail.com \
--cc=davem@davemloft.net \
--cc=dmitry@broadcom.com \
--cc=eilong@broadcom.com \
--cc=hkchu@google.com \
--cc=maze@google.com \
--cc=netdev@vger.kernel.org \
--cc=pshelar@nicira.com \
/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