printk/tracing: rework console tracing
Commit 7ff9554bb5
("printk: convert byte-buffer to variable-length
record buffer") removed start and end parameters from
call_console_drivers, but those parameters still exist in
include/trace/events/printk.h.
Without start and end parameters handling, printk tracing became more
simple as: trace_console(text, len);
Signed-off-by: zhangwei(Jovi) <jovi.zhangwei@huawei.com>
Acked-by: Steven Rostedt <rostedt@goodmis.org>
Acked-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Kay Sievers <kay@vrfy.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:

committed by
Linus Torvalds

parent
2fb0815c9e
commit
07c65f4d1a
@@ -1265,7 +1265,7 @@ static void call_console_drivers(int level, const char *text, size_t len)
|
||||
{
|
||||
struct console *con;
|
||||
|
||||
trace_console(text, 0, len, len);
|
||||
trace_console(text, len);
|
||||
|
||||
if (level >= console_loglevel && !ignore_loglevel)
|
||||
return;
|
||||
|
Reference in New Issue
Block a user