blob: c01d8dfec8177423f16fd9ec976eaf9e6f44f146 [file] [log] [blame]
Mel Gorman6b74ab92008-07-23 21:26:49 -07001/*
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);