diff options
author | gVisor bot <gvisor-bot@google.com> | 2021-11-09 19:02:37 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-11-09 19:02:37 +0000 |
commit | 3a63a894aa3c88c71a9d8536eef89257859c62cf (patch) | |
tree | 16ebe013185f5529f371facb6ee341b80986bb22 /pkg/tcpip/stack/stack.go | |
parent | 8e8544025bec8ac990a94167268fcf512d1a2914 (diff) | |
parent | 3f5cfe694a99ebebc8ad7b55090259e1e4319d02 (diff) |
Merge release-20211101.0-27-g3f5cfe694 (automated)go
Diffstat (limited to 'pkg/tcpip/stack/stack.go')
-rw-r--r-- | pkg/tcpip/stack/stack.go | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/pkg/tcpip/stack/stack.go b/pkg/tcpip/stack/stack.go index 3ddf9de6b..86fa85f2c 100644 --- a/pkg/tcpip/stack/stack.go +++ b/pkg/tcpip/stack/stack.go @@ -419,11 +419,6 @@ func New(opts Options) *Stack { return s } -// newJob returns a tcpip.Job using the Stack clock. -func (s *Stack) newJob(l sync.Locker, f func()) *tcpip.Job { - return tcpip.NewJob(s.clock, l, f) -} - // UniqueID returns a unique identifier. func (s *Stack) UniqueID() uint64 { return s.uniqueIDGenerator.UniqueID() @@ -1844,11 +1839,6 @@ func (s *Stack) FindNICNameFromID(id tcpip.NICID) string { return nic.Name() } -// NewJob returns a new tcpip.Job using the stack's clock. -func (s *Stack) NewJob(l sync.Locker, f func()) *tcpip.Job { - return tcpip.NewJob(s.clock, l, f) -} - // ParseResult indicates the result of a parsing attempt. type ParseResult int |