summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/syscalls
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2020-08-03 22:27:47 +0000
committergVisor bot <gvisor-bot@google.com>2020-08-03 22:27:47 +0000
commit8370c89805c3cf621b5162c834b843d45f2307fe (patch)
treee2b6b0173fdd8135123ac950603d70911ee1f54c /pkg/sentry/syscalls
parent5dc426b55a2b3f695303aa76a3294585a0b32168 (diff)
parent5626ccf61f718d80d46049e11d040a3a8fc72fb9 (diff)
Merge release-20200622.1-314-g5626ccf61 (automated)
Diffstat (limited to 'pkg/sentry/syscalls')
-rw-r--r--pkg/sentry/syscalls/linux/vfs2/fd.go2
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
}
}