diff options
author | Fabricio Voznika <fvoznika@google.com> | 2020-08-18 18:51:19 -0700 |
---|---|---|
committer | Rahat Mahmood <46939889+mrahatm@users.noreply.github.com> | 2020-08-19 11:38:34 -0700 |
commit | dbade2ec35aa836e8e3b02b0c145b658662728b3 (patch) | |
tree | 79121c038fb2fbd3bca300da8e13c5905725dbb7 /pkg/sentry/fsimpl | |
parent | cf38ac1c6c32b4c514bb56fc70073788835f3766 (diff) |
Don't set atime if mount is readonly
Updates #1035
PiperOrigin-RevId: 327351475
Diffstat (limited to 'pkg/sentry/fsimpl')
-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 { |