diff options
author | gVisor bot <gvisor-bot@google.com> | 2021-01-22 22:38:54 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-01-22 22:38:54 +0000 |
commit | 9e2762d9c5704a608a008b4b9da5264834303286 (patch) | |
tree | de8b2f92c56b4ca80c8683101857eb6a903bc895 /pkg/tcpip/stack/pending_packets.go | |
parent | d7cb3d3676d4abb1e4a434ec34e8562f923f1e86 (diff) | |
parent | f190e13a74c261176d8619a2fa03fd80a5c74f6d (diff) |
Merge release-20210112.0-76-gf190e13a7 (automated)
Diffstat (limited to 'pkg/tcpip/stack/pending_packets.go')
-rw-r--r-- | pkg/tcpip/stack/pending_packets.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/tcpip/stack/pending_packets.go b/pkg/tcpip/stack/pending_packets.go index 22dfc7960..c4769b17e 100644 --- a/pkg/tcpip/stack/pending_packets.go +++ b/pkg/tcpip/stack/pending_packets.go @@ -145,7 +145,7 @@ func (f *packetsPendingLinkResolution) enqueue(r *Route, gso *GSO, proto tcpip.N // // To make sure B does not interleave with A and C, we make sure A and C are // done while holding the lock. - routeInfo, ch, err := r.ResolvedFields(nil) + routeInfo, ch, err := r.resolvedFields(nil) switch err { case nil: // The route resolved immediately, so we don't need to wait for link |