summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/fs/tmpfs/fs.go
diff options
context:
space:
mode:
authorMichael Pratt <mpratt@google.com>2019-06-25 17:11:10 -0700
committergVisor bot <gvisor-bot@google.com>2019-06-25 17:12:34 -0700
commite98ce4a2c681855b6b4f2c1298484f60014e4b88 (patch)
tree22d35c3bee786ca227fe62345fea07d48bcc6f75 /pkg/sentry/fs/tmpfs/fs.go
parentffee0f36b1314934e694863f1cb00924e6fc582e (diff)
Add TODO reminder to remove tmpfs caching options
Updates #179 PiperOrigin-RevId: 255081565
Diffstat (limited to 'pkg/sentry/fs/tmpfs/fs.go')
-rw-r--r--pkg/sentry/fs/tmpfs/fs.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkg/sentry/fs/tmpfs/fs.go b/pkg/sentry/fs/tmpfs/fs.go
index a5fcdf969..881dd89b0 100644
--- a/pkg/sentry/fs/tmpfs/fs.go
+++ b/pkg/sentry/fs/tmpfs/fs.go
@@ -133,6 +133,9 @@ func (f *Filesystem) Mount(ctx context.Context, device string, flags fs.MountSou
}
// Construct a mount which will follow the cache options provided.
+ //
+ // TODO(gvisor.dev/issue/179): There should be no reason to disable
+ // caching once bind mounts are properly supported.
var msrc *fs.MountSource
switch options[cacheKey] {
case "", cacheAll: