diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2007-10-08 14:10:31 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2007-10-09 17:20:45 -0400 |
commit | 9e08a3c5aec5b745e844328bcbc16458b6118faf (patch) | |
tree | 0715485e16ddee34478cdf1ac8432944f6cc354e /fs/nfs/nfs3proc.c | |
parent | 220bcc2afd7011b3e0569fc178331fa983c92c1b (diff) |
NFS: Use nfs_refresh_inode() in ops that aren't expected to change the inode
nfs_post_op_update_inode() is really only meant to be used if we expect the
inode and its attributes to have changed in some way.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/nfs3proc.c')
-rw-r--r-- | fs/nfs/nfs3proc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/nfs/nfs3proc.c b/fs/nfs/nfs3proc.c index 6e05f6c9c910..4cdc2361a669 100644 --- a/fs/nfs/nfs3proc.c +++ b/fs/nfs/nfs3proc.c | |||
@@ -777,8 +777,7 @@ static int nfs3_commit_done(struct rpc_task *task, struct nfs_write_data *data) | |||
777 | { | 777 | { |
778 | if (nfs3_async_handle_jukebox(task, data->inode)) | 778 | if (nfs3_async_handle_jukebox(task, data->inode)) |
779 | return -EAGAIN; | 779 | return -EAGAIN; |
780 | if (task->tk_status >= 0) | 780 | nfs_refresh_inode(data->inode, data->res.fattr); |
781 | nfs_post_op_update_inode(data->inode, data->res.fattr); | ||
782 | return 0; | 781 | return 0; |
783 | } | 782 | } |
784 | 783 | ||