Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=68e8a70d3cae23716f6b2b3872eba10eccea148c
Commit:     68e8a70d3cae23716f6b2b3872eba10eccea148c
Parent:     f2115dc9877d480392e48e3c83bc8cbb4b418fee
Author:     Trond Myklebust <[EMAIL PROTECTED]>
AuthorDate: Wed Aug 15 12:59:12 2007 -0400
Committer:  Trond Myklebust <[EMAIL PROTECTED]>
CommitDate: Tue Oct 9 17:18:43 2007 -0400

    NFS: nfs_post_op_update_inode() should call nfs_refresh_inode()
    
    Ensure that we don't clobber the results from a more recent getattr call...
    
    Signed-off-by: Trond Myklebust <[EMAIL PROTECTED]>
---
 fs/nfs/inode.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/fs/nfs/inode.c b/fs/nfs/inode.c
index 721e511..0d98074 100644
--- a/fs/nfs/inode.c
+++ b/fs/nfs/inode.c
@@ -915,14 +915,14 @@ int nfs_post_op_update_inode(struct inode *inode, struct 
nfs_fattr *fattr)
        struct nfs_inode *nfsi = NFS_I(inode);
        int status = 0;
 
-       spin_lock(&inode->i_lock);
        if (unlikely((fattr->valid & NFS_ATTR_FATTR) == 0)) {
+               spin_lock(&inode->i_lock);
                nfsi->cache_validity |= 
NFS_INO_INVALID_ACCESS|NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE;
+               spin_unlock(&inode->i_lock);
                goto out;
        }
-       status = nfs_update_inode(inode, fattr);
+       status = nfs_refresh_inode(inode, fattr);
 out:
-       spin_unlock(&inode->i_lock);
        return status;
 }
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to