Re: [PATCH RFC 0/3] Support fraglist GRO/GSO

2019-01-28 Thread Willem de Bruijn
On Mon, Jan 28, 2019 at 2:51 AM Steffen Klassert wrote: > > On Fri, Jan 25, 2019 at 08:57:00AM -0500, Willem de Bruijn wrote: > > On Fri, Jan 25, 2019 at 3:14 AM Steffen Klassert > > wrote: > > > > > > On Mon, Jan 14, 2019 at 12:09:22PM -0500, Willem de Bruijn wrote: > > > > On Mon, Jan 14, 2019

Re: [PATCH RFC 0/3] Support fraglist GRO/GSO

2019-01-27 Thread Steffen Klassert
On Fri, Jan 25, 2019 at 08:57:00AM -0500, Willem de Bruijn wrote: > On Fri, Jan 25, 2019 at 3:14 AM Steffen Klassert > wrote: > > > > On Mon, Jan 14, 2019 at 12:09:22PM -0500, Willem de Bruijn wrote: > > > On Mon, Jan 14, 2019 at 7:50 AM Steffen Klassert > > > wrote: > > > > On Sun, Dec 23, 2018

Re: [PATCH RFC 0/3] Support fraglist GRO/GSO

2019-01-25 Thread Willem de Bruijn
On Fri, Jan 25, 2019 at 3:14 AM Steffen Klassert wrote: > > On Mon, Jan 14, 2019 at 12:09:22PM -0500, Willem de Bruijn wrote: > > On Mon, Jan 14, 2019 at 7:50 AM Steffen Klassert > > wrote: > > > On Sun, Dec 23, 2018 at 08:15:40PM -0500, Willem de Bruijn wrote: > > > > > > > > I would prefer to s

Re: [PATCH RFC 0/3] Support fraglist GRO/GSO

2019-01-25 Thread Steffen Klassert
On Mon, Jan 14, 2019 at 12:09:22PM -0500, Willem de Bruijn wrote: > On Mon, Jan 14, 2019 at 7:50 AM Steffen Klassert > wrote: > > On Sun, Dec 23, 2018 at 08:15:40PM -0500, Willem de Bruijn wrote: > > > > > > I would prefer to split the patch that adds UDP GRO on the forwarding > > > path into one

Re: [PATCH RFC 0/3] Support fraglist GRO/GSO

2019-01-14 Thread Willem de Bruijn
On Mon, Jan 14, 2019 at 7:50 AM Steffen Klassert wrote: > > On Sun, Dec 23, 2018 at 08:15:40PM -0500, Willem de Bruijn wrote: > > On Fri, Dec 21, 2018 at 10:23 AM Steffen Klassert > > wrote: > > > > > > This patchset adds support to do GRO/GSO by chaining packets > > > of the same flow at the SKB

Re: [PATCH RFC 0/3] Support fraglist GRO/GSO

2019-01-14 Thread Steffen Klassert
On Sun, Dec 23, 2018 at 08:15:40PM -0500, Willem de Bruijn wrote: > On Fri, Dec 21, 2018 at 10:23 AM Steffen Klassert > wrote: > > > > This patchset adds support to do GRO/GSO by chaining packets > > of the same flow at the SKB frag_list pointer. This avoids > > the overhead to merge payloads into

Re: [PATCH RFC 0/3] Support fraglist GRO/GSO

2018-12-26 Thread Marcelo Ricardo Leitner
On Sun, Dec 23, 2018 at 08:15:40PM -0500, Willem de Bruijn wrote: > On Fri, Dec 21, 2018 at 10:23 AM Steffen Klassert > wrote: > > > > This patchset adds support to do GRO/GSO by chaining packets > > of the same flow at the SKB frag_list pointer. This avoids > > the overhead to merge payloads into

Re: [PATCH RFC 0/3] Support fraglist GRO/GSO

2018-12-23 Thread Willem de Bruijn
On Fri, Dec 21, 2018 at 10:23 AM Steffen Klassert wrote: > > This patchset adds support to do GRO/GSO by chaining packets > of the same flow at the SKB frag_list pointer. This avoids > the overhead to merge payloads into one big packet, and > on the other end, if GSO is needed it avoids the overhe

[PATCH RFC 0/3] Support fraglist GRO/GSO

2018-12-20 Thread Steffen Klassert
This patchset adds support to do GRO/GSO by chaining packets of the same flow at the SKB frag_list pointer. This avoids the overhead to merge payloads into one big packet, and on the other end, if GSO is needed it avoids the overhead of splitting the big packet back to the native form. Patch 1 pre