Commit e574b5fd authored by Namhyung Kim's avatar Namhyung Kim Committed by Linus Torvalds

rmap: make anon_vma_chain_free() static

Make anon_vma_chain_free() static.  It is called only in rmap.c and the
corresponding alloc function is already static.
Signed-off-by: default avatarNamhyung Kim <namhyung@gmail.com>
Cc: Andi Kleen <andi@firstfloor.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent e9a81a82
...@@ -80,7 +80,7 @@ static inline struct anon_vma_chain *anon_vma_chain_alloc(void) ...@@ -80,7 +80,7 @@ static inline struct anon_vma_chain *anon_vma_chain_alloc(void)
return kmem_cache_alloc(anon_vma_chain_cachep, GFP_KERNEL); return kmem_cache_alloc(anon_vma_chain_cachep, GFP_KERNEL);
} }
void anon_vma_chain_free(struct anon_vma_chain *anon_vma_chain) static void anon_vma_chain_free(struct anon_vma_chain *anon_vma_chain)
{ {
kmem_cache_free(anon_vma_chain_cachep, anon_vma_chain); kmem_cache_free(anon_vma_chain_cachep, anon_vma_chain);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment