diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-04-05 04:05:28 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-04-05 04:05:28 +0000 |
commit | bb592be222823c7bba4f0b1cf9e59938aa7981d9 (patch) | |
tree | e32e7e82be052269fc20ba50c459b05cd0ff4d0f /pkg/sentry/socket/unix | |
parent | 078753e0fe85dbcc047aaa5607a2bbc209491672 (diff) | |
parent | 24bee1c1813a691072cff5bad7a528690a99eb5e (diff) |
Merge release-20200323.0-70-g24bee1c (automated)
Diffstat (limited to 'pkg/sentry/socket/unix')
-rwxr-xr-x | pkg/sentry/socket/unix/unix_vfs2.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/sentry/socket/unix/unix_vfs2.go b/pkg/sentry/socket/unix/unix_vfs2.go index ca1388e2c..3e54d49c4 100755 --- a/pkg/sentry/socket/unix/unix_vfs2.go +++ b/pkg/sentry/socket/unix/unix_vfs2.go @@ -141,7 +141,7 @@ func (s *SocketVFS2) Accept(t *kernel.Task, peerRequested bool, flags int, block return 0, nil, 0, syserr.FromError(e) } - // TODO: add vfs2 sockets to global table. + t.Kernel().RecordSocketVFS2(ns) return fd, addr, addrLen, nil } |