diff options
Diffstat (limited to 'fs/dcache.c')
-rw-r--r-- | fs/dcache.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/dcache.c b/fs/dcache.c index fd4a428998ef..a7c67cee5d83 100644 --- a/fs/dcache.c +++ b/fs/dcache.c | |||
@@ -43,7 +43,7 @@ static __cacheline_aligned_in_smp DEFINE_SEQLOCK(rename_lock); | |||
43 | 43 | ||
44 | EXPORT_SYMBOL(dcache_lock); | 44 | EXPORT_SYMBOL(dcache_lock); |
45 | 45 | ||
46 | static kmem_cache_t *dentry_cache __read_mostly; | 46 | static struct kmem_cache *dentry_cache __read_mostly; |
47 | 47 | ||
48 | #define DNAME_INLINE_LEN (sizeof(struct dentry)-offsetof(struct dentry,d_iname)) | 48 | #define DNAME_INLINE_LEN (sizeof(struct dentry)-offsetof(struct dentry,d_iname)) |
49 | 49 | ||
@@ -2072,10 +2072,10 @@ static void __init dcache_init(unsigned long mempages) | |||
2072 | } | 2072 | } |
2073 | 2073 | ||
2074 | /* SLAB cache for __getname() consumers */ | 2074 | /* SLAB cache for __getname() consumers */ |
2075 | kmem_cache_t *names_cachep __read_mostly; | 2075 | struct kmem_cache *names_cachep __read_mostly; |
2076 | 2076 | ||
2077 | /* SLAB cache for file structures */ | 2077 | /* SLAB cache for file structures */ |
2078 | kmem_cache_t *filp_cachep __read_mostly; | 2078 | struct kmem_cache *filp_cachep __read_mostly; |
2079 | 2079 | ||
2080 | EXPORT_SYMBOL(d_genocide); | 2080 | EXPORT_SYMBOL(d_genocide); |
2081 | 2081 | ||