summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip
diff options
context:
space:
mode:
authorAdin Scannell <ascannell@google.com>2020-08-11 16:48:22 -0700
committergVisor bot <gvisor-bot@google.com>2020-08-11 16:49:53 -0700
commitc92242c89a47e75cc8a0aa40bcb2b105ce795b90 (patch)
tree3e42107f2fbcf93248e59812ac6bdbe580902189 /pkg/tcpip
parent49947d2eb9506d85ec735d17d00060d59997c452 (diff)
Fix-up issue comment.
PiperOrigin-RevId: 326129258
Diffstat (limited to 'pkg/tcpip')
-rw-r--r--pkg/tcpip/link/qdisc/fifo/endpoint.go2
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)
}