diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2012-12-14 14:36:36 -0500 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2012-12-14 14:36:36 -0500 |
commit | eed9935745cc44071043ec8c4cde64c820b5c601 (patch) | |
tree | cdbfb893753acd43fddee09a5d34b16e2422cd34 /fs/nfs/inode.c | |
parent | 48d7a57693af660666c4afdc54c09b2f9655e260 (diff) | |
download | linux-exynos-eed9935745cc44071043ec8c4cde64c820b5c601.tar.gz linux-exynos-eed9935745cc44071043ec8c4cde64c820b5c601.tar.bz2 linux-exynos-eed9935745cc44071043ec8c4cde64c820b5c601.zip |
NFS: Ensure that we always drop inodes that have been marked as stale
There is no need to cache stale inodes.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/inode.c')
-rw-r--r-- | fs/nfs/inode.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/fs/nfs/inode.c b/fs/nfs/inode.c index 117183b1ee09..2faae14d89f4 100644 --- a/fs/nfs/inode.c +++ b/fs/nfs/inode.c @@ -107,6 +107,12 @@ u64 nfs_compat_user_ino64(u64 fileid) return ino; } +int nfs_drop_inode(struct inode *inode) +{ + return NFS_STALE(inode) || generic_drop_inode(inode); +} +EXPORT_SYMBOL_GPL(nfs_drop_inode); + void nfs_clear_inode(struct inode *inode) { /* |