summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/stack/stack.go
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2021-01-18 02:27:25 +0000
committergVisor bot <gvisor-bot@google.com>2021-01-18 02:27:25 +0000
commitcfe357cafaf4dacc8e7371c0f21af7a7862d6d91 (patch)
tree667900f81baccc6b1310ce815408f064b43e5612 /pkg/tcpip/stack/stack.go
parent4d0fcb53e5a0dd280de04b5057b659d8e9a253a6 (diff)
parentf5736fa2bf91e1bb3fd9f9625dba8c800bf2adb5 (diff)
Merge release-20210112.0-41-gf5736fa2b (automated)
Diffstat (limited to 'pkg/tcpip/stack/stack.go')
-rw-r--r--pkg/tcpip/stack/stack.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/pkg/tcpip/stack/stack.go b/pkg/tcpip/stack/stack.go
index 6d761b125..c0aec61a6 100644
--- a/pkg/tcpip/stack/stack.go
+++ b/pkg/tcpip/stack/stack.go
@@ -440,10 +440,6 @@ type Stack struct {
// uniqueIDGenerator is a generator of unique identifiers.
uniqueIDGenerator UniqueID
- // linkResQueue holds packets that are waiting for link resolution to
- // complete.
- linkResQueue packetsPendingLinkResolution
-
// randomGenerator is an injectable pseudo random generator that can be
// used when a random number is required.
randomGenerator *mathrand.Rand
@@ -664,7 +660,6 @@ func New(opts Options) *Stack {
Max: DefaultMaxBufferSize,
},
}
- s.linkResQueue.init()
// Add specified network protocols.
for _, netProtoFactory := range opts.NetworkProtocols {