GSO/GRO offloads, with TCP+ECN and UDP support

This commit is contained in:
JackDoan
2026-04-17 10:25:05 -05:00
parent ff48040c78
commit fa0d593f28
60 changed files with 6917 additions and 284 deletions
+11
View File
@@ -0,0 +1,11 @@
//go:build !linux || android || e2e_testing
package nebula
// pinThreadToCPU is a no-op outside Linux: only Linux exposes a stable
// per-thread CPU affinity API and only Linux has XPS-driven TX ring
// selection in the first place. On every other platform there's nothing
// to fix here.
func pinThreadToCPU(_ int) error {
return nil
}