summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/transport/internal
diff options
context:
space:
mode:
authorAdin Scannell <ascannell@google.com>2021-10-18 11:07:11 -0700
committergVisor bot <gvisor-bot@google.com>2021-10-18 11:09:39 -0700
commit4f6cda4d0ed8694a1b09d27a039eb4e57432bc75 (patch)
tree33fce0369425e33bce8a4fd2664b69cc04d8e3ce /pkg/tcpip/transport/internal
parentae8f93e555cdce4b8d423342011b1043f1b470a6 (diff)
Support distinction for RWMutex and read-only locks.
Fixes #6590 PiperOrigin-RevId: 404007524
Diffstat (limited to 'pkg/tcpip/transport/internal')
-rw-r--r--pkg/tcpip/transport/internal/network/endpoint.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkg/tcpip/transport/internal/network/endpoint.go b/pkg/tcpip/transport/internal/network/endpoint.go
index e3094f59f..fb31e5104 100644
--- a/pkg/tcpip/transport/internal/network/endpoint.go
+++ b/pkg/tcpip/transport/internal/network/endpoint.go
@@ -363,8 +363,7 @@ func (e *Endpoint) Disconnect() {
// configured multicast interface if no interface is specified and the
// specified address is a multicast address.
//
-// TODO(https://gvisor.dev/issue/6590): Annotate read lock requirement.
-// +checklocks:e.mu
+// +checklocksread:e.mu
func (e *Endpoint) connectRouteRLocked(nicID tcpip.NICID, addr tcpip.FullAddress, netProto tcpip.NetworkProtocolNumber) (*stack.Route, tcpip.NICID, tcpip.Error) {
localAddr := e.Info().ID.LocalAddress
if e.isBroadcastOrMulticast(nicID, netProto, localAddr) {