aboutsummaryrefslogtreecommitdiffstats
path: root/fs/efs
diff options
context:
space:
mode:
authorFabian Frederick <fabf@skynet.be>2014-04-03 17:49:33 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2014-04-03 19:21:16 -0400
commit7a42d4b6a10c93ff15cff4f09c5a2d65877fa6ba (patch)
tree94f6b267bdcc875258a08153be562480c60b046d /fs/efs
parentb00e48148e99a20c3d81346390d60c7d23826f61 (diff)
fs/efs/super.c: add __init to init_inodecache()
init_inodecache is only called by __init init_efs_fs. Signed-off-by: Fabian Frederick <fabf@skynet.be> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/efs')
-rw-r--r--fs/efs/super.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/efs/super.c b/fs/efs/super.c
index 50215bbd6463..f8def1acf08c 100644
--- a/fs/efs/super.c
+++ b/fs/efs/super.c
@@ -91,7 +91,7 @@ static void init_once(void *foo)
91 inode_init_once(&ei->vfs_inode); 91 inode_init_once(&ei->vfs_inode);
92} 92}
93 93
94static int init_inodecache(void) 94static int __init init_inodecache(void)
95{ 95{
96 efs_inode_cachep = kmem_cache_create("efs_inode_cache", 96 efs_inode_cachep = kmem_cache_create("efs_inode_cache",
97 sizeof(struct efs_inode_info), 97 sizeof(struct efs_inode_info),