We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa0e51c commit eb6b9a8Copy full SHA for eb6b9a8
net/ipv4/ip_gre.c
@@ -1103,8 +1103,14 @@ static int ipgre_tunnel_bind_dev(struct net_device *dev)
1103
tunnel->hlen = addend;
1104
/* TCP offload with GRE SEQ is not supported. */
1105
if (!(tunnel->parms.o_flags & GRE_SEQ)) {
1106
- dev->features |= NETIF_F_GSO_SOFTWARE;
1107
- dev->hw_features |= NETIF_F_GSO_SOFTWARE;
+ /* device supports enc gso offload*/
+ if (tdev->hw_enc_features & NETIF_F_GRE_GSO) {
1108
+ dev->features |= NETIF_F_TSO;
1109
+ dev->hw_features |= NETIF_F_TSO;
1110
+ } else {
1111
+ dev->features |= NETIF_F_GSO_SOFTWARE;
1112
+ dev->hw_features |= NETIF_F_GSO_SOFTWARE;
1113
+ }
1114
}
1115
1116
return mtu;
0 commit comments