Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 20764ff1 authored by Jiri Slaby's avatar Jiri Slaby Committed by Ingo Molnar
Browse files

ftrace: fix printout



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

Signed-off-by: default avatarJiri Slaby <jirislaby@gmail.com>
Cc: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 2b1bce17
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -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();