diff options
author | Rasmus Villemoes <[email protected]> | 2015-02-12 15:00:09 -0800 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2015-02-12 18:54:11 -0800 |
commit | 0e2342c709aa568b90cde3387d6e588ca862a0ba (patch) | |
tree | 7bea0415a74e601b44355b2c2d5418a92932428c | |
parent | 061f67bc4d053e03970a268fca99a55b6859f301 (diff) |
mm/mm_init.c: park mminit_verify_zonelist as __init
The only caller of mminit_verify_zonelist is build_all_zonelists_init,
which is annotated with __init, so it should be safe to also mark the
former as __init, saving ~400 bytes of .text.
Signed-off-by: Rasmus Villemoes <[email protected]>
Cc: Vlastimil Babka <[email protected]>
Cc: Rik van Riel <[email protected]>
Cc: Joonsoo Kim <[email protected]>
Cc: David Rientjes <[email protected]>
Cc: Vishnu Pratap Singh <[email protected]>
Cc: Pintu Kumar <[email protected]>
Cc: Michal Nazarewicz <[email protected]>
Cc: Mel Gorman <[email protected]>
Cc: Paul Gortmaker <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Tim Chen <[email protected]>
Cc: Hugh Dickins <[email protected]>
Cc: Li Zefan <[email protected]>
Cc: Tejun Heo <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | mm/mm_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/mm_init.c b/mm/mm_init.c index 4074caf9936b..e17c758b27bf 100644 --- a/mm/mm_init.c +++ b/mm/mm_init.c @@ -21,7 +21,7 @@ int mminit_loglevel; #endif /* The zonelists are simply reported, validation is manual. */ -void mminit_verify_zonelist(void) +void __init mminit_verify_zonelist(void) { int nid; |