linux-perf-users.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Arnaldo Carvalho de Melo <acme@kernel.org>
To: Carsten Haitzler <carsten.haitzler@foss.arm.com>
Cc: coresight@lists.linaro.org, mathieu.poirier@linaro.org,
	mike.leach@linaro.org, linux-perf-users@vger.kernel.org
Subject: Re: [PATCH v9 00/13] perf: test: Add trace data quality tests for CoreSight
Date: Wed, 5 Oct 2022 15:35:43 -0300	[thread overview]
Message-ID: <Yz3Of4+rs1ZB3n8t@kernel.org> (raw)
In-Reply-To: <28ccecb4-46dc-41e8-5dce-efd847d11fc4@foss.arm.com>

Em Wed, Oct 05, 2022 at 09:36:01AM +0100, Carsten Haitzler escreveu:
> Ping? I didn't see an ACK or NAK?

I need to get the board I got at Kernel Recipes running to check if I
can test this patchkit with it, meanwhile, Leo, Mathieu, James, can
someone from the ARM camp continue reviewing this kit?

- Arnaldo
 
> On 9/9/22 16:27, carsten.haitzler@foss.arm.com wrote:
> > From: Carsten Haitzler <carsten.haitzler@arm.com>
> > 
> > This series adds more test cases to perf test as well as new
> > infrastructure for testing coresight data quality to ensure the data
> > coming out of the kernel via perf actually contains useful information.
> > 
> > Signed-off-by: Carsten Haitzler <carsten.haitzler@arm.com>
> > 
> > 
> > Carsten Haitzler (13):
> >    perf test: Add CoreSight shell lib shared code for future tests
> >    perf test: Add build infra for perf test tools for CoreSight tests
> >    perf test: Add asm pureloop test tool
> >    perf test: Add asm pureloop test shell script
> >    perf test: Add git ignore for perf data generated by the CoreSight
> >      tests
> >    perf test: Add memcpy thread test tool
> >    perf test: Add memcpy thread test shell script
> >    perf test: Add thread loop test tool
> >    perf test: Add thread loop test shell scripts
> >    perf test: Add unroll thread test tool
> >    perf test: Add unroll thread test shell script
> >    perf test: Add git ignore for tmp and output files of CoreSight tests
> >    perf test: Add relevant documentation about CoreSight testing
> > 
> >   .../trace/coresight/coresight-perf.rst        | 158 ++++++++++++++++++
> >   MAINTAINERS                                   |   1 +
> >   tools/perf/.gitignore                         |   6 +-
> >   .../perf/Documentation/perf-arm-coresight.txt |   5 +
> >   tools/perf/Makefile.config                    |   2 +
> >   tools/perf/Makefile.perf                      |  15 +-
> >   tools/perf/tests/shell/coresight/Makefile     |  29 ++++
> >   .../tests/shell/coresight/Makefile.miniconfig |  14 ++
> >   .../tests/shell/coresight/asm_pure_loop.sh    |  18 ++
> >   .../shell/coresight/asm_pure_loop/.gitignore  |   1 +
> >   .../shell/coresight/asm_pure_loop/Makefile    |  34 ++++
> >   .../coresight/asm_pure_loop/asm_pure_loop.S   |  28 ++++
> >   .../shell/coresight/memcpy_thread/.gitignore  |   1 +
> >   .../shell/coresight/memcpy_thread/Makefile    |  33 ++++
> >   .../coresight/memcpy_thread/memcpy_thread.c   |  79 +++++++++
> >   .../shell/coresight/memcpy_thread_16k_10.sh   |  18 ++
> >   .../shell/coresight/thread_loop/.gitignore    |   1 +
> >   .../shell/coresight/thread_loop/Makefile      |  33 ++++
> >   .../shell/coresight/thread_loop/thread_loop.c |  86 ++++++++++
> >   .../coresight/thread_loop_check_tid_10.sh     |  19 +++
> >   .../coresight/thread_loop_check_tid_2.sh      |  19 +++
> >   .../coresight/unroll_loop_thread/.gitignore   |   1 +
> >   .../coresight/unroll_loop_thread/Makefile     |  33 ++++
> >   .../unroll_loop_thread/unroll_loop_thread.c   |  74 ++++++++
> >   .../shell/coresight/unroll_loop_thread_10.sh  |  18 ++
> >   tools/perf/tests/shell/lib/coresight.sh       | 132 +++++++++++++++
> >   26 files changed, 854 insertions(+), 4 deletions(-)
> >   create mode 100644 Documentation/trace/coresight/coresight-perf.rst
> >   create mode 100644 tools/perf/Documentation/perf-arm-coresight.txt
> >   create mode 100644 tools/perf/tests/shell/coresight/Makefile
> >   create mode 100644 tools/perf/tests/shell/coresight/Makefile.miniconfig
> >   create mode 100755 tools/perf/tests/shell/coresight/asm_pure_loop.sh
> >   create mode 100644 tools/perf/tests/shell/coresight/asm_pure_loop/.gitignore
> >   create mode 100644 tools/perf/tests/shell/coresight/asm_pure_loop/Makefile
> >   create mode 100644 tools/perf/tests/shell/coresight/asm_pure_loop/asm_pure_loop.S
> >   create mode 100644 tools/perf/tests/shell/coresight/memcpy_thread/.gitignore
> >   create mode 100644 tools/perf/tests/shell/coresight/memcpy_thread/Makefile
> >   create mode 100644 tools/perf/tests/shell/coresight/memcpy_thread/memcpy_thread.c
> >   create mode 100755 tools/perf/tests/shell/coresight/memcpy_thread_16k_10.sh
> >   create mode 100644 tools/perf/tests/shell/coresight/thread_loop/.gitignore
> >   create mode 100644 tools/perf/tests/shell/coresight/thread_loop/Makefile
> >   create mode 100644 tools/perf/tests/shell/coresight/thread_loop/thread_loop.c
> >   create mode 100755 tools/perf/tests/shell/coresight/thread_loop_check_tid_10.sh
> >   create mode 100755 tools/perf/tests/shell/coresight/thread_loop_check_tid_2.sh
> >   create mode 100644 tools/perf/tests/shell/coresight/unroll_loop_thread/.gitignore
> >   create mode 100644 tools/perf/tests/shell/coresight/unroll_loop_thread/Makefile
> >   create mode 100644 tools/perf/tests/shell/coresight/unroll_loop_thread/unroll_loop_thread.c
> >   create mode 100755 tools/perf/tests/shell/coresight/unroll_loop_thread_10.sh
> >   create mode 100644 tools/perf/tests/shell/lib/coresight.sh
> > 

-- 

- Arnaldo

  reply	other threads:[~2022-10-05 18:35 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-09 15:27 [PATCH v9 00/13] perf: test: Add trace data quality tests for CoreSight carsten.haitzler
2022-09-09 15:27 ` [PATCH v9 01/13] perf test: Add CoreSight shell lib shared code for future tests carsten.haitzler
2022-09-09 15:27 ` [PATCH v9 02/13] perf test: Add build infra for perf test tools for CoreSight tests carsten.haitzler
2022-10-06 11:26   ` Arnaldo Carvalho de Melo
2022-10-06 11:45     ` Arnaldo Carvalho de Melo
2022-10-06 12:58       ` Leo Yan
2022-10-06 14:22         ` Arnaldo Carvalho de Melo
2022-10-06 15:07           ` Leo Yan
2022-10-06 17:12             ` Arnaldo Carvalho de Melo
2022-10-06 17:42               ` Arnaldo Carvalho de Melo
2022-10-07  6:28                 ` Jiri Slaby
2022-10-07 11:34         ` Carsten Haitzler
2022-10-07 12:44           ` Arnaldo Carvalho de Melo
2022-10-10  7:02             ` Carsten Haitzler
2022-10-10 13:54               ` Arnaldo Carvalho de Melo
2022-10-19  8:11                 ` Carsten Haitzler
2022-10-19  8:51                   ` Leo Yan
2022-10-19 15:16                     ` Arnaldo Carvalho de Melo
2022-09-09 15:27 ` [PATCH v9 03/13] perf test: Add asm pureloop test tool carsten.haitzler
2022-09-09 15:27 ` [PATCH v9 04/13] perf test: Add asm pureloop test shell script carsten.haitzler
2022-09-09 15:27 ` [PATCH v9 05/13] perf test: Add git ignore for perf data generated by the CoreSight tests carsten.haitzler
2022-09-09 15:27 ` [PATCH v9 06/13] perf test: Add memcpy thread test tool carsten.haitzler
2022-09-09 15:27 ` [PATCH v9 07/13] perf test: Add memcpy thread test shell script carsten.haitzler
2022-09-09 15:27 ` [PATCH v9 08/13] perf test: Add thread loop test tool carsten.haitzler
2022-09-09 15:27 ` [PATCH v9 09/13] perf test: Add thread loop test shell scripts carsten.haitzler
2022-09-09 15:28 ` [PATCH v9 10/13] perf test: Add unroll thread test tool carsten.haitzler
2022-09-09 15:28 ` [PATCH v9 11/13] perf test: Add unroll thread test shell script carsten.haitzler
2022-09-09 15:28 ` [PATCH v9 12/13] perf test: Add git ignore for tmp and output files of CoreSight tests carsten.haitzler
2022-09-09 15:28 ` [PATCH v9 13/13] perf test: Add relevant documentation about CoreSight testing carsten.haitzler
2022-10-11  7:27   ` Sven Schnelle
2022-10-19  8:16     ` Carsten Haitzler
2022-10-19  8:43       ` Leo Yan
2022-10-05  8:36 ` [PATCH v9 00/13] perf: test: Add trace data quality tests for CoreSight Carsten Haitzler
2022-10-05 18:35   ` Arnaldo Carvalho de Melo [this message]
2022-10-06 10:11     ` James Clark

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=Yz3Of4+rs1ZB3n8t@kernel.org \
    --to=acme@kernel.org \
    --cc=carsten.haitzler@foss.arm.com \
    --cc=coresight@lists.linaro.org \
    --cc=linux-perf-users@vger.kernel.org \
    --cc=mathieu.poirier@linaro.org \
    --cc=mike.leach@linaro.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;
as well as URLs for NNTP newsgroup(s).