diff options
author | Jakub Kicinski <kuba@kernel.org> | 2022-05-06 04:51:31 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2022-05-06 13:07:56 +0200 |
commit | 6df6398f7c8b481ce83f28143bc08a5231616deb (patch) | |
tree | 5e61db4831d6b8a01f40a5e30e81b91429c9236e /net/8021q/vlan_dev.c | |
parent | Merge branch 'nfp-flower-rework' (diff) | |
download | linux-6df6398f7c8b481ce83f28143bc08a5231616deb.tar.xz linux-6df6398f7c8b481ce83f28143bc08a5231616deb.zip |
net: add netif_inherit_tso_max()
To make later patches smaller create a helper for inheriting
the TSO limitations of a lower device. The TSO in the name
is not an accident, subsequent patches will replace GSO
with TSO in more names.
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/8021q/vlan_dev.c')
-rw-r--r-- | net/8021q/vlan_dev.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/8021q/vlan_dev.c b/net/8021q/vlan_dev.c index e5d23e75572a..839f2020b015 100644 --- a/net/8021q/vlan_dev.c +++ b/net/8021q/vlan_dev.c @@ -573,8 +573,7 @@ static int vlan_dev_init(struct net_device *dev) NETIF_F_ALL_FCOE; dev->features |= dev->hw_features | NETIF_F_LLTX; - netif_set_gso_max_size(dev, real_dev->gso_max_size); - netif_set_gso_max_segs(dev, real_dev->gso_max_segs); + netif_inherit_tso_max(dev, real_dev); if (dev->features & NETIF_F_VLAN_FEATURES) netdev_warn(real_dev, "VLAN features are set incorrectly. Q-in-Q configurations may not work correctly.\n"); |