diff options
Diffstat (limited to 'fs/dcache.c')
-rw-r--r-- | fs/dcache.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/fs/dcache.c b/fs/dcache.c index d68631f18df1..d1bf5d8aeb5a 100644 --- a/fs/dcache.c +++ b/fs/dcache.c | |||
@@ -2052,12 +2052,8 @@ static void __init dcache_init(unsigned long mempages) | |||
2052 | * but it is probably not worth it because of the cache nature | 2052 | * but it is probably not worth it because of the cache nature |
2053 | * of the dcache. | 2053 | * of the dcache. |
2054 | */ | 2054 | */ |
2055 | dentry_cache = kmem_cache_create("dentry_cache", | 2055 | dentry_cache = KMEM_CACHE(dentry, |
2056 | sizeof(struct dentry), | 2056 | SLAB_RECLAIM_ACCOUNT|SLAB_PANIC|SLAB_MEM_SPREAD); |
2057 | 0, | ||
2058 | (SLAB_RECLAIM_ACCOUNT|SLAB_PANIC| | ||
2059 | SLAB_MEM_SPREAD), | ||
2060 | NULL, NULL); | ||
2061 | 2057 | ||
2062 | set_shrinker(DEFAULT_SEEKS, shrink_dcache_memory); | 2058 | set_shrinker(DEFAULT_SEEKS, shrink_dcache_memory); |
2063 | 2059 | ||