Drop the counter padding that was never buying a cache line

This commit is contained in:
flamingcow
2026-08-04 12:53:53 -07:00
parent 06592cbc81
commit a285b8999c
3 changed files with 0 additions and 3 deletions
-1
View File
@@ -18,7 +18,6 @@ type lossWindow struct {
bits []uint64 bits []uint64
lost atomic.Uint64 lost atomic.Uint64
late atomic.Uint64 late atomic.Uint64
_ [16]byte
} }
func newLossWindows(n int) []lossWindow { func newLossWindows(n int) []lossWindow {
-1
View File
@@ -15,7 +15,6 @@ type rxStats struct {
badLen atomic.Uint64 badLen atomic.Uint64
crcErr atomic.Uint64 crcErr atomic.Uint64
rxErrs atomic.Uint64 rxErrs atomic.Uint64
_ [16]byte
} }
type rxWorker struct { type rxWorker struct {
-1
View File
@@ -10,7 +10,6 @@ type txStats struct {
frames atomic.Uint64 frames atomic.Uint64
bytes atomic.Uint64 bytes atomic.Uint64
errs atomic.Uint64 errs atomic.Uint64
_ [40]byte
} }
type txWorker struct { type txWorker struct {