summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/fs
diff options
context:
space:
mode:
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{}),
}
}