diff options
author | Fabricio Voznika <fvoznika@google.com> | 2020-06-17 21:21:08 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-06-17 21:22:16 -0700 |
commit | 6e0c170522279ca72119b17c41e2e1dc93c49d6a (patch) | |
tree | af360a26f141e33228f125352f641c0ed3f45cff /pkg/sentry/fsimpl/tmpfs/regular_file.go | |
parent | 22b0bb21383614f6258dee27f4a254d2da97b586 (diff) |
Implement Sync() to directories
Updates #1035, #1199
PiperOrigin-RevId: 317028108
Diffstat (limited to 'pkg/sentry/fsimpl/tmpfs/regular_file.go')
-rw-r--r-- | pkg/sentry/fsimpl/tmpfs/regular_file.go | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/pkg/sentry/fsimpl/tmpfs/regular_file.go b/pkg/sentry/fsimpl/tmpfs/regular_file.go index 77447b32c..bfd9c5995 100644 --- a/pkg/sentry/fsimpl/tmpfs/regular_file.go +++ b/pkg/sentry/fsimpl/tmpfs/regular_file.go @@ -360,11 +360,6 @@ func (fd *regularFileFD) Seek(ctx context.Context, offset int64, whence int32) ( return offset, nil } -// Sync implements vfs.FileDescriptionImpl.Sync. -func (fd *regularFileFD) Sync(ctx context.Context) error { - return nil -} - // ConfigureMMap implements vfs.FileDescriptionImpl.ConfigureMMap. func (fd *regularFileFD) ConfigureMMap(ctx context.Context, opts *memmap.MMapOpts) error { file := fd.inode().impl.(*regularFile) |