summaryrefslogtreecommitdiffhomepage
path: root/pkg
diff options
context:
space:
mode:
Diffstat (limited to 'pkg')
-rw-r--r--pkg/abi/linux/fuse.go2
-rw-r--r--pkg/sentry/fsimpl/fuse/request_response.go4
2 files changed, 3 insertions, 3 deletions
diff --git a/pkg/abi/linux/fuse.go b/pkg/abi/linux/fuse.go
index ba3316ad6..ca304af05 100644
--- a/pkg/abi/linux/fuse.go
+++ b/pkg/abi/linux/fuse.go
@@ -663,7 +663,7 @@ func (r *FUSEMkdirIn) SizeBytes() int {
type FUSERmDirIn struct {
marshal.StubMarshallable
- // Name is a directory name to be looked up.
+ // Name is a directory name to be removed.
Name string
}
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
}