On Wed, Mar 16, 2016 at 10:18:19PM -0700, Gregory Farnum wrote: > would've been nice if they were upstream. What *is* a big deal for > FileStore (and would be easy to take advantage of) is the thematically > similar O_NOMTIME flag, which is also about reducing metadata updates > and got blocked on similar stupid-user grounds (although not security > ones): http://thread.gmane.org/gmane.linux.kernel.api/10727. Try mounting with the lazytime mount option. That should give you the nearly all of the metaata update reduction for free. It is slightly better optimized for in ext4. but it should work for xfs and btrfs as well. The mtime will still get updated on disk about once a day (or if memory pressure pushes the inode out of memory or on an unmount), but the in-memory inode has the correct timestamps, so stat will return the correct mtime value and so the result is POSIX compliant for those people who still care such things. (Actually, if you need to pass POSIX conformance testing you should use strictatime,lazytime so that atime is updated when POSIX mandates it to be updated.) - Ted -- To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html