diff options
author | gVisor bot <gvisor-bot@google.com> | 2019-06-18 08:49:51 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-06-18 08:49:51 +0000 |
commit | b7d87eb0fb93cac42b5c9034fb22351743823ed7 (patch) | |
tree | 3398182f3f61577a40926e2e04a78d03d2058bb6 /pkg/sentry/fs/flags.go | |
parent | e942d4c88fef76dffacb1de8e4d2fa2e0a282926 (diff) | |
parent | 8ab0848c70fcebe377a0e7abdebf371022c96830 (diff) |
Merge 8ab0848c (automated)
Diffstat (limited to 'pkg/sentry/fs/flags.go')
-rw-r--r-- | pkg/sentry/fs/flags.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pkg/sentry/fs/flags.go b/pkg/sentry/fs/flags.go index f31bfa0db..1278f9c78 100644 --- a/pkg/sentry/fs/flags.go +++ b/pkg/sentry/fs/flags.go @@ -57,6 +57,9 @@ type FileFlags struct { // Linux sets this flag for all files. Since gVisor is only compatible // with 64-bit Linux, it also sets this flag for all files. LargeFile bool + + // NonSeekable indicates that file.offset isn't used. + NonSeekable bool } // SettableFileFlags is a subset of FileFlags above that can be changed |