diff options
author | gVisor bot <gvisor-bot@google.com> | 2021-10-18 18:13:57 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-10-18 18:13:57 +0000 |
commit | 29477a59b6e57b7c172121852b6cd9411bf95a3d (patch) | |
tree | 5a828290fae67c8bfbb7703d72694870a3d49fd2 /pkg/tcpip/transport/udp | |
parent | e44bf784bcc90c7a85f83563d3bba738f4c54580 (diff) | |
parent | 4f6cda4d0ed8694a1b09d27a039eb4e57432bc75 (diff) |
Merge release-20211005.0-52-g4f6cda4d0 (automated)
Diffstat (limited to 'pkg/tcpip/transport/udp')
-rw-r--r-- | pkg/tcpip/transport/udp/endpoint.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/tcpip/transport/udp/endpoint.go b/pkg/tcpip/transport/udp/endpoint.go index 39b1e08c0..077a2325a 100644 --- a/pkg/tcpip/transport/udp/endpoint.go +++ b/pkg/tcpip/transport/udp/endpoint.go @@ -292,7 +292,7 @@ func (e *endpoint) Read(dst io.Writer, opts tcpip.ReadOptions) (tcpip.ReadResult // reacquire the mutex in exclusive mode. // // Returns true for retry if preparation should be retried. -// +checklocks:e.mu +// +checklocksread:e.mu func (e *endpoint) prepareForWriteInner(to *tcpip.FullAddress) (retry bool, err tcpip.Error) { switch e.net.State() { case transport.DatagramEndpointStateInitial: |