diff options
author | Rahat Mahmood <rahat@google.com> | 2021-03-11 16:47:49 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-03-11 16:49:36 -0800 |
commit | c5667022b6617d732e0c0bcb8ca3b58d588ceafb (patch) | |
tree | c112e83b4dcee9923cb99f1fe33b10251e1e58b2 /pkg/sentry/fsimpl/verity | |
parent | a82bd04e2ab3230a9ed09b297812b58d00784fe5 (diff) |
Report filesystem-specific mount options.
PiperOrigin-RevId: 362406813
Diffstat (limited to 'pkg/sentry/fsimpl/verity')
-rw-r--r-- | pkg/sentry/fsimpl/verity/verity.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pkg/sentry/fsimpl/verity/verity.go b/pkg/sentry/fsimpl/verity/verity.go index ec64015cd..24c7331bc 100644 --- a/pkg/sentry/fsimpl/verity/verity.go +++ b/pkg/sentry/fsimpl/verity/verity.go @@ -419,6 +419,11 @@ func (fs *filesystem) Release(ctx context.Context) { fs.lowerMount.DecRef(ctx) } +// MountOptions implements vfs.FilesystemImpl.MountOptions. +func (fs *filesystem) MountOptions() string { + return "" +} + // dentry implements vfs.DentryImpl. // // +stateify savable |