diff options
author | Dean Deng <deandeng@google.com> | 2020-08-03 15:23:05 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-08-03 15:24:54 -0700 |
commit | 5626ccf61f718d80d46049e11d040a3a8fc72fb9 (patch) | |
tree | e1d66094eb80697bd49986978f59060ef8971cae | |
parent | b2ae7ea1bb207eddadd7962080e7bd0b8634db96 (diff) |
Remove old TODO.
Fixes #2920.
PiperOrigin-RevId: 324695118
-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 72ca916a0..4856554fe 100644 --- a/pkg/sentry/syscalls/linux/vfs2/fd.go +++ b/pkg/sentry/syscalls/linux/vfs2/fd.go @@ -208,7 +208,7 @@ func Fcntl(t *kernel.Task, args arch.SyscallArguments) (uintptr, *kernel.Syscall case linux.F_SETLK, linux.F_SETLKW: return 0, nil, posixLock(t, args, file, cmd) default: - // TODO(gvisor.dev/issue/2920): Everything else is not yet supported. + // Everything else is not yet supported. return 0, nil, syserror.EINVAL } } |