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

Commit 7c572ac0 authored by Frédéric Weisbecker's avatar Frédéric Weisbecker Committed by Ingo Molnar
Browse files

tracing/ftrace: don't consume unhandled entries by boot tracer



When the boot tracer can't handle an entry output, it returns 1.
It should return 0 to relay on other output functions.

Signed-off-by: default avatarFrederic Weisbecker <fweisbec@gmail.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 3ce2b920
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -47,7 +47,7 @@ static void boot_trace_ctrl_update(struct trace_array *tr)

static int initcall_print_line(struct trace_iterator *iter)
{
	int ret = 1;
	int ret = 0;
	struct trace_entry *entry = iter->ent;
	struct boot_trace *it = &entry->field.initcall;
	struct trace_seq *s = &iter->seq;