diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2005-12-03 15:20:17 -0500 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2005-12-03 15:20:17 -0500 |
commit | 5ba7cc4801ae0fe74b6e0160f008521ae71d9f5d (patch) | |
tree | 8e7c236d2adeee1c23d99a2e7d20203cdc37a4e6 /fs/nfs/proc.c | |
parent | bb713d6d38f7be4f4e7d790cddb1b076e7da6699 (diff) | |
download | linux-5ba7cc4801ae0fe74b6e0160f008521ae71d9f5d.tar.gz linux-5ba7cc4801ae0fe74b6e0160f008521ae71d9f5d.tar.bz2 linux-5ba7cc4801ae0fe74b6e0160f008521ae71d9f5d.zip |
NFS: Fix post-op attribute revalidation...
- Missing nfs_mark_for_revalidate in nfs_proc_link()
- Missing nfs_mark_for_revalidate in nfs_rename()
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/proc.c')
-rw-r--r-- | fs/nfs/proc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/nfs/proc.c b/fs/nfs/proc.c index a48a003242c0..e1e3ca5d746b 100644 --- a/fs/nfs/proc.c +++ b/fs/nfs/proc.c @@ -375,6 +375,7 @@ nfs_proc_link(struct inode *inode, struct inode *dir, struct qstr *name) dprintk("NFS call link %s\n", name->name); status = rpc_call(NFS_CLIENT(inode), NFSPROC_LINK, &arg, NULL, 0); + nfs_mark_for_revalidate(inode); nfs_mark_for_revalidate(dir); dprintk("NFS reply link: %d\n", status); return status; |