diff options
author | Richard Weinberger <richard@nod.at> | 2017-05-17 00:20:26 +0200 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2017-07-14 22:48:43 +0200 |
commit | e996bfd4287eb7df2354764d47677af08f5867fa (patch) | |
tree | 6335895e1b0e4c7dee284437b70cea0ad076fb8c /fs/ubifs/super.c | |
parent | ubifs: don't bother checking for encryption key in ->mmap() (diff) | |
download | linux-e996bfd4287eb7df2354764d47677af08f5867fa.tar.xz linux-e996bfd4287eb7df2354764d47677af08f5867fa.zip |
ubifs: Unexport ubifs_inode_slab
This SLAB is only being used in super.c, there is no need to expose
it into the global namespace.
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'fs/ubifs/super.c')
-rw-r--r-- | fs/ubifs/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ubifs/super.c b/fs/ubifs/super.c index cf4cc99b75b5..ce684f367f9c 100644 --- a/fs/ubifs/super.c +++ b/fs/ubifs/super.c @@ -45,7 +45,7 @@ #define UBIFS_KMALLOC_OK (128*1024) /* Slab cache for UBIFS inodes */ -struct kmem_cache *ubifs_inode_slab; +static struct kmem_cache *ubifs_inode_slab; /* UBIFS TNC shrinker description */ static struct shrinker ubifs_shrinker_info = { |