Commit c119239b authored by Fabian Frederick's avatar Fabian Frederick Committed by Linus Torvalds

mm/zswap.c: add __init to zswap_entry_cache_destroy()

zswap_entry_cache_destroy() is only called by __init init_zswap().

This patch also fixes function name zswap_entry_cache_ s/destory/destroy
Signed-off-by: default avatarFabian Frederick <fabf@skynet.be>
Acked-by: default avatarSeth Jennings <sjennings@variantweb.net>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 6abb5a86
...@@ -212,7 +212,7 @@ static int zswap_entry_cache_create(void) ...@@ -212,7 +212,7 @@ static int zswap_entry_cache_create(void)
return zswap_entry_cache == NULL; return zswap_entry_cache == NULL;
} }
static void zswap_entry_cache_destory(void) static void __init zswap_entry_cache_destroy(void)
{ {
kmem_cache_destroy(zswap_entry_cache); kmem_cache_destroy(zswap_entry_cache);
} }
...@@ -941,7 +941,7 @@ static int __init init_zswap(void) ...@@ -941,7 +941,7 @@ static int __init init_zswap(void)
pcpufail: pcpufail:
zswap_comp_exit(); zswap_comp_exit();
compfail: compfail:
zswap_entry_cache_destory(); zswap_entry_cache_destroy();
cachefail: cachefail:
zpool_destroy_pool(zswap_pool); zpool_destroy_pool(zswap_pool);
error: error:
......
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