diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-01-27 21:02:59 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-01-27 21:02:59 +0000 |
commit | 186ba3d4dce41d79812ac6a447c9870f12013292 (patch) | |
tree | 3a3cb1172834164327936a8799f1e52a5a7e40a5 /pkg/sentry | |
parent | 84232f34d2386c7fd49e359d0c71ec3d43567784 (diff) | |
parent | 13c1f38dfa215ab3e3cc70642721f55ab226d5b7 (diff) |
Merge release-20200115.0-105-g13c1f38 (automated)
Diffstat (limited to 'pkg/sentry')
-rwxr-xr-x | pkg/sentry/syscalls/linux/sys_xattr.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/sentry/syscalls/linux/sys_xattr.go b/pkg/sentry/syscalls/linux/sys_xattr.go index e35c077d6..77deb8980 100755 --- a/pkg/sentry/syscalls/linux/sys_xattr.go +++ b/pkg/sentry/syscalls/linux/sys_xattr.go @@ -103,6 +103,7 @@ func getXattr(t *kernel.Task, d *fs.Dirent, nameAddr usermem.Addr, size uint64) return 0, "", err } + // TODO(b/148380782): Support xattrs in namespaces other than "user". if !strings.HasPrefix(name, linux.XATTR_USER_PREFIX) { return 0, "", syserror.EOPNOTSUPP } |