diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-06-19 00:04:46 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-06-19 00:04:46 +0000 |
commit | 3bff8759da51739080475f03d0da29423182bb0e (patch) | |
tree | 9e4839e22f14fd0181f1c0170e0b76bdd18d98d6 /pkg/abi/linux | |
parent | 70bc49849935a699f700c124228bf5e722a51c51 (diff) | |
parent | 28b8a5cc3ac538333756084da28d7f13f13b5c87 (diff) |
Merge release-20200608.0-87-g28b8a5cc3 (automated)
Diffstat (limited to 'pkg/abi/linux')
-rw-r--r-- | pkg/abi/linux/linux_abi_autogen_unsafe.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/abi/linux/linux_abi_autogen_unsafe.go b/pkg/abi/linux/linux_abi_autogen_unsafe.go index c21d57ad0..07bf06264 100644 --- a/pkg/abi/linux/linux_abi_autogen_unsafe.go +++ b/pkg/abi/linux/linux_abi_autogen_unsafe.go @@ -204,7 +204,7 @@ func (s *Statx) CopyIn(task marshal.Task, addr usermem.Addr) (int, error) { // WriteTo implements io.WriterTo.WriteTo. func (s *Statx) WriteTo(w io.Writer) (int64, error) { - if !s.Mtime.Packed() && s.Atime.Packed() && s.Btime.Packed() && s.Ctime.Packed() { + if !s.Btime.Packed() && s.Ctime.Packed() && s.Mtime.Packed() && s.Atime.Packed() { // Type Statx doesn't have a packed layout in memory, fall back to MarshalBytes. buf := make([]byte, s.SizeBytes()) s.MarshalBytes(buf) |