diff options
author | Ganesh Mahendran <opensource.ganesh@gmail.com> | 2016-07-28 18:47:57 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-07-28 19:07:41 -0400 |
commit | 35b3445e97352732f0d64a7e629f629b1d81827e (patch) | |
tree | 86d20c44652aa58a0dfeca4182bf62cf62bd7caf | |
parent | fd8544639e3fdc0196707ffb57b90a48a8948647 (diff) |
mm/zsmalloc: add __init,__exit attribute
Add __init,__exit attribute for function that only called in module
init/exit to save memory.
Link: http://lkml.kernel.org/r/1467882338-4300-6-git-send-email-opensource.ganesh@gmail.com
Signed-off-by: Ganesh Mahendran <opensource.ganesh@gmail.com>
Cc: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
Cc: Minchan Kim <minchan@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | mm/zsmalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/zsmalloc.c b/mm/zsmalloc.c index acfdf69184a7..fa08236a9036 100644 --- a/mm/zsmalloc.c +++ b/mm/zsmalloc.c | |||
@@ -1341,7 +1341,7 @@ static void zs_unregister_cpu_notifier(void) | |||
1341 | cpu_notifier_register_done(); | 1341 | cpu_notifier_register_done(); |
1342 | } | 1342 | } |
1343 | 1343 | ||
1344 | static void init_zs_size_classes(void) | 1344 | static void __init init_zs_size_classes(void) |
1345 | { | 1345 | { |
1346 | int nr; | 1346 | int nr; |
1347 | 1347 | ||