mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Ganapatrao Kulkarni <gankulkarni@os.amperecomputing.com>
To: James Clark <james.clark@linaro.org>,
	linux-perf-users@vger.kernel.org, coresight@lists.linaro.org,
	leo.yan@arm.com, scclevenger@os.amperecomputing.com
Cc: Peter Zijlstra <peterz@infradead.org>,
	Ingo Molnar <mingo@redhat.com>,
	Arnaldo Carvalho de Melo <acme@kernel.org>,
	Namhyung Kim <namhyung@kernel.org>,
	Mark Rutland <mark.rutland@arm.com>,
	Alexander Shishkin <alexander.shishkin@linux.intel.com>,
	Jiri Olsa <jolsa@kernel.org>, Ian Rogers <irogers@google.com>,
	Adrian Hunter <adrian.hunter@intel.com>,
	"Liang, Kan" <kan.liang@linux.intel.com>,
	Suzuki K Poulose <suzuki.poulose@arm.com>,
	Mike Leach <mike.leach@linaro.org>,
	John Garry <john.g.garry@oracle.com>,
	Will Deacon <will@kernel.org>, Leo Yan <leo.yan@linux.dev>,
	Ben Gainey <ben.gainey@arm.com>,
	Ruidong Tian <tianruidong@linux.alibaba.com>,
	Benjamin Gray <bgray@linux.ibm.com>,
	Mathieu Poirier <mathieu.poirier@linaro.org>,
	linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	Ilkka Koskinen <ilkka@os.amperecomputing.com>
Subject: Re: [PATCH v3 0/7] perf: cs-etm: Coresight decode and disassembly improvements
Date: Wed, 18 Sep 2024 16:53:06 +0530	[thread overview]
Message-ID: <24e24324-cb41-4ae7-9584-e97684b12585@os.amperecomputing.com> (raw)
In-Reply-To: <20240916135743.1490403-1-james.clark@linaro.org>


Hi James,

On 16-09-2024 07:27 pm, James Clark wrote:
> A set of changes that came out of the issues reported here [1].
> 
>   * First 2 patches fix a decode bug in Perf and add support for new
>     consistency checks in OpenCSD
>   * The remaining ones make the disassembly script easier to test
>     and use. This also involves adding a new Python binding to
>     Perf to get a config value (perf_config_get())
> 
> [1]: https://lore.kernel.org/linux-arm-kernel/20240719092619.274730-1-gankulkarni@os.amperecomputing.com/
> 

Tried this series with below commands and issue is not seen as reported 
in [1].

record:
timeout 8s ./perf record -e cs_etm// -C 1 -o kcore --kcore dd 
if=/dev/zero of=/dev/null

decode:
./perf script -i ./kcore -s scripts/python/arm-cs-trace-disasm.py -- -d 
objdump -k kcore/kcore_dir/kcore

./perf script -i ./kcore -s scripts/python/arm-cs-trace-disasm.py -F 
cpu,event,ip,addr,sym -- -d objdump -k kcore/kcore_dir/kcore

Feel free to add for 1/7 and 2/7.
Tested-by: Ganapatrao Kulkarni <gankulkarni@os.amperecomputing.com>

> Changes since V2:
>    * Check validity of start stop arguments
>    * Make test work if Perf was installed
>    * Document that start and stop time are monotonic clock values
> 
> Changes since V1:
>    * Keep the flush function for discontinuities
>    * Still remove the flush when the buffer fills, but now add
>      cs_etm__end_block() for the end trace. That way we won't drop
>      the last branch stack if the instruction sample period wasn't
>      hit at the very end.
> 
> James Clark (7):
>    perf cs-etm: Don't flush when packet_queue fills up
>    perf cs-etm: Use new OpenCSD consistency checks
>    perf scripting python: Add function to get a config value
>    perf scripts python cs-etm: Update to use argparse
>    perf scripts python cs-etm: Improve arguments
>    perf scripts python cs-etm: Add start and stop arguments
>    perf test: cs-etm: Test Coresight disassembly script
> 
>   .../perf/Documentation/perf-script-python.txt |   2 +-
>   .../scripts/python/Perf-Trace-Util/Context.c  |  11 ++
>   .../scripts/python/arm-cs-trace-disasm.py     | 127 ++++++++++++++----
>   .../tests/shell/test_arm_coresight_disasm.sh  |  65 +++++++++
>   tools/perf/util/config.c                      |  22 +++
>   tools/perf/util/config.h                      |   1 +
>   .../perf/util/cs-etm-decoder/cs-etm-decoder.c |   7 +-
>   tools/perf/util/cs-etm.c                      |  25 +++-
>   8 files changed, 225 insertions(+), 35 deletions(-)
>   create mode 100755 tools/perf/tests/shell/test_arm_coresight_disasm.sh
> 

-- 
Thanks,
Ganapat/GK

  parent reply	other threads:[~2024-09-18 11:23 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-09-16 13:57 James Clark
2024-09-16 13:57 ` [PATCH v3 1/7] perf cs-etm: Don't flush when packet_queue fills up James Clark
2024-09-16 13:57 ` [PATCH v3 2/7] perf cs-etm: Use new OpenCSD consistency checks James Clark
2024-09-16 13:57 ` [PATCH v3 3/7] perf scripting python: Add function to get a config value James Clark
2024-09-16 13:57 ` [PATCH v3 4/7] perf scripts python cs-etm: Update to use argparse James Clark
2024-09-16 13:57 ` [PATCH v3 5/7] perf scripts python cs-etm: Improve arguments James Clark
2024-09-16 13:57 ` [PATCH v3 6/7] perf scripts python cs-etm: Add start and stop arguments James Clark
2024-09-16 13:57 ` [PATCH v3 7/7] perf test: cs-etm: Test Coresight disassembly script James Clark
2024-09-16 16:09   ` Leo Yan
2024-09-18 11:23 ` Ganapatrao Kulkarni [this message]
2024-09-20  8:14   ` [PATCH v3 0/7] perf: cs-etm: Coresight decode and disassembly improvements James Clark
2024-09-25 22:40 ` Namhyung Kim

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=24e24324-cb41-4ae7-9584-e97684b12585@os.amperecomputing.com \
    --to=gankulkarni@os.amperecomputing.com \
    --cc=acme@kernel.org \
    --cc=adrian.hunter@intel.com \
    --cc=alexander.shishkin@linux.intel.com \
    --cc=ben.gainey@arm.com \
    --cc=bgray@linux.ibm.com \
    --cc=coresight@lists.linaro.org \
    --cc=ilkka@os.amperecomputing.com \
    --cc=irogers@google.com \
    --cc=james.clark@linaro.org \
    --cc=john.g.garry@oracle.com \
    --cc=jolsa@kernel.org \
    --cc=kan.liang@linux.intel.com \
    --cc=leo.yan@arm.com \
    --cc=leo.yan@linux.dev \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-perf-users@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=mathieu.poirier@linaro.org \
    --cc=mike.leach@linaro.org \
    --cc=mingo@redhat.com \
    --cc=namhyung@kernel.org \
    --cc=peterz@infradead.org \
    --cc=scclevenger@os.amperecomputing.com \
    --cc=suzuki.poulose@arm.com \
    --cc=tianruidong@linux.alibaba.com \
    --cc=will@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®