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:
zhangwei(Jovi) 2013-04-29 16:17:16 -07:00 committed by Linus Torvalds
parent 2fb0815c9e
commit 07c65f4d1a
2 changed files with 7 additions and 20 deletions

View file

@ -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;