diff options
author | Ganesh Mahendran <[email protected]> | 2016-07-28 15:47:57 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2016-07-28 16:07:41 -0700 |
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/[email protected]
Signed-off-by: Ganesh Mahendran <[email protected]>
Cc: Sergey Senozhatsky <[email protected]>
Cc: Minchan Kim <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-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) cpu_notifier_register_done(); } -static void init_zs_size_classes(void) +static void __init init_zs_size_classes(void) { int nr; |