mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-04 20:19:47 +08:00
debug: turn ignore_loglevel into an early param
i was debugging early crashes and wondered where all the printks went. The reason: ignore_loglevel_setup() was not called yet ... Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
5aff0531ee
commit
c4772d9930
@ -455,10 +455,10 @@ static int __init ignore_loglevel_setup(char *str)
|
|||||||
ignore_loglevel = 1;
|
ignore_loglevel = 1;
|
||||||
printk(KERN_INFO "debug: ignoring loglevel setting.\n");
|
printk(KERN_INFO "debug: ignoring loglevel setting.\n");
|
||||||
|
|
||||||
return 1;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
__setup("ignore_loglevel", ignore_loglevel_setup);
|
early_param("ignore_loglevel", ignore_loglevel_setup);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Write out chars from start to end - 1 inclusive
|
* Write out chars from start to end - 1 inclusive
|
||||||
|
Loading…
Reference in New Issue
Block a user