]> git.ipfire.org Git - thirdparty/wireguard-go.git/commit
conn, device: use UDP GSO and GRO on Linux
authorJordan Whited <jordan@tailscale.com>
Mon, 2 Oct 2023 20:53:07 +0000 (13:53 -0700)
committerJason A. Donenfeld <Jason@zx2c4.com>
Tue, 10 Oct 2023 13:07:36 +0000 (15:07 +0200)
commit6a84778f2ca810f5fb5cb078e001494f08d9085f
tree6f2d55c5e70652f3206eee440e443a8fe24fb6a4
parent469159ecf7d108dc1d44f8789dedbb463b7bd3a6
conn, device: use UDP GSO and GRO on Linux

StdNetBind probes for UDP GSO and GRO support at runtime. UDP GSO is
dependent on checksum offload support on the egress netdev. UDP GSO
will be disabled in the event sendmmsg() returns EIO, which is a strong
signal that the egress netdev does not support checksum offload.

The iperf3 results below demonstrate the effect of this commit between
two Linux computers with i5-12400 CPUs. There is roughly ~13us of round
trip latency between them.

The first result is from commit 052af4a without UDP GSO or GRO.

Starting Test: protocol: TCP, 1 streams, 131072 byte blocks
[ ID] Interval           Transfer     Bitrate         Retr  Cwnd
[  5]   0.00-10.00  sec  9.85 GBytes  8.46 Gbits/sec  1139   3.01 MBytes
- - - - - - - - - - - - - - - - - - - - - - - - -
Test Complete. Summary Results:
[ ID] Interval           Transfer     Bitrate         Retr
[  5]   0.00-10.00  sec  9.85 GBytes  8.46 Gbits/sec  1139  sender
[  5]   0.00-10.04  sec  9.85 GBytes  8.42 Gbits/sec        receiver

The second result is with UDP GSO and GRO.

Starting Test: protocol: TCP, 1 streams, 131072 byte blocks
[ ID] Interval           Transfer     Bitrate         Retr  Cwnd
[  5]   0.00-10.00  sec  12.3 GBytes  10.6 Gbits/sec  232   3.15 MBytes
- - - - - - - - - - - - - - - - - - - - - - - - -
Test Complete. Summary Results:
[ ID] Interval           Transfer     Bitrate         Retr
[  5]   0.00-10.00  sec  12.3 GBytes  10.6 Gbits/sec  232   sender
[  5]   0.00-10.04  sec  12.3 GBytes  10.6 Gbits/sec        receiver

Reviewed-by: Adrian Dewhurst <adrian@tailscale.com>
Signed-off-by: Jordan Whited <jordan@tailscale.com>
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
13 files changed:
conn/bind_std.go
conn/bind_std_test.go
conn/control_default.go [moved from conn/sticky_default.go with 56% similarity]
conn/control_linux.go [moved from conn/sticky_linux.go with 65% similarity]
conn/control_linux_test.go [moved from conn/sticky_linux_test.go with 96% similarity]
conn/controlfns_linux.go
conn/errors_default.go [new file with mode: 0644]
conn/errors_linux.go [new file with mode: 0644]
conn/features_default.go [new file with mode: 0644]
conn/features_linux.go [new file with mode: 0644]
device/send.go
go.mod
go.sum