If a message has been buffered, always use the saved timestamp reflecting the actual occurrence of the message. (There is no reason to use a possibly later timestamp.)
Signed-off-by: Jan H. Schönherr <schn...@cs.tu-berlin.de> --- This is a rather small change that could be folded into the next patch which changes cont_flush() a bit more. However, this way we have one patch per logical change. --- kernel/printk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/printk.c b/kernel/printk.c index 857ff7c..0927068 100644 --- a/kernel/printk.c +++ b/kernel/printk.c @@ -1414,7 +1414,7 @@ static void cont_flush(enum log_flags flags) * If no fragment of this line ever reached the console, * just submit it to the store and free the buffer. */ - log_store(cont.facility, cont.level, cont.flags, 0, + log_store(cont.facility, cont.level, cont.flags, cont.ts_nsec, NULL, 0, cont.buf, cont.len); cont.len = 0; } -- 1.8.0.316.g291341c.dirty -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/