ceph: Mark the file cache as unreclaimable
authorNikolay Borisov <n.borisov.lkml@gmail.com>
Mon, 25 Jul 2016 17:12:13 +0000 (20:12 +0300)
committerIlya Dryomov <idryomov@gmail.com>
Thu, 28 Jul 2016 01:00:45 +0000 (03:00 +0200)
Ceph creates multiple caches with the SLAB_RECLAIMABLE flag set, so
that it can satisfy its internal needs. Inspecting the code shows that
most of the caches are indeed reclaimable since they are directly
related to the generic inode/dentry shrinkers. However, one of the
cache used to satisfy struct file is not reclaimable since its
entries are freed only when the last reference to the file is
dropped. If a heavily loaded node opens a lot of files it can
introduce non-trivial discrepancies between memory shown as reclaimable
and what is actually reclaimed when drop_caches is used.

Fix this by removing the reclaimable flag for the file's cache.

Signed-off-by: Nikolay Borisov <n.borisov.lkml@gmail.com>
Signed-off-by: Yan, Zheng <zyan@redhat.com>
fs/ceph/super.c

index 7736a931376ed48a49d0593472454519f6a9a249..e247f6f0feb7290c5975b5fac068fc19b4887f6f 100644 (file)
@@ -686,8 +686,8 @@ static int __init init_caches(void)
        if (ceph_dentry_cachep == NULL)
                goto bad_dentry;
 
-       ceph_file_cachep = KMEM_CACHE(ceph_file_info,
-                                     SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
+       ceph_file_cachep = KMEM_CACHE(ceph_file_info, SLAB_MEM_SPREAD);
+
        if (ceph_file_cachep == NULL)
                goto bad_file;
 
This page took 0.026077 seconds and 5 git commands to generate.