Merge "Add noatime to vfat and exfat" into oc-mr1-dev am: 53deec14b8

am: 7f361f97b5

Change-Id: Ibdea8f3c60bbfdbb08508e32e508d2558b4c7f60
gugelfrei
Ravisankar Reddy 7 years ago committed by android-build-merger
commit c1c58d479f

@ -133,7 +133,7 @@ status_t Mount(const std::string& source, const std::string& target, bool ro,
const char* c_source = source.c_str();
const char* c_target = target.c_str();
flags = MS_NODEV | MS_NOSUID | MS_DIRSYNC;
flags = MS_NODEV | MS_NOSUID | MS_DIRSYNC | MS_NOATIME;
flags |= (executable ? 0 : MS_NOEXEC);
flags |= (ro ? MS_RDONLY : 0);

Loading…
Cancel
Save