mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-07 04:09:21 +00:00
printk: remember the message level for multi-line output
printk(KERN_ALERT "Danger Will Robinson!\nAlien Approaching!\n"); At present this will result in one message at ALERT level and one at the current default message loglevel (e.g. WARNING). This is non-intuitive. Modify vprintk() to remember the message loglevel each time it is specified and use it for subsequent lines of output which do not specify one, within the same call to printk. Signed-off-by: Nick Andrew <nick@nick-andrew.net> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
parent
ac60ad7413
commit
0915930805
1 changed files with 1 additions and 1 deletions
|
@ -661,6 +661,7 @@ static char printk_buf[1024];
|
|||
asmlinkage int vprintk(const char *fmt, va_list args)
|
||||
{
|
||||
int printed_len = 0;
|
||||
int current_log_level = default_message_loglevel;
|
||||
unsigned long flags;
|
||||
int this_cpu;
|
||||
char *p;
|
||||
|
@ -710,7 +711,6 @@ asmlinkage int vprintk(const char *fmt, va_list args)
|
|||
*/
|
||||
for (p = printk_buf; *p; p++) {
|
||||
if (new_text_line) {
|
||||
int current_log_level = default_message_loglevel;
|
||||
/* If a token, set current_log_level and skip over */
|
||||
if (p[0] == '<' && p[1] >= '0' && p[1] <= '7' &&
|
||||
p[2] == '>') {
|
||||
|
|
Loading…
Reference in a new issue