Commit-ID:  099c1130998fd2234a200b55d69713ec66d88325
Gitweb:     https://git.kernel.org/tip/099c1130998fd2234a200b55d69713ec66d88325
Author:     Mathieu Poirier <mathieu.poir...@linaro.org>
AuthorDate: Mon, 12 Feb 2018 13:32:35 -0700
Committer:  Arnaldo Carvalho de Melo <a...@redhat.com>
CommitDate: Fri, 16 Feb 2018 14:55:39 -0300

perf cs-etm: Freeing allocated memory

This patch frees all the memory allocated in function
cs_etm__alloc_queue().

Signed-off-by: Mathieu Poirier <mathieu.poir...@linaro.org>
Cc: Alexander Shishkin <alexander.shish...@linux.intel.com>
Cc: Jin Yao <yao....@linux.intel.com>
Cc: Namhyung Kim <namhy...@kernel.org>
Cc: Peter Zijlstra <pet...@infradead.org>
Cc: linux-arm-ker...@lists.infradead.org
Link: 
http://lkml.kernel.org/r/1518467557-18505-2-git-send-email-mathieu.poir...@linaro.org
Signed-off-by: Arnaldo Carvalho de Melo <a...@redhat.com>
---
 tools/perf/util/cs-etm.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/tools/perf/util/cs-etm.c b/tools/perf/util/cs-etm.c
index b9f0a53..f2c9877 100644
--- a/tools/perf/util/cs-etm.c
+++ b/tools/perf/util/cs-etm.c
@@ -174,6 +174,12 @@ static void cs_etm__free_queue(void *priv)
 {
        struct cs_etm_queue *etmq = priv;
 
+       if (!etmq)
+               return;
+
+       thread__zput(etmq->thread);
+       cs_etm_decoder__free(etmq->decoder);
+       zfree(&etmq->event_buf);
        free(etmq);
 }
 

Reply via email to