[PATCH v1 09/20] perf report: Avoid thread leak
Ian Rogers
irogers at google.com
Tue Jun 6 18:43:42 PDT 2023
Caught with address sanitizer and reference count checking.
Signed-off-by: Ian Rogers <irogers at google.com>
---
tools/perf/builtin-report.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c
index 0b091a8983a5..a31a23af5547 100644
--- a/tools/perf/builtin-report.c
+++ b/tools/perf/builtin-report.c
@@ -839,6 +839,7 @@ static struct task *tasks_list(struct task *task, struct machine *machine)
return ERR_PTR(-ENOENT);
parent_task = thread__priv(parent_thread);
+ thread__put(parent_thread);
list_add_tail(&task->list, &parent_task->children);
return tasks_list(parent_task, machine);
}
--
2.41.0.rc0.172.g3f132b7071-goog
More information about the linux-arm-kernel
mailing list