diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2007-09-24 15:40:06 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2007-10-09 17:18:22 -0400 |
commit | 92f6c178250170222f6d80c8ae725400765aa7a4 (patch) | |
tree | f0da7a93122db0ed40cb5175294e8492082144ba /fs/nfs/dir.c | |
parent | 1321d8d971028e796978f6a48d195c09158b3bcd (diff) |
NFS: Don't call nfs_renew_times() in nfs_dentry_iput()
Negative dentries need to be reverified after an asynchronous unlink.
Quoth Trond:
"Unfortunately I don't think that we can avoid revalidating the
resulting negative dentry since the UNLINK call is asynchronous,
and so the new verifier on the directory will only be known a
posteriori."
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/dir.c')
-rw-r--r-- | fs/nfs/dir.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/nfs/dir.c b/fs/nfs/dir.c index 6e0aa04451dd..439346abda62 100644 --- a/fs/nfs/dir.c +++ b/fs/nfs/dir.c | |||
@@ -872,8 +872,6 @@ static void nfs_dentry_iput(struct dentry *dentry, struct inode *inode) | |||
872 | nfs_complete_unlink(dentry, inode); | 872 | nfs_complete_unlink(dentry, inode); |
873 | unlock_kernel(); | 873 | unlock_kernel(); |
874 | } | 874 | } |
875 | /* When creating a negative dentry, we want to renew d_time */ | ||
876 | nfs_renew_times(dentry); | ||
877 | iput(inode); | 875 | iput(inode); |
878 | } | 876 | } |
879 | 877 | ||