diff options
Diffstat (limited to 'fs/nfs/file.c')
-rw-r--r-- | fs/nfs/file.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/nfs/file.c b/fs/nfs/file.c index 7ac89a845a5e..0213c21038fa 100644 --- a/fs/nfs/file.c +++ b/fs/nfs/file.c | |||
@@ -602,7 +602,8 @@ static int do_setlk(struct file *filp, int cmd, struct file_lock *fl) | |||
602 | * This makes locking act as a cache coherency point. | 602 | * This makes locking act as a cache coherency point. |
603 | */ | 603 | */ |
604 | nfs_sync_mapping(filp->f_mapping); | 604 | nfs_sync_mapping(filp->f_mapping); |
605 | nfs_zap_caches(inode); | 605 | if (!nfs_have_delegation(inode, FMODE_READ)) |
606 | nfs_zap_caches(inode); | ||
606 | out: | 607 | out: |
607 | return status; | 608 | return status; |
608 | } | 609 | } |