diff options
| author | 2023-12-27 13:08:10 +0000 | |
|---|---|---|
| committer | 2023-12-27 13:08:10 +0000 | |
| commit | 2f7ccf1d8835975a92fae7704fa73cb2e49bc12f (patch) | |
| tree | 6c814f739546bc21a243d1128bd95866d78e7858 /include/linux/skbuff.h | |
| parent | bridge: cfm: fix enum typo in br_cc_ccm_tx_parse (diff) | |
| parent | net: phy: nxp-c45-tja11xx: implement mdo_insert_tx_tag (diff) | |
| download | wireguard-linux-2f7ccf1d8835975a92fae7704fa73cb2e49bc12f.tar.xz wireguard-linux-2f7ccf1d8835975a92fae7704fa73cb2e49bc12f.zip | |
Merge branch 'net-tja11xx-macsec-support'
Radu Pirea says:
====================
Add MACsec support for TJA11XX C45 PHYs
This is the MACsec support for TJA11XX PHYs. The MACsec block encrypts
the ethernet frames on the fly and has no buffering. This operation will
grow the frames by 32 bytes. If the frames are sent back to back, the
MACsec block will not have enough room to insert the SecTAG and the ICV
and the frames will be dropped.
To mitigate this, the PHY can parse a specific ethertype with some
padding bytes and replace them with the SecTAG and ICV. These padding
bytes might be dummy or might contain information about TX SC that must
be used to encrypt the frame.
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/skbuff.h')
| -rw-r--r-- | include/linux/skbuff.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index 50e92c8471dc..a5ae952454c8 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h @@ -4007,6 +4007,7 @@ struct sk_buff *skb_segment_list(struct sk_buff *skb, netdev_features_t features unsigned int offset); struct sk_buff *skb_vlan_untag(struct sk_buff *skb); int skb_ensure_writable(struct sk_buff *skb, unsigned int write_len); +int skb_ensure_writable_head_tail(struct sk_buff *skb, struct net_device *dev); int __skb_vlan_pop(struct sk_buff *skb, u16 *vlan_tci); int skb_vlan_pop(struct sk_buff *skb); int skb_vlan_push(struct sk_buff *skb, __be16 vlan_proto, u16 vlan_tci); |
