summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/vfs
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2021-10-26 19:03:21 +0000
committergVisor bot <gvisor-bot@google.com>2021-10-26 19:03:21 +0000
commit1cf8a412c893de6e20562d01fbdb086f5778d77e (patch)
tree9d86c5a1c14dc1a5a85307ace8649449666e08d7 /pkg/sentry/vfs
parented29acdbd826b3250f757ed11ee8b1b355b2f724 (diff)
parent763d7e6e396d8d4c67d650e02bd2350b22606ada (diff)
Merge release-20211019.0-40-g763d7e6e3 (automated)
Diffstat (limited to 'pkg/sentry/vfs')
-rw-r--r--pkg/sentry/vfs/filesystem_type.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/sentry/vfs/filesystem_type.go b/pkg/sentry/vfs/filesystem_type.go
index 9d54cc4ed..70d6eb85e 100644
--- a/pkg/sentry/vfs/filesystem_type.go
+++ b/pkg/sentry/vfs/filesystem_type.go
@@ -28,7 +28,7 @@ import (
type FilesystemType interface {
// GetFilesystem returns a Filesystem configured by the given options,
// along with its mount root. A reference is taken on the returned
- // Filesystem and Dentry.
+ // Filesystem and Dentry whose ownership is transferred to the caller.
GetFilesystem(ctx context.Context, vfsObj *VirtualFilesystem, creds *auth.Credentials, source string, opts GetFilesystemOptions) (*Filesystem, *Dentry, error)
// Name returns the name of this FilesystemType.