mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
19 lines
395 B
C
19 lines
395 B
C
|
/*
|
||
|
* mm_init.c - Memory initialisation verification and debugging
|
||
|
*
|
||
|
* Copyright 2008 IBM Corporation, 2008
|
||
|
* Author Mel Gorman <mel@csn.ul.ie>
|
||
|
*
|
||
|
*/
|
||
|
#include <linux/kernel.h>
|
||
|
#include <linux/init.h>
|
||
|
|
||
|
int __meminitdata mminit_loglevel;
|
||
|
|
||
|
static __init int set_mminit_loglevel(char *str)
|
||
|
{
|
||
|
get_option(&str, &mminit_loglevel);
|
||
|
return 0;
|
||
|
}
|
||
|
early_param("mminit_loglevel", set_mminit_loglevel);
|