Skip to content

Commit 03d56da

Browse files
Tom Herbertdavem330
authored andcommitted
ipv6: Clear flush_id to make GRO work
In TCP gro we check flush_id which is derived from the IP identifier. In IPv4 gro path the flush_id is set with the expectation that every matched packet increments IP identifier. In IPv6, the flush_id is never set and thus is uinitialized. What's worse is that in IPv6 over IPv4 encapsulation, the IP identifier is taken from the outer header which is currently not incremented on every packet for Linux stack, so GRO in this case never matches packets (identifier is not increasing). This patch clears flush_id for every time for a matched packet in IPv6 gro_receive. We need to do this each time to overwrite the setting that would be done in IPv4 gro_receive per the outer header in IPv6 over Ipv4 encapsulation. Signed-off-by: Tom Herbert <therbert@google.com> Signed-off-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent fe3881c commit 03d56da

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

net/ipv6/ip6_offload.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,9 @@ static struct sk_buff **ipv6_gro_receive(struct sk_buff **head,
261261
/* flush if Traffic Class fields are different */
262262
NAPI_GRO_CB(p)->flush |= !!(first_word & htonl(0x0FF00000));
263263
NAPI_GRO_CB(p)->flush |= flush;
264+
265+
/* Clear flush_id, there's really no concept of ID in IPv6. */
266+
NAPI_GRO_CB(p)->flush_id = 0;
264267
}
265268

266269
NAPI_GRO_CB(skb)->flush |= flush;

0 commit comments

Comments
 (0)