diff options
author | Jakub Kicinski <kuba@kernel.org> | 2022-05-06 05:51:34 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2022-05-06 14:07:56 +0300 |
commit | 744d49daf8bd3b17b345c836f2e6f97d49fa6ae8 (patch) | |
tree | 37f896eb09e44bcaaa344a03a96052843a4dbd90 /include/linux/netdevice.h | |
parent | ee8b7a1156f357613646d6c69d07ac5a087a1071 (diff) | |
download | linux-744d49daf8bd3b17b345c836f2e6f97d49fa6ae8.tar.xz |
net: move netif_set_gso_max helpers
These are now internal to the core, no need to expose them.
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/netdevice.h')
-rw-r--r-- | include/linux/netdevice.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index e12f7de6d6ae..8cf0ac616cb9 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -4881,27 +4881,6 @@ static inline bool netif_needs_gso(struct sk_buff *skb, (skb->ip_summed != CHECKSUM_UNNECESSARY))); } -static inline void netif_set_gso_max_size(struct net_device *dev, - unsigned int size) -{ - /* dev->gso_max_size is read locklessly from sk_setup_caps() */ - WRITE_ONCE(dev->gso_max_size, size); -} - -static inline void netif_set_gso_max_segs(struct net_device *dev, - unsigned int segs) -{ - /* dev->gso_max_segs is read locklessly from sk_setup_caps() */ - WRITE_ONCE(dev->gso_max_segs, segs); -} - -static inline void netif_set_gro_max_size(struct net_device *dev, - unsigned int size) -{ - /* This pairs with the READ_ONCE() in skb_gro_receive() */ - WRITE_ONCE(dev->gro_max_size, size); -} - void netif_set_tso_max_size(struct net_device *dev, unsigned int size); void netif_set_tso_max_segs(struct net_device *dev, unsigned int segs); void netif_inherit_tso_max(struct net_device *to, |