@@ -3069,6 +3069,7 @@ void d_tmpfile(struct dentry *dentry, struct inode *inode)
}
EXPORT_SYMBOL(d_tmpfile);
+#ifdef CONFIG_DCACHE_SMO
/*
* d_isolate() - Dentry isolation callback function.
* @s: The dentry cache.
@@ -3136,6 +3137,7 @@ static void d_partial_shrink(struct kmem_cache *s, void **v, int nr,
if (!list_empty(&dispose))
shrink_dentry_list(&dispose);
}
+#endif /* CONFIG_DCACHE_SMO */
static __initdata unsigned long dhash_entries;
static int __init set_dhash_entries(char *str)
@@ -3182,7 +3184,9 @@ static void __init dcache_init(void)
sizeof_field(struct dentry, d_iname),
dcache_ctor);
+#ifdef CONFIG_DCACHE_SMO
kmem_cache_setup_mobility(dentry_cache, d_isolate, d_partial_shrink);
+#endif
/* Hash may have been set up in dcache_init_early */
if (!hashdist)
@@ -265,6 +265,13 @@ config SMO_NODE
help
On NUMA systems enable moving objects to and from a specified node.
+config DCACHE_SMO
+ bool "Enable Slab Movable Objects for the dcache"
+ depends on SLUB
+ help
+ Under memory pressure we can try to free dentry slab cache objects from
+ the partial slab list if this is enabled.
+
config PHYS_ADDR_T_64BIT
def_bool 64BIT
In an attempt to make the SMO patchset as non-invasive as possible add a config option CONFIG_DCACHE_SMO (under "Memory Management options") for enabling SMO for the DCACHE. Whithout this option dcache constructor is used but no other code is built in, with this option enabled slab mobility is enabled and the isolate/migrate functions are built in. Add CONFIG_DCACHE_SMO to guard the partial shrinking of the dcache via Slab Movable Objects infrastructure. Signed-off-by: Tobin C. Harding <tobin@kernel.org> --- fs/dcache.c | 4 ++++ mm/Kconfig | 7 +++++++ 2 files changed, 11 insertions(+)