]> git.baikalelectronics.ru Git - kernel.git/commit
NFS: Ensure that 'noac' and/or 'actimeo=0' turn off attribute caching
authorTrond Myklebust <Trond.Myklebust@netapp.com>
Mon, 5 May 2008 15:45:41 +0000 (11:45 -0400)
committerTrond Myklebust <Trond.Myklebust@netapp.com>
Fri, 16 May 2008 16:43:21 +0000 (09:43 -0700)
commitc6a2b3059de1f0b7d5a72e296fd3e0bfaeb9ad43
tree0b20f42bb8cdef9bba26c7ca0e4afe883e5c9c25
parent05b13c7d6834ff95375b6f687aeb64692941631d
NFS: Ensure that 'noac' and/or 'actimeo=0' turn off attribute caching

Both the 'noac' and 'actimeo=0' mount options should ensure that attributes
are not cached, however a bug in nfs_attribute_timeout() means that
currently, the attributes may in fact get cached for up to one jiffy. This
has been seen to cause corruption in some applications.

The reason for the bug is that the time_in_range() test returns 'true' as
long as the current time lies between nfsi->read_cache_jiffies and
nfsi->read_cache_jiffies + nfsi->attrtimeo. In other words, if jiffies
equals nfsi->read_cache_jiffies, then we still cache the attribute data.

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
fs/nfs/inode.c