diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-09-24 05:44:43 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-09-24 05:44:43 +0000 |
commit | 0b151427f76ac3cf1d7c6e0670e44f00237b5512 (patch) | |
tree | 90fdc8ea80f593094043bcfe7543e59b33fafed0 /pkg/sentry/vfs/options.go | |
parent | a754e69df557ac94304aa479807689a522e5db7f (diff) | |
parent | 6410e74a9602ecb92813375f45b953ab813cf313 (diff) |
Merge release-20200914.0-145-g6410e74a9 (automated)
Diffstat (limited to 'pkg/sentry/vfs/options.go')
-rw-r--r-- | pkg/sentry/vfs/options.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/pkg/sentry/vfs/options.go b/pkg/sentry/vfs/options.go index b33d36cb1..413cfb101 100644 --- a/pkg/sentry/vfs/options.go +++ b/pkg/sentry/vfs/options.go @@ -103,8 +103,10 @@ type MountOptions struct { // GetFilesystemOptions contains options to FilesystemType.GetFilesystem(). GetFilesystemOptions GetFilesystemOptions - // If InternalMount is true, allow the use of filesystem types for which - // RegisterFilesystemTypeOptions.AllowUserMount == false. + // InternalMount indicates whether the mount operation is coming from the + // application, i.e. through mount(2). If InternalMount is true, allow the use + // of filesystem types for which RegisterFilesystemTypeOptions.AllowUserMount + // == false. InternalMount bool } |