diff options
author | gVisor bot <gvisor-bot@google.com> | 2021-05-11 18:06:50 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-05-11 18:06:50 -0700 |
commit | 8f6bfe257e162c14faa25ee00dc249859994c2c8 (patch) | |
tree | 5701019bbc96599c56dff809d5bd39946d4c5ba2 /pkg/tcpip/stack/stack.go | |
parent | 49eb3da98aeb436011ec9d895727b237ec2ea93f (diff) | |
parent | 314a5f8d7e7402e66ba5d22f79fa13143a7b69d0 (diff) |
Merge pull request #5694 from kevinGC:align32
PiperOrigin-RevId: 373271579
Diffstat (limited to 'pkg/tcpip/stack/stack.go')
-rw-r--r-- | pkg/tcpip/stack/stack.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pkg/tcpip/stack/stack.go b/pkg/tcpip/stack/stack.go index 436392f23..3d9e1e286 100644 --- a/pkg/tcpip/stack/stack.go +++ b/pkg/tcpip/stack/stack.go @@ -29,6 +29,7 @@ import ( "time" "golang.org/x/time/rate" + "gvisor.dev/gvisor/pkg/atomicbitops" "gvisor.dev/gvisor/pkg/rand" "gvisor.dev/gvisor/pkg/sync" "gvisor.dev/gvisor/pkg/tcpip" @@ -65,10 +66,10 @@ type ResumableEndpoint interface { } // uniqueIDGenerator is a default unique ID generator. -type uniqueIDGenerator uint64 +type uniqueIDGenerator atomicbitops.AlignedAtomicUint64 func (u *uniqueIDGenerator) UniqueID() uint64 { - return atomic.AddUint64((*uint64)(u), 1) + return ((*atomicbitops.AlignedAtomicUint64)(u)).Add(1) } // Stack is a networking stack, with all supported protocols, NICs, and route |