From: Arnaldo Carvalho de Melo <acme@kernel.org>
To: Michael Petlan <mpetlan@redhat.com>
Cc: linux-perf-users@vger.kernel.org, acme@redhat.com,
disgoel@linux.vnet.ibm.com, atrajeev@linux.vnet.ibm.com,
mpe@ellerman.id.au, irogers@google.com, rnsastry@linux.ibm.com
Subject: Re: [PATCH] perf test: Fix "all PMU test" to skip parametrized events
Date: Tue, 20 Dec 2022 15:33:07 -0300 [thread overview]
Message-ID: <Y6H/47gl3d8+A+cA@kernel.org> (raw)
In-Reply-To: <20221219163008.9691-1-mpetlan@redhat.com>
Em Mon, Dec 19, 2022 at 05:30:08PM +0100, Michael Petlan escreveu:
> Parametrized events are not only a powerpc domain. They occur on other
> platforms too (e.g. aarch64). They should be ignored in this testcase,
> since proper setup of the parameters is out of scope of this script.
>
> Let's not filter them out by PMU name, but rather based on the fact
> that they expect a parameter.
Looks ok, applied.
Thanks,
- Arnaldo
> Fixes: 451ed8058c69 ("perf test: Fix "all PMU test" to skip hv_24x7/hv_gpci tests on powerpc")
> Signed-off-by: Michael Petlan <mpetlan@redhat.com>
> ---
> tools/perf/tests/shell/stat_all_pmu.sh | 13 ++-----------
> 1 file changed, 2 insertions(+), 11 deletions(-)
>
> diff --git a/tools/perf/tests/shell/stat_all_pmu.sh b/tools/perf/tests/shell/stat_all_pmu.sh
> index 9c9ef33e0b3c..c77955419173 100755
> --- a/tools/perf/tests/shell/stat_all_pmu.sh
> +++ b/tools/perf/tests/shell/stat_all_pmu.sh
> @@ -4,17 +4,8 @@
>
> set -e
>
> -for p in $(perf list --raw-dump pmu); do
> - # In powerpc, skip the events for hv_24x7 and hv_gpci.
> - # These events needs input values to be filled in for
> - # core, chip, partition id based on system.
> - # Example: hv_24x7/CPM_ADJUNCT_INST,domain=?,core=?/
> - # hv_gpci/event,partition_id=?/
> - # Hence skip these events for ppc.
> - if echo "$p" |grep -Eq 'hv_24x7|hv_gpci' ; then
> - echo "Skipping: Event '$p' in powerpc"
> - continue
> - fi
> +# Test all PMU events; however exclude parametrized ones (name contains '?')
> +for p in $(perf list --raw-dump pmu | sed 's/[[:graph:]]\+?[[:graph:]]\+[[:space:]]//g'); do
> echo "Testing $p"
> result=$(perf stat -e "$p" true 2>&1)
> if ! echo "$result" | grep -q "$p" && ! echo "$result" | grep -q "<not supported>" ; then
> --
> 2.18.4
--
- Arnaldo
prev parent reply other threads:[~2022-12-20 18:33 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-12-19 16:30 [PATCH] perf test: Fix "all PMU test" to skip parametrized events Michael Petlan
2022-12-20 18:33 ` Arnaldo Carvalho de Melo [this message]
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=Y6H/47gl3d8+A+cA@kernel.org \
--to=acme@kernel.org \
--cc=acme@redhat.com \
--cc=atrajeev@linux.vnet.ibm.com \
--cc=disgoel@linux.vnet.ibm.com \
--cc=irogers@google.com \
--cc=linux-perf-users@vger.kernel.org \
--cc=mpe@ellerman.id.au \
--cc=mpetlan@redhat.com \
--cc=rnsastry@linux.ibm.com \
/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).