search for: ovs_flow_extract

Displaying 6 results from an estimated 6 matches for "ovs_flow_extract".

2014 Dec 17
1
[PATCH 03/10] ovs: Enable handling of UFO6 packets.
...if (skb == segs && gso_type & SKB_GSO_UDP) { > + if (skb == segs && > + ((gso_type & SKB_GSO_UDP) || (gso_type & SKB_GSO_UDP6))) { 'gso_type & (SKB_GSO_UDP | SKB_GSO_UDP6)' would be shorter... > /* The initial flow key extracted by ovs_flow_extract() > * in this case is for a first fragment, so we need to > * properly mark later fragments. > diff --git a/net/openvswitch/flow.c b/net/openvswitch/flow.c > index 2b78789..d03adf4 100644 > --- a/net/openvswitch/flow.c > +++ b/net/openvswitch/flow.c > @@ -602,7 +602...
2014 Dec 17
1
[PATCH 03/10] ovs: Enable handling of UFO6 packets.
...if (skb == segs && gso_type & SKB_GSO_UDP) { > + if (skb == segs && > + ((gso_type & SKB_GSO_UDP) || (gso_type & SKB_GSO_UDP6))) { 'gso_type & (SKB_GSO_UDP | SKB_GSO_UDP6)' would be shorter... > /* The initial flow key extracted by ovs_flow_extract() > * in this case is for a first fragment, so we need to > * properly mark later fragments. > diff --git a/net/openvswitch/flow.c b/net/openvswitch/flow.c > index 2b78789..d03adf4 100644 > --- a/net/openvswitch/flow.c > +++ b/net/openvswitch/flow.c > @@ -602,7 +602...
2014 Dec 17
0
[PATCH 03/10] ovs: Enable handling of UFO6 packets.
...tatic int queue_gso_packets(struct datapath *dp, struct sk_buff *skb, if (err) break; - if (skb == segs && gso_type & SKB_GSO_UDP) { + if (skb == segs && + ((gso_type & SKB_GSO_UDP) || (gso_type & SKB_GSO_UDP6))) { /* The initial flow key extracted by ovs_flow_extract() * in this case is for a first fragment, so we need to * properly mark later fragments. diff --git a/net/openvswitch/flow.c b/net/openvswitch/flow.c index 2b78789..d03adf4 100644 --- a/net/openvswitch/flow.c +++ b/net/openvswitch/flow.c @@ -602,7 +602,7 @@ static int key_extract(struct s...
2014 Dec 17
0
[PATCH 03/10] ovs: Enable handling of UFO6 packets.
...tatic int queue_gso_packets(struct datapath *dp, struct sk_buff *skb, if (err) break; - if (skb == segs && gso_type & SKB_GSO_UDP) { + if (skb == segs && + ((gso_type & SKB_GSO_UDP) || (gso_type & SKB_GSO_UDP6))) { /* The initial flow key extracted by ovs_flow_extract() * in this case is for a first fragment, so we need to * properly mark later fragments. diff --git a/net/openvswitch/flow.c b/net/openvswitch/flow.c index 2b78789..d03adf4 100644 --- a/net/openvswitch/flow.c +++ b/net/openvswitch/flow.c @@ -602,7 +602,7 @@ static int key_extract(struct s...
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