mirror of
https://github.com/torvalds/linux.git
synced 2026-05-31 18:43:33 +02:00
perf stat: Fix affinity memory leaks on error path
Missed cleanup when an error occurs.
Fixes: 49de179577 ("perf stat: No need to setup affinities when starting a workload")
Signed-off-by: Ian Rogers <irogers@google.com>
Link: https://lore.kernel.org/r/20241001052327.7052-2-irogers@google.com
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
This commit is contained in:
parent
8d7f85e323
commit
7f6ccb70e4
|
|
@ -827,6 +827,7 @@ static int __run_perf_stat(int argc, const char **argv, int run_idx)
|
|||
}
|
||||
}
|
||||
affinity__cleanup(affinity);
|
||||
affinity = NULL;
|
||||
|
||||
evlist__for_each_entry(evsel_list, counter) {
|
||||
if (!counter->supported) {
|
||||
|
|
@ -965,6 +966,7 @@ static int __run_perf_stat(int argc, const char **argv, int run_idx)
|
|||
if (forks)
|
||||
evlist__cancel_workload(evsel_list);
|
||||
|
||||
affinity__cleanup(affinity);
|
||||
return err;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user