search for: skb_gso_mpl

Displaying 16 results from an estimated 16 matches for "skb_gso_mpl".

Did you mean: skb_gso_mpls
2014 Dec 17
1
[PATCH 01/10] core: Split out UFO6 support
...This will later allow us to re-enable UFO support for virtio-net > devices. [...] > diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h > index 6c8b6f6..8538b67 100644 > --- a/include/linux/skbuff.h > +++ b/include/linux/skbuff.h > @@ -372,6 +372,7 @@ enum { > > SKB_GSO_MPLS = 1 << 12, > > + SKB_GSO_UDP6 = 1 << 13 It seems like it would be cleaner to use the names SKB_GSO_UDPV{4,6}, similarly to SKB_GSO_TCPV{4,6}. > }; > > #if BITS_PER_LONG > 32 > diff --git a/net/core/dev.c b/net/core/dev.c > index 945bbd0..fa4d2ee 100644 &...
2014 Dec 17
1
[PATCH 01/10] core: Split out UFO6 support
...This will later allow us to re-enable UFO support for virtio-net > devices. [...] > diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h > index 6c8b6f6..8538b67 100644 > --- a/include/linux/skbuff.h > +++ b/include/linux/skbuff.h > @@ -372,6 +372,7 @@ enum { > > SKB_GSO_MPLS = 1 << 12, > > + SKB_GSO_UDP6 = 1 << 13 It seems like it would be cleaner to use the names SKB_GSO_UDPV{4,6}, similarly to SKB_GSO_TCPV{4,6}. > }; > > #if BITS_PER_LONG > 32 > diff --git a/net/core/dev.c b/net/core/dev.c > index 945bbd0..fa4d2ee 100644 &...
2014 Dec 17
2
[PATCH 01/10] core: Split out UFO6 support
...; > BUILD_BUG_ON(SKB_GSO_TCPV6 != (NETIF_F_TSO6 >> NETIF_F_GSO_SHIFT)); > diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h > index 6c8b6f6..8538b67 100644 > --- a/include/linux/skbuff.h > +++ b/include/linux/skbuff.h > @@ -372,6 +372,7 @@ enum { > > SKB_GSO_MPLS = 1 << 12, > > + SKB_GSO_UDP6 = 1 << 13 > }; > > #if BITS_PER_LONG > 32 So this implies anything getting GSO packets e.g. from userspace now needs to check IP version to set GSO type correctly. I think you missed some places that do this, e.g. af_packet socket...
2014 Dec 17
2
[PATCH 01/10] core: Split out UFO6 support
...; > BUILD_BUG_ON(SKB_GSO_TCPV6 != (NETIF_F_TSO6 >> NETIF_F_GSO_SHIFT)); > diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h > index 6c8b6f6..8538b67 100644 > --- a/include/linux/skbuff.h > +++ b/include/linux/skbuff.h > @@ -372,6 +372,7 @@ enum { > > SKB_GSO_MPLS = 1 << 12, > > + SKB_GSO_UDP6 = 1 << 13 > }; > > #if BITS_PER_LONG > 32 So this implies anything getting GSO packets e.g. from userspace now needs to check IP version to set GSO type correctly. I think you missed some places that do this, e.g. af_packet socket...
2014 Dec 17
20
[PATCH 00/10] Split UFO into v4 and v6 versions.
UFO support in the kernel applies to both IPv4 and IPv6 protocols with the same device feature. However some devices may not be able to support one of the offloads. For this we split the UFO offload feature into 2 pieces. NETIF_F_UFO now controlls the IPv4 part and this series introduces NETIF_F_UFO6. As a result of this work, we can now re-enable NETIF_F_UFO on virtio_net devices and restore
2014 Dec 17
20
[PATCH 00/10] Split UFO into v4 and v6 versions.
UFO support in the kernel applies to both IPv4 and IPv6 protocols with the same device feature. However some devices may not be able to support one of the offloads. For this we split the UFO offload feature into 2 pieces. NETIF_F_UFO now controlls the IPv4 part and this series introduces NETIF_F_UFO6. As a result of this work, we can now re-enable NETIF_F_UFO on virtio_net devices and restore
2014 Dec 17
0
[PATCH 01/10] core: Split out UFO6 support
...F_F_TSO_ECN >> NETIF_F_GSO_SHIFT)); BUILD_BUG_ON(SKB_GSO_TCPV6 != (NETIF_F_TSO6 >> NETIF_F_GSO_SHIFT)); diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index 6c8b6f6..8538b67 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h @@ -372,6 +372,7 @@ enum { SKB_GSO_MPLS = 1 << 12, + SKB_GSO_UDP6 = 1 << 13 }; #if BITS_PER_LONG > 32 diff --git a/net/core/dev.c b/net/core/dev.c index 945bbd0..fa4d2ee 100644 --- a/net/core/dev.c +++ b/net/core/dev.c @@ -5929,6 +5929,12 @@ static netdev_features_t netdev_fix_features(struct net_device *dev, fea...
2014 Dec 17
0
[PATCH 01/10] core: Split out UFO6 support
...F_F_TSO_ECN >> NETIF_F_GSO_SHIFT)); BUILD_BUG_ON(SKB_GSO_TCPV6 != (NETIF_F_TSO6 >> NETIF_F_GSO_SHIFT)); diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index 6c8b6f6..8538b67 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h @@ -372,6 +372,7 @@ enum { SKB_GSO_MPLS = 1 << 12, + SKB_GSO_UDP6 = 1 << 13 }; #if BITS_PER_LONG > 32 diff --git a/net/core/dev.c b/net/core/dev.c index 945bbd0..fa4d2ee 100644 --- a/net/core/dev.c +++ b/net/core/dev.c @@ -5929,6 +5929,12 @@ static netdev_features_t netdev_fix_features(struct net_device *dev, fea...
2014 Dec 18
2
[PATCH 01/10] core: Split out UFO6 support
...NETIF_F_GSO_SHIFT)); > >> diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h > >> index 6c8b6f6..8538b67 100644 > >> --- a/include/linux/skbuff.h > >> +++ b/include/linux/skbuff.h > >> @@ -372,6 +372,7 @@ enum { > >> > >> SKB_GSO_MPLS = 1 << 12, > >> > >> + SKB_GSO_UDP6 = 1 << 13 > >> }; > >> > >> #if BITS_PER_LONG > 32 > > > > So this implies anything getting GSO packets e.g. > > from userspace now needs to check IP version to > > set GS...
2014 Dec 18
2
[PATCH 01/10] core: Split out UFO6 support
...NETIF_F_GSO_SHIFT)); > >> diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h > >> index 6c8b6f6..8538b67 100644 > >> --- a/include/linux/skbuff.h > >> +++ b/include/linux/skbuff.h > >> @@ -372,6 +372,7 @@ enum { > >> > >> SKB_GSO_MPLS = 1 << 12, > >> > >> + SKB_GSO_UDP6 = 1 << 13 > >> }; > >> > >> #if BITS_PER_LONG > 32 > > > > So this implies anything getting GSO packets e.g. > > from userspace now needs to check IP version to > > set GS...
2014 Dec 17
0
[PATCH 01/10] core: Split out UFO6 support
...O_TCPV6 != (NETIF_F_TSO6 >> NETIF_F_GSO_SHIFT)); >> diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h >> index 6c8b6f6..8538b67 100644 >> --- a/include/linux/skbuff.h >> +++ b/include/linux/skbuff.h >> @@ -372,6 +372,7 @@ enum { >> >> SKB_GSO_MPLS = 1 << 12, >> >> + SKB_GSO_UDP6 = 1 << 13 >> }; >> >> #if BITS_PER_LONG > 32 > > So this implies anything getting GSO packets e.g. > from userspace now needs to check IP version to > set GSO type correctly. > > I think you miss...
2014 Dec 17
0
[PATCH 01/10] core: Split out UFO6 support
...O_TCPV6 != (NETIF_F_TSO6 >> NETIF_F_GSO_SHIFT)); >> diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h >> index 6c8b6f6..8538b67 100644 >> --- a/include/linux/skbuff.h >> +++ b/include/linux/skbuff.h >> @@ -372,6 +372,7 @@ enum { >> >> SKB_GSO_MPLS = 1 << 12, >> >> + SKB_GSO_UDP6 = 1 << 13 >> }; >> >> #if BITS_PER_LONG > 32 > > So this implies anything getting GSO packets e.g. > from userspace now needs to check IP version to > set GSO type correctly. > > I think you miss...
2014 Dec 18
0
[PATCH 01/10] core: Split out UFO6 support
...>>>> diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h >>>> index 6c8b6f6..8538b67 100644 >>>> --- a/include/linux/skbuff.h >>>> +++ b/include/linux/skbuff.h >>>> @@ -372,6 +372,7 @@ enum { >>>> >>>> SKB_GSO_MPLS = 1 << 12, >>>> >>>> + SKB_GSO_UDP6 = 1 << 13 >>>> }; >>>> >>>> #if BITS_PER_LONG > 32 >>> >>> So this implies anything getting GSO packets e.g. >>> from userspace now needs to check IP vers...
2014 Dec 18
0
[PATCH 01/10] core: Split out UFO6 support
...>>>> diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h >>>> index 6c8b6f6..8538b67 100644 >>>> --- a/include/linux/skbuff.h >>>> +++ b/include/linux/skbuff.h >>>> @@ -372,6 +372,7 @@ enum { >>>> >>>> SKB_GSO_MPLS = 1 << 12, >>>> >>>> + SKB_GSO_UDP6 = 1 << 13 >>>> }; >>>> >>>> #if BITS_PER_LONG > 32 >>> >>> So this implies anything getting GSO packets e.g. >>> from userspace now needs to check IP vers...
2014 Dec 18
3
[PATCH 01/10] core: Split out UFO6 support
.../include/linux/skbuff.h b/include/linux/skbuff.h > >>>> index 6c8b6f6..8538b67 100644 > >>>> --- a/include/linux/skbuff.h > >>>> +++ b/include/linux/skbuff.h > >>>> @@ -372,6 +372,7 @@ enum { > >>>> > >>>> SKB_GSO_MPLS = 1 << 12, > >>>> > >>>> + SKB_GSO_UDP6 = 1 << 13 > >>>> }; > >>>> > >>>> #if BITS_PER_LONG > 32 > >>> > >>> So this implies anything getting GSO packets e.g. > >>> f...
2014 Dec 18
3
[PATCH 01/10] core: Split out UFO6 support
.../include/linux/skbuff.h b/include/linux/skbuff.h > >>>> index 6c8b6f6..8538b67 100644 > >>>> --- a/include/linux/skbuff.h > >>>> +++ b/include/linux/skbuff.h > >>>> @@ -372,6 +372,7 @@ enum { > >>>> > >>>> SKB_GSO_MPLS = 1 << 12, > >>>> > >>>> + SKB_GSO_UDP6 = 1 << 13 > >>>> }; > >>>> > >>>> #if BITS_PER_LONG > 32 > >>> > >>> So this implies anything getting GSO packets e.g. > >>> f...