diff options
author | Googler <noreply@google.com> | 2019-02-15 16:46:50 -0800 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2019-02-15 16:47:55 -0800 |
commit | e2dcce544297b2364ebd4874f6db0390aafa366e (patch) | |
tree | 3b39d4943cc92b56b218d76d1d6e5f351f5992d4 | |
parent | a9cb3dcd9df373fb7a531476bf1da69fc9189e3a (diff) |
Internal change.
PiperOrigin-RevId: 234237297
Change-Id: Ic9b7a37db831556d2c2cf733a6e27fba27afee0b
-rw-r--r-- | pkg/p9/p9.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/p9/p9.go b/pkg/p9/p9.go index 5aeebf16e..2737fe7ed 100644 --- a/pkg/p9/p9.go +++ b/pkg/p9/p9.go @@ -44,7 +44,7 @@ const ( // OpenFlagsIgnoreMask is a list of OpenFlags mode bits that are ignored for Tlopen. // Note that syscall.O_LARGEFILE is set to zero, use value from Linux fcntl.h. - OpenFlagsIgnoreMask OpenFlags = syscall.O_DIRECTORY | 0100000 + OpenFlagsIgnoreMask OpenFlags = syscall.O_DIRECTORY | syscall.O_NOATIME | 0100000 ) // ConnectFlags is the mode passed to Connect operations. |