aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/cs-etm.c
diff options
context:
space:
mode:
authorMathieu Poirier <mathieu.poirier@linaro.org>2019-02-12 10:16:12 -0700
committerArnaldo Carvalho de Melo <acme@redhat.com>2019-02-14 15:18:07 -0300
commite4aa592d183228e5fbd3b49a317248c2895d3819 (patch)
tree40724702137455d06c71c23e3f9bb341644b0f9c /tools/perf/util/cs-etm.c
parentperf cs-etm: Introducing function cs_etm__init_trace_params() (diff)
downloadlinux-dev-e4aa592d183228e5fbd3b49a317248c2895d3819.tar.xz
linux-dev-e4aa592d183228e5fbd3b49a317248c2895d3819.zip
perf cs-etm: Fix erroneous comment
The comment just before initialising the decoder is plane wrong since it is part of the decoding queue setup function and the operation code specifically mention that trace data is to be decoded rather than printed out. This patch simply fix the comment to prevent people from getting really confused. Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Leo Yan <leo.yan@linaro.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Suzuki K Poulouse <suzuki.poulose@arm.com> Cc: linux-arm-kernel@lists.infradead.org Link: http://lkml.kernel.org/r/20190212171618.25355-8-mathieu.poirier@linaro.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/cs-etm.c')
-rw-r--r--tools/perf/util/cs-etm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/cs-etm.c b/tools/perf/util/cs-etm.c
index f3a6dfaf3026..4cc9fce97a86 100644
--- a/tools/perf/util/cs-etm.c
+++ b/tools/perf/util/cs-etm.c
@@ -459,7 +459,7 @@ static struct cs_etm_queue *cs_etm__alloc_queue(struct cs_etm_auxtrace *etm,
if (cs_etm__init_trace_params(t_params, etm))
goto out_free;
- /* Set decoder parameters to simply print the trace packets */
+ /* Set decoder parameters to decode trace packets */
if (cs_etm__init_decoder_params(&d_params, etmq,
CS_ETM_OPERATION_DECODE))
goto out_free;