Compare commits

...

3 Commits

Author SHA1 Message Date
Andrea Gottardo
f4a95663c8 VERSION.txt: this is v1.72.1
Signed-off-by: Andrea Gottardo <andrea@gottardo.me>
2024-08-22 09:21:32 -07:00
Jordan Whited
eb07c606d6 wgengine/netstack: disable gVisor GSO on Linux (#13213)
net/tstun.Wrapper.InjectInboundPacketBuffer is not GSO-aware, which can
break quad-100 TCP streams as a result. Linux is the only platform where
gVisor GSO was previously enabled.

Updates tailscale/corp#22511
Updates #13211

Signed-off-by: Jordan Whited <jordan@tailscale.com>
2024-08-21 12:09:54 -07:00
Andrea Gottardo
aa448d5a99 VERSION.txt: this is v1.72.0
Signed-off-by: Andrea Gottardo <andrea@gottardo.me>
2024-08-19 10:07:21 -07:00
2 changed files with 3 additions and 2 deletions

View File

@@ -1 +1 @@
1.71.0
1.72.1

View File

@@ -329,7 +329,8 @@ func Create(logf logger.Logf, tundev *tstun.Wrapper, e wgengine.Engine, mc *magi
// TODO(jwhited): add Windows GSO support https://github.com/tailscale/corp/issues/21874
// TODO(jwhited): exercise enableGRO in relation to https://github.com/tailscale/corp/issues/22353
linkEP = newLinkEndpoint(512, uint32(tstun.DefaultTUNMTU()), "", disableGRO)
linkEP.SupportedGSOKind = stack.HostGSOSupported
// TODO(jwhited): re-enable GSO https://github.com/tailscale/corp/issues/22511
linkEP.SupportedGSOKind = stack.GSONotSupported
} else {
linkEP = newLinkEndpoint(512, uint32(tstun.DefaultTUNMTU()), "", disableGRO)
}