diff options
author | Adin Scannell <ascannell@google.com> | 2020-08-11 16:48:22 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-08-11 16:49:53 -0700 |
commit | c92242c89a47e75cc8a0aa40bcb2b105ce795b90 (patch) | |
tree | 3e42107f2fbcf93248e59812ac6bdbe580902189 /pkg/tcpip | |
parent | 49947d2eb9506d85ec735d17d00060d59997c452 (diff) |
Fix-up issue comment.
PiperOrigin-RevId: 326129258
Diffstat (limited to 'pkg/tcpip')
-rw-r--r-- | pkg/tcpip/link/qdisc/fifo/endpoint.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/tcpip/link/qdisc/fifo/endpoint.go b/pkg/tcpip/link/qdisc/fifo/endpoint.go index 467083239..fc1e34fc7 100644 --- a/pkg/tcpip/link/qdisc/fifo/endpoint.go +++ b/pkg/tcpip/link/qdisc/fifo/endpoint.go @@ -199,7 +199,7 @@ func (e *endpoint) WritePackets(_ *stack.Route, _ *stack.GSO, pkts stack.PacketB // WriteRawPacket implements stack.LinkEndpoint.WriteRawPacket. func (e *endpoint) WriteRawPacket(vv buffer.VectorisedView) *tcpip.Error { - // TODO(gvisor.dev/issue/3267/): Queue these packets as well once + // TODO(gvisor.dev/issue/3267): Queue these packets as well once // WriteRawPacket takes PacketBuffer instead of VectorisedView. return e.lower.WriteRawPacket(vv) } |