summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry
diff options
context:
space:
mode:
authorCraig Chi <craigchi@google.com>2020-09-09 16:44:35 -0700
committerAndrei Vagin <avagin@gmail.com>2020-09-16 12:19:30 -0700
commit70cfea23776189575807f6aae28769bdfaa1e3fb (patch)
treeda5000ab1b82ec1a1b0cd56f5877eed97e5f59ea /pkg/sentry
parentd459bb3372384a4d16fe0d9791847285449dc184 (diff)
Fix comments of TODO issues.
Diffstat (limited to 'pkg/sentry')
-rw-r--r--pkg/sentry/fsimpl/fuse/request_response.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/sentry/fsimpl/fuse/request_response.go b/pkg/sentry/fsimpl/fuse/request_response.go
index fd9a96197..70db50f38 100644
--- a/pkg/sentry/fsimpl/fuse/request_response.go
+++ b/pkg/sentry/fsimpl/fuse/request_response.go
@@ -122,7 +122,7 @@ func (conn *connection) NewRequest(creds *auth.Credentials, pid uint32, ino uint
buf := make([]byte, hdr.Len)
- // TODO(gVisor.dev/3698): Use the unsafe version once go_marshal is safe to use again.
+ // TODO(gVisor.dev/issue/3698): Use the unsafe version once go_marshal is safe to use again.
hdr.MarshalBytes(buf[:hdrLen])
payload.MarshalBytes(buf[hdrLen:])
@@ -223,7 +223,7 @@ func (r *Response) UnmarshalPayload(m marshal.Marshallable) error {
return nil
}
- // TODO(gVisor.dev/3698): Use the unsafe version once go_marshal is safe to use again.
+ // TODO(gVisor.dev/issue/3698): Use the unsafe version once go_marshal is safe to use again.
m.UnmarshalBytes(r.data[hdrLen:])
return nil
}