[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20150730133901.GC3504@mtj.duckdns.org>
Date: Thu, 30 Jul 2015 09:39:01 -0400
From: Tejun Heo <tj@...nel.org>
To: Petr Mladek <pmladek@...e.com>
Cc: akpm@...ux-foundation.org, davem@...emloft.net,
linux-kernel@...r.kernel.org, netdev@...r.kernel.org
Subject: Re: [PATCH] printk: Warn about dropped messages also on extended
consoles
Hello,
On Thu, Jul 30, 2015 at 01:28:52PM +0200, Petr Mladek wrote:
> The commit #6fe29354befe4c ("printk: implement support for extended console
> drivers") added an extra buffer to format messages for extended consoles.
> We need to put there also the warning about dropped messages, so it appears
> on these consoles.
I don't get it. Extended messages are all stamped with sequence
number and the gap in sequence number is a clear sign of missing
messages.
> diff --git a/kernel/printk/printk.c b/kernel/printk/printk.c
> index cf8c24203368..77d3d3698283 100644
> --- a/kernel/printk/printk.c
> +++ b/kernel/printk/printk.c
> @@ -2254,8 +2254,15 @@ again:
> }
>
> if (console_seq < log_first_seq) {
> - len = sprintf(text, "** %u printk messages dropped ** ",
> - (unsigned)(log_first_seq - console_seq));
> + static const char dropped_msg[] =
> + "** %u printk messages dropped ** ";
> + unsigned int dropped_count =
> + (unsigned int)(log_first_seq - console_seq);
> +
> + len = sprintf(text, dropped_msg, dropped_count);
> + if (nr_ext_console_drivers)
> + ext_len = sprintf(ext_text, dropped_msg,
> + dropped_count);
And you can't shove random message in front of the header.
Nacked-by: Tejun Heo <tj@...nel.org>
Thanks.
--
tejun
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists