diff options
author | Fabricio Voznika <fvoznika@google.com> | 2020-06-10 06:50:10 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-06-10 06:51:32 -0700 |
commit | 203dc121f6fb3122e3bc0f234f4b4e4b276fb3b0 (patch) | |
tree | e393d1b4d7dd6bf3c02cc216185d926a10e23b6a /pkg/sentry/syscalls | |
parent | 67565078bbcdd8f797206d996605df8f6658d00a (diff) |
Redirect TODOs to more specific issues
Closes #1623
PiperOrigin-RevId: 315681993
Diffstat (limited to 'pkg/sentry/syscalls')
-rw-r--r-- | pkg/sentry/syscalls/linux/vfs2/fd.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/sentry/syscalls/linux/vfs2/fd.go b/pkg/sentry/syscalls/linux/vfs2/fd.go index ca0f7fd1e..6006758a5 100644 --- a/pkg/sentry/syscalls/linux/vfs2/fd.go +++ b/pkg/sentry/syscalls/linux/vfs2/fd.go @@ -168,7 +168,7 @@ func Fcntl(t *kernel.Task, args arch.SyscallArguments) (uintptr, *kernel.Syscall err := tmpfs.AddSeals(file, args[2].Uint()) return 0, nil, err default: - // TODO(gvisor.dev/issue/1623): Everything else is not yet supported. + // TODO(gvisor.dev/issue/2920): Everything else is not yet supported. return 0, nil, syserror.EINVAL } } |