summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/fs
diff options
context:
space:
mode:
authorMichael Pratt <mpratt@google.com>2018-08-02 15:55:19 -0700
committerShentubot <shentubot@google.com>2018-08-02 15:56:40 -0700
commitb6a37ab9d96b382e26e3836a42ea485c48a521a8 (patch)
treec3af1a279b9dce1864b59620ede88f6630e2badd /pkg/sentry/fs
parent4c1167de4ee2aa7b71729ff8b1c742b4183168d1 (diff)
Update comment reference
PiperOrigin-RevId: 207180809 Change-Id: I08c264812919e81b2c56fdd4a9ef06924de8b52f
Diffstat (limited to 'pkg/sentry/fs')
-rw-r--r--pkg/sentry/fs/mount.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkg/sentry/fs/mount.go b/pkg/sentry/fs/mount.go
index 4ede767f9..c72372929 100644
--- a/pkg/sentry/fs/mount.go
+++ b/pkg/sentry/fs/mount.go
@@ -159,10 +159,10 @@ const defaultDirentCacheSize uint64 = 1000
func NewMountSource(mops MountSourceOperations, filesystem Filesystem, flags MountSourceFlags) *MountSource {
return &MountSource{
MountSourceOperations: mops,
- Flags: flags,
- Filesystem: filesystem,
- fscache: NewDirentCache(defaultDirentCacheSize),
- children: make(map[*MountSource]struct{}),
+ Flags: flags,
+ Filesystem: filesystem,
+ fscache: NewDirentCache(defaultDirentCacheSize),
+ children: make(map[*MountSource]struct{}),
}
}