mirror of
https://github.com/hardkernel/linux.git
synced 2026-03-26 04:20:23 +09:00
perf env: Fix memory leak of cpu_pmu_caps
[ Upstream commitda6b7c6c06] ASan reports memory leaks while running: # perf test "83: Zstd perf.data compression/decompression" The first of the leaks is caused by env->cpu_pmu_caps not being freed. This patch adds the missing (z)free inside perf_env__exit. Signed-off-by: Riccardo Mancini <rickyman7@gmail.com> Fixes:6f91ea283a("perf header: Support CPU PMU capabilities") Cc: Ian Rogers <irogers@google.com> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Kan Liang <kan.liang@linux.intel.com> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Link: http://lore.kernel.org/lkml/6ba036a8220156ec1f3d6be3e5d25920f6145028.1626343282.git.rickyman7@gmail.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
a2f0da3af6
commit
2bfa3c53ea
@@ -183,6 +183,7 @@ void perf_env__exit(struct perf_env *env)
|
||||
zfree(&env->sibling_threads);
|
||||
zfree(&env->pmu_mappings);
|
||||
zfree(&env->cpu);
|
||||
zfree(&env->cpu_pmu_caps);
|
||||
zfree(&env->numa_map);
|
||||
|
||||
for (i = 0; i < env->nr_numa_nodes; i++)
|
||||
|
||||
Reference in New Issue
Block a user