Re: [PATCH RFC v2 3/3] udp: Support UDP fraglist GRO/GSO.

2019-02-13 Thread Steffen Klassert
On Mon, Jan 28, 2019 at 02:49:32PM -0600, Willem de Bruijn wrote: > On Mon, Jan 28, 2019 at 2:51 AM Steffen Klassert > wrote: > > > > This patch extends UDP GRO to support fraglist GRO/GSO > > by using the previously introduced infrastructure. > > All UDP packets that are not targeted to a GRO cap

Re: [PATCH RFC v2 3/3] udp: Support UDP fraglist GRO/GSO.

2019-01-28 Thread Willem de Bruijn
On Mon, Jan 28, 2019 at 2:51 AM Steffen Klassert wrote: > > This patch extends UDP GRO to support fraglist GRO/GSO > by using the previously introduced infrastructure. > All UDP packets that are not targeted to a GRO capable > UDP sockets are going to fraglist GRO now (local input > and forward).

Re: [PATCH RFC v2 3/3] udp: Support UDP fraglist GRO/GSO.

2019-01-28 Thread Paolo Abeni
Hi, On Mon, 2019-01-28 at 09:50 +0100, Steffen Klassert wrote: > diff --git a/net/ipv4/udp_offload.c b/net/ipv4/udp_offload.c > index 584635db9231..c0be33216750 100644 > --- a/net/ipv4/udp_offload.c > +++ b/net/ipv4/udp_offload.c [...] > @@ -379,8 +397,17 @@ static struct sk_buff *udp_gro_receive_

[PATCH RFC v2 3/3] udp: Support UDP fraglist GRO/GSO.

2019-01-28 Thread Steffen Klassert
This patch extends UDP GRO to support fraglist GRO/GSO by using the previously introduced infrastructure. All UDP packets that are not targeted to a GRO capable UDP sockets are going to fraglist GRO now (local input and forward). --- net/ipv4/udp_offload.c | 45