| 123456789101112131415161718 |
- /*
- * 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);
|