Re: [PATCH net-next 06/10] net: introduce a net_device_ops macsec helper

2019-01-31 Thread Florian Fainelli
On 1/24/19 1:23 AM, Antoine Tenart wrote: > Hi Florian, > > On Wed, Jan 23, 2019 at 12:16:08PM -0800, Florian Fainelli wrote: >> On 1/23/19 7:56 AM, Antoine Tenart wrote: >>> This patch introduces a net_device_ops MACsec helper to allow net device >>> drivers to implement a MACsec offloading so

Re: [PATCH net-next 06/10] net: introduce a net_device_ops macsec helper

2019-01-31 Thread Antoine Tenart
Hi, On Thu, Jan 24, 2019 at 10:23:49AM +0100, Antoine Tenart wrote: > On Wed, Jan 23, 2019 at 12:16:08PM -0800, Florian Fainelli wrote: > > On 1/23/19 7:56 AM, Antoine Tenart wrote: > > > @@ -1441,6 +1445,10 @@ struct net_device_ops { > > > u32 flags); > >

Re: [PATCH net-next 06/10] net: introduce a net_device_ops macsec helper

2019-01-24 Thread Antoine Tenart
Hi Igor, On Thu, Jan 24, 2019 at 02:58:45PM +, Igor Russkikh wrote: > > Its great to see macsec hw offload infrastructure happening! > > > @@ -1441,6 +1445,10 @@ struct net_device_ops { > > u32 flags); > > int (*ndo_xsk_asyn

Re: [PATCH net-next 06/10] net: introduce a net_device_ops macsec helper

2019-01-24 Thread Igor Russkikh
Hi Antoine, Its great to see macsec hw offload infrastructure happening! > @@ -1441,6 +1445,10 @@ struct net_device_ops { > u32 flags); > int (*ndo_xsk_async_xmit)(struct net_device *dev, >

Re: [PATCH net-next 06/10] net: introduce a net_device_ops macsec helper

2019-01-24 Thread Antoine Tenart
Hi Florian, On Wed, Jan 23, 2019 at 12:16:08PM -0800, Florian Fainelli wrote: > On 1/23/19 7:56 AM, Antoine Tenart wrote: > > This patch introduces a net_device_ops MACsec helper to allow net device > > drivers to implement a MACsec offloading solution. > > > > Signed-off-by: Antoine Tenart > >

Re: [PATCH net-next 06/10] net: introduce a net_device_ops macsec helper

2019-01-23 Thread Florian Fainelli
On 1/23/19 7:56 AM, Antoine Tenart wrote: > This patch introduces a net_device_ops MACsec helper to allow net device > drivers to implement a MACsec offloading solution. > > Signed-off-by: Antoine Tenart > --- > include/linux/netdevice.h | 8 > 1 file changed, 8 insertions(+) > > diff

[PATCH net-next 06/10] net: introduce a net_device_ops macsec helper

2019-01-23 Thread Antoine Tenart
This patch introduces a net_device_ops MACsec helper to allow net device drivers to implement a MACsec offloading solution. Signed-off-by: Antoine Tenart --- include/linux/netdevice.h | 8 1 file changed, 8 insertions(+) diff --git a/include/linux/netdevice.h b/include/linux/netdevice.