mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-20 16:30:53 +00:00
be2net: Fix incorrect setting of tunnel offload flag in netdev features
An earlier commit to resolve an issue with encapsulation offloads missed
setting a bit in the outer netdev features flag. This results in loss of TSO
feature on a VxLAN interface.
Fixes: 630f4b70
("Export tunnel offloads only when a VxLAN tunnel is created")
Signed-off-by: Sriharsha Basavapatna <sriharsha.basavapatna@emulex.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
bf27c3537c
commit
ac9a3d84e1
@ -3138,6 +3138,7 @@ static void be_disable_vxlan_offloads(struct be_adapter *adapter)
|
|||||||
|
|
||||||
netdev->hw_enc_features = 0;
|
netdev->hw_enc_features = 0;
|
||||||
netdev->hw_features &= ~(NETIF_F_GSO_UDP_TUNNEL);
|
netdev->hw_features &= ~(NETIF_F_GSO_UDP_TUNNEL);
|
||||||
|
netdev->features &= ~(NETIF_F_GSO_UDP_TUNNEL);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -4429,6 +4430,7 @@ static void be_add_vxlan_port(struct net_device *netdev, sa_family_t sa_family,
|
|||||||
NETIF_F_TSO | NETIF_F_TSO6 |
|
NETIF_F_TSO | NETIF_F_TSO6 |
|
||||||
NETIF_F_GSO_UDP_TUNNEL;
|
NETIF_F_GSO_UDP_TUNNEL;
|
||||||
netdev->hw_features |= NETIF_F_GSO_UDP_TUNNEL;
|
netdev->hw_features |= NETIF_F_GSO_UDP_TUNNEL;
|
||||||
|
netdev->features |= NETIF_F_GSO_UDP_TUNNEL;
|
||||||
|
|
||||||
dev_info(dev, "Enabled VxLAN offloads for UDP port %d\n",
|
dev_info(dev, "Enabled VxLAN offloads for UDP port %d\n",
|
||||||
be16_to_cpu(port));
|
be16_to_cpu(port));
|
||||||
|
Loading…
Reference in New Issue
Block a user