diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2011-01-03 13:51:39 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2011-01-03 13:51:39 -0500 |
commit | 70d544d0576775a2b3923a7e68cb49b0313d80c9 (patch) | |
tree | c848ffcc5b1146fc35d496472349d2e4795b0ff3 /tools/perf/builtin-stat.c | |
parent | 1e7972cc5c16e06f258b0278d8c9adfb5aa75c68 (diff) |
perf evsel: Delete the event selectors at exit
Freeing all the possibly allocated resources, reducing complexity
on each tool exit path.
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Cc: Tom Zanussi <tzanussi@gmail.com>
LKML-Reference: <new-submission>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-stat.c')
-rw-r--r-- | tools/perf/builtin-stat.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/perf/builtin-stat.c b/tools/perf/builtin-stat.c index 3e5f356a524..589ba3a9242 100644 --- a/tools/perf/builtin-stat.c +++ b/tools/perf/builtin-stat.c | |||
@@ -844,10 +844,8 @@ int cmd_stat(int argc, const char **argv, const char *prefix __used) | |||
844 | if (status != -1) | 844 | if (status != -1) |
845 | print_stat(argc, argv); | 845 | print_stat(argc, argv); |
846 | out_free_fd: | 846 | out_free_fd: |
847 | list_for_each_entry(pos, &evsel_list, node) { | 847 | list_for_each_entry(pos, &evsel_list, node) |
848 | perf_evsel__free_fd(pos); | ||
849 | perf_evsel__free_stat_priv(pos); | 848 | perf_evsel__free_stat_priv(pos); |
850 | } | ||
851 | out: | 849 | out: |
852 | return status; | 850 | return status; |
853 | } | 851 | } |