diff options
author | gVisor bot <gvisor-bot@google.com> | 2021-05-14 21:09:13 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-05-14 21:09:13 +0000 |
commit | c767d9eb372ddd4005744daa0972895fd0595326 (patch) | |
tree | c2372d38cc1d25a875b49ca1896b157ece60a715 /pkg/sentry/fsimpl/gofer | |
parent | 8ae8702de6b80d8ecae5bf1f0500dacf12c9a547 (diff) | |
parent | 894187b2c6edbe367135670fb53f2e3f3d24535d (diff) |
Merge release-20210510.0-38-g894187b2c (automated)
Diffstat (limited to 'pkg/sentry/fsimpl/gofer')
-rw-r--r-- | pkg/sentry/fsimpl/gofer/filesystem.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/sentry/fsimpl/gofer/filesystem.go b/pkg/sentry/fsimpl/gofer/filesystem.go index 97ce80853..91ec4a142 100644 --- a/pkg/sentry/fsimpl/gofer/filesystem.go +++ b/pkg/sentry/fsimpl/gofer/filesystem.go @@ -961,7 +961,7 @@ func (d *dentry) open(ctx context.Context, rp *vfs.ResolvingPath, opts *vfs.Open } return &fd.vfsfd, nil case linux.S_IFLNK: - // Can't open symlinks without O_PATH (which is unimplemented). + // Can't open symlinks without O_PATH, which is handled at the VFS layer. return nil, syserror.ELOOP case linux.S_IFSOCK: if d.isSynthetic() { |