On Fri, 2015-10-16 at 08:23 -0700, Eric Dumazet wrote: > What about the following more complete patch ? > > We properly set skb->encapsulation and inner network header as some NIC > drivers depend on it. Our GSO should also work properly I think. > > Wolfgang, could you please test it ? (this is a patch on top of David > Miller net-next tree) > > Both Google and Facebook are eager to get proper GRO/SIT support ;) > > Thanks ! > > diff --git a/net/ipv6/ip6_offload.c b/net/ipv6/ip6_offload.c > index 08b62047c67f..eeca943f12dc 100644 > --- a/net/ipv6/ip6_offload.c > +++ b/net/ipv6/ip6_offload.c > @@ -264,6 +264,9 @@ static int ipv6_gro_complete(struct sk_buff *skb, int > nhoff) > struct ipv6hdr *iph = (struct ipv6hdr *)(skb->data + nhoff); > int err = -ENOSYS; > > + if (skb->encapsulation) > + skb_set_inner_network_header(skb, nhoff); > + > iph->payload_len = htons(skb->len - nhoff - sizeof(*iph)); > > rcu_read_lock(); > @@ -280,6 +283,13 @@ out_unlock: > return err; > } > > +static int sit_gro_complete(struct sk_buff *skb, int nhoff) > +{ > + skb->encapsulation = 1; > + skb_shinfo(skb)->gso_type |= SKB_GSO_SIT; > + return ipv6_gro_complete(skb, nhoff); > +} > + > static struct packet_offload ipv6_packet_offload __read_mostly = { > .type = cpu_to_be16(ETH_P_IPV6), > .callbacks = { > @@ -292,6 +302,8 @@ static struct packet_offload ipv6_packet_offload > __read_mostly = { > static const struct net_offload sit_offload = { > .callbacks = { > .gso_segment = ipv6_gso_segment, > + .gro_receive = ipv6_gro_receive, > + .gro_complete = sit_gro_complete, > }, > }; > >
FYI, I've tested this patch and confirm it works properly. I will therefore submit an official patch. I'll also submit a patch against dummy device to add missing features. -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html