aboutsummaryrefslogtreecommitdiffstats
path: root/mm/mm_init.c
diff options
context:
space:
mode:
authorNishanth Aravamudan <nacc@us.ibm.com>2008-07-24 00:27:39 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2008-07-24 13:47:17 -0400
commit5e9426abe209cf134adbbd62c5e73ef534eb73e9 (patch)
treed253e0130b30fe5b30ca27cb1e7d59dad86fa086 /mm/mm_init.c
parenta47a126ad5ea072aca3e611ed8f8dc6adad24bab (diff)
mm: remove mm_init compilation dependency on CONFIG_DEBUG_MEMORY_INIT
Towards the end of putting all core mm initialization in mm_init.c, I plan on putting the creation of a mm kobject in a function in that file. However, the file is currently only compiled if CONFIG_DEBUG_MEMORY_INIT is set. Remove this dependency, but put the code under an #ifdef on the same config option. This should result in no functional changes. Signed-off-by: Nishanth Aravamudan <nacc@us.ibm.com> Cc: Nick Piggin <nickpiggin@yahoo.com.au> Cc: Mel Gorman <mel@csn.ul.ie> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/mm_init.c')
-rw-r--r--mm/mm_init.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/mm/mm_init.c b/mm/mm_init.c
index ce445ca097e7..eaf0d3b47099 100644
--- a/mm/mm_init.c
+++ b/mm/mm_init.c
@@ -9,6 +9,7 @@
9#include <linux/init.h> 9#include <linux/init.h>
10#include "internal.h" 10#include "internal.h"
11 11
12#ifdef CONFIG_DEBUG_MEMORY_INIT
12int __meminitdata mminit_loglevel; 13int __meminitdata mminit_loglevel;
13 14
14/* The zonelists are simply reported, validation is manual. */ 15/* The zonelists are simply reported, validation is manual. */
@@ -132,3 +133,4 @@ static __init int set_mminit_loglevel(char *str)
132 return 0; 133 return 0;
133} 134}
134early_param("mminit_loglevel", set_mminit_loglevel); 135early_param("mminit_loglevel", set_mminit_loglevel);
136#endif /* CONFIG_DEBUG_MEMORY_INIT */