diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2013-01-24 21:01:50 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2013-01-25 10:49:29 -0500 |
commit | c0aab59f67ef47e52d151464c8dd16e7ae58d053 (patch) | |
tree | 10dfd9d86dd67a80e930d8e9625e378f01331227 /tools | |
parent | 56ab7140325c835c8bb53cf3bca0cf7b6e967f15 (diff) |
perf tests: Call machine__exit in the vmlinux matches kallsyms test
Removing leaks with valgrind.
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Namhyung Kim <namhyung@gmail.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/n/tip-x9hja7wxwexe8ca9v2j8qtlg@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perf/tests/vmlinux-kallsyms.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/perf/tests/vmlinux-kallsyms.c b/tools/perf/tests/vmlinux-kallsyms.c index a1a8442829b4..7b4c4d26d1ba 100644 --- a/tools/perf/tests/vmlinux-kallsyms.c +++ b/tools/perf/tests/vmlinux-kallsyms.c | |||
@@ -44,7 +44,7 @@ int test__vmlinux_matches_kallsyms(void) | |||
44 | */ | 44 | */ |
45 | if (machine__create_kernel_maps(&kallsyms) < 0) { | 45 | if (machine__create_kernel_maps(&kallsyms) < 0) { |
46 | pr_debug("machine__create_kernel_maps "); | 46 | pr_debug("machine__create_kernel_maps "); |
47 | return -1; | 47 | goto out; |
48 | } | 48 | } |
49 | 49 | ||
50 | /* | 50 | /* |
@@ -227,5 +227,7 @@ detour: | |||
227 | map__fprintf(pos, stderr); | 227 | map__fprintf(pos, stderr); |
228 | } | 228 | } |
229 | out: | 229 | out: |
230 | machine__exit(&kallsyms); | ||
231 | machine__exit(&vmlinux); | ||
230 | return err; | 232 | return err; |
231 | } | 233 | } |