Re: [PATCH] update ctime and mtime for mmaped write
From: Peter Staubach <hidden>
Date: 2007-02-21 18:51:06
Also in:
linux-fsdevel, lkml
Trond Myklebust wrote:
On Wed, 2007-02-21 at 19:28 +0100, Miklos Szeredi wrote:quoted
quoted
quoted
This flag is checked in msync() and __fput(), and if set, the file times are updated and the flag is clearedWhy not also check inside vfs_getattr?This is the minimum, that the standard asks for. Note, your porposal would touch the times in vfs_getattr(), which means, that the modification times would depend on the time of the last stat() call, which is not really right, though it would still be conforming. It is much saner, if the modification time is always the time of the last write() or msync().I disagree. The above doesn't allow a program like 'make' to discover whether or not the file has changed by simply calling stat(). Instead, you're forcing a call to msync()+stat().
Right, but that's what the specification specifies. The file times
for mmap'd files are not maintained as tightly as they are for files
which are being modified via write(2).
Rightly or wrongly.
ps
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>