NFS: Change attribute updates should set NFS_INO_REVAL_PAGECACHE
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
This commit is contained in:
parent
4124bbc521
commit
6a4506c0b5
1 changed files with 5 additions and 1 deletions
|
@ -1312,7 +1312,11 @@ static int nfs_update_inode(struct inode *inode, struct nfs_fattr *fattr)
|
||||||
if (inode->i_version != fattr->change_attr) {
|
if (inode->i_version != fattr->change_attr) {
|
||||||
dprintk("NFS: change_attr change on server for file %s/%ld\n",
|
dprintk("NFS: change_attr change on server for file %s/%ld\n",
|
||||||
inode->i_sb->s_id, inode->i_ino);
|
inode->i_sb->s_id, inode->i_ino);
|
||||||
invalid |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA|NFS_INO_INVALID_ACCESS|NFS_INO_INVALID_ACL;
|
invalid |= NFS_INO_INVALID_ATTR
|
||||||
|
| NFS_INO_INVALID_DATA
|
||||||
|
| NFS_INO_INVALID_ACCESS
|
||||||
|
| NFS_INO_INVALID_ACL
|
||||||
|
| NFS_INO_REVAL_PAGECACHE;
|
||||||
if (S_ISDIR(inode->i_mode))
|
if (S_ISDIR(inode->i_mode))
|
||||||
nfs_force_lookup_revalidate(inode);
|
nfs_force_lookup_revalidate(inode);
|
||||||
inode->i_version = fattr->change_attr;
|
inode->i_version = fattr->change_attr;
|
||||||
|
|
Loading…
Add table
Reference in a new issue