diff options
author | Yan, Zheng <zheng.z.yan@intel.com> | 2013-09-20 15:55:31 +0400 |
---|---|---|
committer | Sage Weil <sage@inktank.com> | 2013-12-13 21:13:16 +0400 |
commit | 9f12bd119e408388233e7aeb1152f372a8b5dcad (patch) | |
tree | 9cf2b88f6c466ec72a52be088d1db3ab33b60906 /fs/ceph/super.c | |
parent | 56f91aad69444d650237295f68c195b74d888d95 (diff) | |
download | linux-9f12bd119e408388233e7aeb1152f372a8b5dcad.tar.xz |
ceph: drop unconnected inodes
Positve dentry and corresponding inode are always accompanied in MDS reply.
So no need to keep inode in the cache after dropping all its aliases.
Signed-off-by: Yan, Zheng <zheng.z.yan@intel.com>
Reviewed-by: Sage Weil <sage@inktank.com>
Diffstat (limited to 'fs/ceph/super.c')
-rw-r--r-- | fs/ceph/super.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ceph/super.c b/fs/ceph/super.c index 6a0951e43044..e58bd4a23bfb 100644 --- a/fs/ceph/super.c +++ b/fs/ceph/super.c @@ -686,6 +686,7 @@ static const struct super_operations ceph_super_ops = { .alloc_inode = ceph_alloc_inode, .destroy_inode = ceph_destroy_inode, .write_inode = ceph_write_inode, + .drop_inode = ceph_drop_inode, .sync_fs = ceph_sync_fs, .put_super = ceph_put_super, .show_options = ceph_show_options, |