summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/fs/sys/fs.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/sentry/fs/sys/fs.go')
-rw-r--r--pkg/sentry/fs/sys/fs.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkg/sentry/fs/sys/fs.go b/pkg/sentry/fs/sys/fs.go
index f25f648c3..c6d5f7fd8 100644
--- a/pkg/sentry/fs/sys/fs.go
+++ b/pkg/sentry/fs/sys/fs.go
@@ -40,6 +40,11 @@ func (*filesystem) AllowUserMount() bool {
return true
}
+// AllowUserList allows this filesystem to be listed in /proc/filesystems.
+func (*filesystem) AllowUserList() bool {
+ return true
+}
+
// Flags returns that there is nothing special about this file system.
//
// In Linux, sysfs returns FS_USERNS_VISIBLE | FS_USERNS_MOUNT, see fs/sysfs/mount.c.