[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <1363841553.3333.47.camel@edumazet-glaptop>
Date: Wed, 20 Mar 2013 21:52:33 -0700
From: Eric Dumazet <eric.dumazet@...il.com>
To: David Miller <davem@...emloft.net>
Cc: netdev <netdev@...r.kernel.org>,
Dmitry Kravkov <dmitry@...adcom.com>,
Eilon Greenstein <eilong@...adcom.com>,
Pravin B Shelar <pshelar@...ira.com>,
"H.K. Jerry Chu" <hkchu@...gle.com>,
Maciej Żenczykowski <maze@...gle.com>
Subject: [PATCH net-next] gro: relax ID check in inet_gro_receive()
From: Eric Dumazet <edumazet@...gle.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@...gle.com>
Cc: Dmitry Kravkov <dmitry@...adcom.com>
Cc: Eilon Greenstein <eilong@...adcom.com>
Cc: Pravin B Shelar <pshelar@...ira.com>
Cc: H.K. Jerry Chu <hkchu@...gle.com>
Cc: Maciej Żenczykowski <maze@...gle.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;
}
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists