aboutsummaryrefslogtreecommitdiffstats
path: root/mm/mm_init.c
diff options
context:
space:
mode:
Diffstat (limited to 'mm/mm_init.c')
-rw-r--r--mm/mm_init.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/mm/mm_init.c b/mm/mm_init.c
new file mode 100644
index 000000000000..c01d8dfec817
--- /dev/null
+++ b/mm/mm_init.c
@@ -0,0 +1,18 @@
1/*
2 * mm_init.c - Memory initialisation verification and debugging
3 *
4 * Copyright 2008 IBM Corporation, 2008
5 * Author Mel Gorman <mel@csn.ul.ie>
6 *
7 */
8#include <linux/kernel.h>
9#include <linux/init.h>
10
11int __meminitdata mminit_loglevel;
12
13static __init int set_mminit_loglevel(char *str)
14{
15 get_option(&str, &mminit_loglevel);
16 return 0;
17}
18early_param("mminit_loglevel", set_mminit_loglevel);