Re: [PATCH net-next 13/18] net: Add offload kernel net stack packet type

2016-06-17 Thread Saeed Mahameed
On Fri, Jun 17, 2016 at 6:15 PM, Daniel Borkmann wrote: > On 06/17/2016 04:43 PM, Saeed Mahameed wrote: >> >> From: Maor Gottlieb >> >> Add new packet type to skip kernel specific protocol handlers. >> >> This is needed so device drivers can pass packets

Re: [PATCH net-next 13/18] net: Add offload kernel net stack packet type

2016-06-17 Thread Daniel Borkmann
On 06/17/2016 04:43 PM, Saeed Mahameed wrote: From: Maor Gottlieb Add new packet type to skip kernel specific protocol handlers. This is needed so device drivers can pass packets up to user space (af_packet/tcpdump, etc..) without the need for them to go through the whole

Re: [PATCH net-next 13/18] net: Add offload kernel net stack packet type

2016-06-17 Thread Eric Dumazet
On Fri, Jun 17, 2016 at 7:43 AM, Saeed Mahameed wrote: > From: Maor Gottlieb > > Add new packet type to skip kernel specific protocol handlers. > > This is needed so device drivers can pass packets up to user space > (af_packet/tcpdump, etc..) without the

[PATCH net-next 13/18] net: Add offload kernel net stack packet type

2016-06-17 Thread Saeed Mahameed
From: Maor Gottlieb Add new packet type to skip kernel specific protocol handlers. This is needed so device drivers can pass packets up to user space (af_packet/tcpdump, etc..) without the need for them to go through the whole kernel data path. Signed-off-by: Maor Gottlieb