dect
/
linux-2.6
Archived
13
0
Fork 0

ftrace: fix printout

Do not print loglevel before "entries of %ld bytes". Move it to the previous
pr_info.

Signed-off-by: Jiri Slaby <jirislaby@gmail.com>
Cc: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
Jiri Slaby 2008-06-12 11:27:03 +02:00 committed by Ingo Molnar
parent 2b1bce1787
commit 20764ff1ef
1 changed files with 2 additions and 3 deletions

View File

@ -3051,9 +3051,8 @@ __init static int tracer_alloc_buffers(void)
}
max_tr.entries = global_trace.entries;
pr_info("tracer: %d pages allocated for %ld",
pages, trace_nr_entries);
pr_info(" entries of %ld bytes\n", (long)TRACE_ENTRY_SIZE);
pr_info("tracer: %d pages allocated for %ld entries of %ld bytes\n",
pages, trace_nr_entries, (long)TRACE_ENTRY_SIZE);
pr_info(" actual entries %ld\n", global_trace.entries);
tracer_init_debugfs();