aboutsummaryrefslogtreecommitdiffstats
path: root/fs/dcache.c
diff options
context:
space:
mode:
authorPaul Jackson <pj@sgi.com>2006-03-24 06:16:09 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2006-03-24 10:33:23 -0500
commitb0196009d8c3ecf6ea6ec080c63d2ccc146e7ad9 (patch)
tree3fcb06af54faf92fa5d9d82d5659762d2b742e1c /fs/dcache.c
parentc61afb181c649754ea221f104e268cbacfc993e3 (diff)
[PATCH] cpuset memory spread slab cache hooks
Change the kmem_cache_create calls for certain slab caches to support cpuset memory spreading. See the previous patches, cpuset_mem_spread, for an explanation of cpuset memory spreading, and cpuset_mem_spread_slab_cache for the slab cache support for memory spreading. The slab caches marked for now are: dentry_cache, inode_cache, some xfs slab caches, and buffer_head. This list may change over time. In particular, other file system types that are used extensively on large NUMA systems may want to allow for spreading their directory and inode slab cache entries. Signed-off-by: Paul Jackson <pj@sgi.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/dcache.c')
-rw-r--r--fs/dcache.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/dcache.c b/fs/dcache.c
index 11dc83092d4a..653f64ce98e2 100644
--- a/fs/dcache.c
+++ b/fs/dcache.c
@@ -1682,7 +1682,8 @@ static void __init dcache_init(unsigned long mempages)
1682 dentry_cache = kmem_cache_create("dentry_cache", 1682 dentry_cache = kmem_cache_create("dentry_cache",
1683 sizeof(struct dentry), 1683 sizeof(struct dentry),
1684 0, 1684 0,
1685 SLAB_RECLAIM_ACCOUNT|SLAB_PANIC, 1685 (SLAB_RECLAIM_ACCOUNT|SLAB_PANIC|
1686 SLAB_MEM_SPREAD),
1686 NULL, NULL); 1687 NULL, NULL);
1687 1688
1688 set_shrinker(DEFAULT_SEEKS, shrink_dcache_memory); 1689 set_shrinker(DEFAULT_SEEKS, shrink_dcache_memory);