Re: [PATCH net-next v2 3/3] macsec: introduce IEEE 802.1AE driver

2016-03-16 Thread Sabrina Dubroca
Hello, 2016-03-15, 15:03:31 +0100, Johannes Berg wrote: > Hi, > > > +struct macsec_rx_sa_stats { > > + __u32 InPktsOK; > > + __u32 InPktsInvalid; > > + __u32 InPktsNotValid; > > + __u32 InPktsNotUsingSA; > > + __u32 InPktsUnusedSA; > > +}; > > + > > +struct macsec_tx_sa_stats { > > +

Re: [PATCH net-next v2 3/3] macsec: introduce IEEE 802.1AE driver

2016-03-15 Thread Johannes Berg
Hi, > +struct macsec_rx_sa_stats { > + __u32 InPktsOK; > + __u32 InPktsInvalid; > + __u32 InPktsNotValid; > + __u32 InPktsNotUsingSA; > + __u32 InPktsUnusedSA; > +}; > + > +struct macsec_tx_sa_stats { > + __u32 OutPktsProtected; > + __u32 OutPktsEncrypted; > +}; Just

[PATCH net-next v2 3/3] macsec: introduce IEEE 802.1AE driver

2016-03-11 Thread Sabrina Dubroca
This is an implementation of MACsec/IEEE 802.1AE. This driver provides authentication and encryption of traffic in a LAN, typically with GCM-AES-128, and optional replay protection. http://standards.ieee.org/getieee802/download/802.1AE-2006.pdf Signed-off-by: Sabrina Dubroca