Re: [PATCH v4 net-next 0/9] Handle multiple received packets at each stage

2018-07-03 Thread David Miller
From: Edward Cree Date: Mon, 2 Jul 2018 16:11:36 +0100 > This patch series adds the capability for the network stack to receive a > list of packets and process them as a unit, rather than handling each > packet singly in sequence. This is done by factoring out the existing > datapath code at

Re: [PATCH v4 net-next 0/9] Handle multiple received packets at each stage

2018-07-03 Thread Paolo Abeni
On Mon, 2018-07-02 at 09:40 -0600, David Ahern wrote: > On 7/2/18 9:11 AM, Edward Cree wrote: > > This patch series adds the capability for the network stack to receive a > > list of packets and process them as a unit, rather than handling each > > packet singly in sequence. This is done by

Re: [PATCH v4 net-next 0/9] Handle multiple received packets at each stage

2018-07-02 Thread Edward Cree
On 02/07/18 16:40, David Ahern wrote: > Nice work. Have you looked at IPv6 support yet? I hadn't looked at it yet, no.  After a quick glance at ip6_rcv() and  ip6_rcv_finish(), it looks like it'd be basically the same as the IPv4  code in patches 7 and 8.  I'll probably add it in a followup when

Re: [PATCH v4 net-next 0/9] Handle multiple received packets at each stage

2018-07-02 Thread David Ahern
On 7/2/18 9:11 AM, Edward Cree wrote: > This patch series adds the capability for the network stack to receive a > list of packets and process them as a unit, rather than handling each > packet singly in sequence. This is done by factoring out the existing > datapath code at each layer and

[PATCH v4 net-next 0/9] Handle multiple received packets at each stage

2018-07-02 Thread Edward Cree
This patch series adds the capability for the network stack to receive a list of packets and process them as a unit, rather than handling each packet singly in sequence. This is done by factoring out the existing datapath code at each layer and wrapping it in list handling code. The