diff options
author | Nicolas Lacasse <nlacasse@google.com> | 2020-01-06 12:51:35 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-01-06 12:52:55 -0800 |
commit | 51f3ab85e024fcd74c49d273ce5202a207577d31 (patch) | |
tree | 8d4e6ba070203203060a1d185b4321b89f2e8b05 /pkg/sentry/fs/fsutil/BUILD | |
parent | 354a15a234c1270bcb9b902503f61835b2ccd2d0 (diff) |
Convert memfs into proto-tmpfs.
- Renamed memfs to tmpfs.
- Copied fileRangeSet bits from fs/fsutil/ to fsimpl/tmpfs/
- Changed tmpfs to be backed by filemem instead of byte slice.
- regularFileReadWriter uses a sync.Pool, similar to gofer client.
PiperOrigin-RevId: 288356380
Diffstat (limited to 'pkg/sentry/fs/fsutil/BUILD')
-rw-r--r-- | pkg/sentry/fs/fsutil/BUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/sentry/fs/fsutil/BUILD b/pkg/sentry/fs/fsutil/BUILD index b2e8d9c77..9ca695a95 100644 --- a/pkg/sentry/fs/fsutil/BUILD +++ b/pkg/sentry/fs/fsutil/BUILD @@ -53,7 +53,7 @@ go_template_instance( "Key": "uint64", "Range": "memmap.MappableRange", "Value": "uint64", - "Functions": "fileRangeSetFunctions", + "Functions": "FileRangeSetFunctions", }, ) |