mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
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:
parent
2b1bce1787
commit
20764ff1ef
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user