Эх сурвалжийг харах

NFS: Allow files that are open for write to invalidate caches

 Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust 19 жил өмнө
parent
commit
bec273b491
1 өөрчлөгдсөн 0 нэмэгдсэн , 4 устгасан
  1. 0 4
      fs/nfs/inode.c

+ 0 - 4
fs/nfs/inode.c

@@ -1057,15 +1057,11 @@ int nfs_open(struct inode *inode, struct file *filp)
 	ctx->mode = filp->f_mode;
 	nfs_file_set_open_context(filp, ctx);
 	put_nfs_open_context(ctx);
-	if ((filp->f_mode & FMODE_WRITE) != 0)
-		nfs_begin_data_update(inode);
 	return 0;
 }
 
 int nfs_release(struct inode *inode, struct file *filp)
 {
-	if ((filp->f_mode & FMODE_WRITE) != 0)
-		nfs_end_data_update(inode);
 	nfs_file_clear_open_context(filp);
 	return 0;
 }