diff options
author | Namhyung Kim <[email protected]> | 2013-03-15 14:48:53 +0900 |
---|---|---|
committer | Arnaldo Carvalho de Melo <[email protected]> | 2013-03-15 13:06:12 -0300 |
commit | da522c17035a8415232d850b539ea60063fc7ecc (patch) | |
tree | c83a0cbde23080f1dc3679a2157793515c677a52 | |
parent | 9b5b7cdc5139fdcc30ee56d9cd162da60453f6d8 (diff) |
perf tests: Fixup return path of perf record test case
Add missing perf_evlist__close() function.
Signed-off-by: Namhyung Kim <[email protected]>
Cc: David Ahern <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: Paul Mackerras <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
-rw-r--r-- | tools/perf/tests/perf-record.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/perf/tests/perf-record.c b/tools/perf/tests/perf-record.c index ffab5a41ff0a..72d8881873b0 100644 --- a/tools/perf/tests/perf-record.c +++ b/tools/perf/tests/perf-record.c @@ -143,7 +143,7 @@ int test__PERF_RECORD(void) err = perf_evlist__mmap(evlist, opts.mmap_pages, false); if (err < 0) { pr_debug("perf_evlist__mmap: %s\n", strerror(errno)); - goto out_delete_maps; + goto out_close_evlist; } /* @@ -306,6 +306,8 @@ found_exit: } out_err: perf_evlist__munmap(evlist); +out_close_evlist: + perf_evlist__close(evlist); out_delete_maps: perf_evlist__delete_maps(evlist); out_delete_evlist: |