diff options
author | Fabricio Voznika <fvoznika@google.com> | 2020-08-18 18:51:19 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-08-18 19:00:15 -0700 |
commit | 9da77d00fa682ff504c7ff549985f78b0574c79b (patch) | |
tree | 79121c038fb2fbd3bca300da8e13c5905725dbb7 /pkg/sentry/fsimpl/gofer | |
parent | afe7303c3cdcf04c9e4491004b3ef2d229bafc74 (diff) |
Don't set atime if mount is readonly
Updates #1035
PiperOrigin-RevId: 327351475
Diffstat (limited to 'pkg/sentry/fsimpl/gofer')
-rw-r--r-- | pkg/sentry/fsimpl/gofer/time.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/sentry/fsimpl/gofer/time.go b/pkg/sentry/fsimpl/gofer/time.go index 2cb8191b9..e59d07e90 100644 --- a/pkg/sentry/fsimpl/gofer/time.go +++ b/pkg/sentry/fsimpl/gofer/time.go @@ -38,7 +38,7 @@ func statxTimestampFromDentry(ns int64) linux.StatxTimestamp { // Preconditions: d.cachedMetadataAuthoritative() == true. func (d *dentry) touchAtime(mnt *vfs.Mount) { - if mnt.Flags.NoATime { + if mnt.Flags.NoATime || mnt.ReadOnly() { return } if err := mnt.CheckBeginWrite(); err != nil { |