* [PATCH v1] perf test: AMD IBS swfilt skip kernel tests if paranoia is >1
@ 2025-09-08 22:17 Ian Rogers
2025-09-08 23:35 ` Namhyung Kim
0 siblings, 1 reply; 5+ messages in thread
From: Ian Rogers @ 2025-09-08 22:17 UTC (permalink / raw)
To: Ravi Bangoria, Peter Zijlstra, Ingo Molnar,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Alexander Shishkin, Jiri Olsa, Ian Rogers, Adrian Hunter,
Kan Liang, Collin Funk, James Clark, linux-perf-users,
linux-kernel
If not root and the perf_event_paranoid is set >1 swfilt will fail to
open the event failing the test. Add check to skip the test in that
case.
Some corrections to the kernel/user sample count test.
Signed-off-by: Ian Rogers <irogers@google.com>
---
tools/perf/tests/shell/amd-ibs-swfilt.sh | 57 +++++++++++++++++-------
1 file changed, 41 insertions(+), 16 deletions(-)
diff --git a/tools/perf/tests/shell/amd-ibs-swfilt.sh b/tools/perf/tests/shell/amd-ibs-swfilt.sh
index 7045ec72ba4c..80d5bf8db40c 100755
--- a/tools/perf/tests/shell/amd-ibs-swfilt.sh
+++ b/tools/perf/tests/shell/amd-ibs-swfilt.sh
@@ -1,6 +1,10 @@
#!/bin/bash
# AMD IBS software filtering
+ParanoidAndNotRoot() {
+ [ "$(id -u)" != 0 ] && [ "$(cat /proc/sys/kernel/perf_event_paranoid)" -gt $1 ]
+}
+
echo "check availability of IBS swfilt"
# check if IBS PMU is available
@@ -16,6 +20,7 @@ if [ ! -f /sys/bus/event_source/devices/ibs_op/format/swfilt ]; then
fi
echo "run perf record with modifier and swfilt"
+err=0
# setting any modifiers should fail
perf record -B -e ibs_op//u -o /dev/null true 2> /dev/null
@@ -31,11 +36,17 @@ if [ $? -ne 0 ]; then
exit 1
fi
-# setting it with swfilt=1 should be fine
-perf record -B -e ibs_op/swfilt=1/k -o /dev/null true
-if [ $? -ne 0 ]; then
- echo "[FAIL] IBS op PMU cannot handle swfilt for exclude_user"
- exit 1
+if ! ParanoidAndNotRoot 1
+then
+ # setting it with swfilt=1 should be fine
+ perf record -B -e ibs_op/swfilt=1/k -o /dev/null true
+ if [ $? -ne 0 ]; then
+ echo "[FAIL] IBS op PMU cannot handle swfilt for exclude_user"
+ exit 1
+ fi
+else
+ echo "[SKIP] not root and perf_event_paranoid too high for exclude_user"
+ err=2
fi
# check ibs_fetch PMU as well
@@ -46,22 +57,36 @@ if [ $? -ne 0 ]; then
fi
# check system wide recording
-perf record -aB --synth=no -e ibs_op/swfilt/k -o /dev/null true
-if [ $? -ne 0 ]; then
- echo "[FAIL] IBS op PMU cannot handle swfilt in system-wide mode"
- exit 1
+if ! ParanoidAndNotRoot 1
+then
+ perf record -aB --synth=no -e ibs_op/swfilt/k -o /dev/null true
+ if [ $? -ne 0 ]; then
+ echo "[FAIL] IBS op PMU cannot handle swfilt in system-wide mode"
+ exit 1
+ fi
+else
+ echo "[SKIP] not root and perf_event_paranoid too high for exclude_user"
+ err=2
fi
echo "check number of samples with swfilt"
-kernel_sample=$(perf record -e ibs_op/swfilt/u -o- true | perf script -i- -F misc | grep -c ^K)
-if [ ${kernel_sample} -ne 0 ]; then
- echo "[FAIL] unexpected kernel samples: " ${kernel_sample}
- exit 1
-fi
-
-user_sample=$(perf record -e ibs_fetch/swfilt/k -o- true | perf script -i- -F misc | grep -c ^U)
+user_sample=$(perf record -e ibs_op/swfilt/u -o- true | perf script -i- -F misc | grep -c ^U)
if [ ${user_sample} -ne 0 ]; then
echo "[FAIL] unexpected user samples: " ${user_sample}
exit 1
fi
+
+if ! ParanoidAndNotRoot 1
+then
+ kernel_sample=$(perf record -e ibs_fetch/swfilt/k -o- true | perf script -i- -F misc | grep -c ^K)
+ if [ ${kernel_sample} -ne 0 ]; then
+ echo "[FAIL] unexpected kernel samples: " ${kernel_sample}
+ exit 1
+ fi
+else
+ echo "[SKIP] not root and perf_event_paranoid too high for exclude_user"
+ err=2
+fi
+
+exit $err
--
2.51.0.384.g4c02a37b29-goog
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH v1] perf test: AMD IBS swfilt skip kernel tests if paranoia is >1
2025-09-08 22:17 [PATCH v1] perf test: AMD IBS swfilt skip kernel tests if paranoia is >1 Ian Rogers
@ 2025-09-08 23:35 ` Namhyung Kim
2025-09-12 21:53 ` Arnaldo Carvalho de Melo
0 siblings, 1 reply; 5+ messages in thread
From: Namhyung Kim @ 2025-09-08 23:35 UTC (permalink / raw)
To: Ian Rogers
Cc: Ravi Bangoria, Peter Zijlstra, Ingo Molnar,
Arnaldo Carvalho de Melo, Mark Rutland, Alexander Shishkin,
Jiri Olsa, Adrian Hunter, Kan Liang, Collin Funk, James Clark,
linux-perf-users, linux-kernel
Hi Ian,
On Mon, Sep 08, 2025 at 03:17:27PM -0700, Ian Rogers wrote:
> If not root and the perf_event_paranoid is set >1 swfilt will fail to
> open the event failing the test. Add check to skip the test in that
> case.
Thanks for the fix!
>
> Some corrections to the kernel/user sample count test.
>
> Signed-off-by: Ian Rogers <irogers@google.com>
> ---
> tools/perf/tests/shell/amd-ibs-swfilt.sh | 57 +++++++++++++++++-------
> 1 file changed, 41 insertions(+), 16 deletions(-)
>
> diff --git a/tools/perf/tests/shell/amd-ibs-swfilt.sh b/tools/perf/tests/shell/amd-ibs-swfilt.sh
> index 7045ec72ba4c..80d5bf8db40c 100755
> --- a/tools/perf/tests/shell/amd-ibs-swfilt.sh
> +++ b/tools/perf/tests/shell/amd-ibs-swfilt.sh
> @@ -1,6 +1,10 @@
> #!/bin/bash
> # AMD IBS software filtering
>
> +ParanoidAndNotRoot() {
> + [ "$(id -u)" != 0 ] && [ "$(cat /proc/sys/kernel/perf_event_paranoid)" -gt $1 ]
> +}
> +
> echo "check availability of IBS swfilt"
>
> # check if IBS PMU is available
> @@ -16,6 +20,7 @@ if [ ! -f /sys/bus/event_source/devices/ibs_op/format/swfilt ]; then
> fi
>
> echo "run perf record with modifier and swfilt"
> +err=0
>
> # setting any modifiers should fail
> perf record -B -e ibs_op//u -o /dev/null true 2> /dev/null
> @@ -31,11 +36,17 @@ if [ $? -ne 0 ]; then
> exit 1
> fi
>
> -# setting it with swfilt=1 should be fine
> -perf record -B -e ibs_op/swfilt=1/k -o /dev/null true
> -if [ $? -ne 0 ]; then
> - echo "[FAIL] IBS op PMU cannot handle swfilt for exclude_user"
> - exit 1
> +if ! ParanoidAndNotRoot 1
> +then
> + # setting it with swfilt=1 should be fine
> + perf record -B -e ibs_op/swfilt=1/k -o /dev/null true
> + if [ $? -ne 0 ]; then
> + echo "[FAIL] IBS op PMU cannot handle swfilt for exclude_user"
> + exit 1
> + fi
> +else
> + echo "[SKIP] not root and perf_event_paranoid too high for exclude_user"
> + err=2
> fi
>
> # check ibs_fetch PMU as well
> @@ -46,22 +57,36 @@ if [ $? -ne 0 ]; then
> fi
>
> # check system wide recording
> -perf record -aB --synth=no -e ibs_op/swfilt/k -o /dev/null true
> -if [ $? -ne 0 ]; then
> - echo "[FAIL] IBS op PMU cannot handle swfilt in system-wide mode"
> - exit 1
> +if ! ParanoidAndNotRoot 1
> +then
> + perf record -aB --synth=no -e ibs_op/swfilt/k -o /dev/null true
> + if [ $? -ne 0 ]; then
> + echo "[FAIL] IBS op PMU cannot handle swfilt in system-wide mode"
> + exit 1
> + fi
> +else
> + echo "[SKIP] not root and perf_event_paranoid too high for exclude_user"
> + err=2
> fi
>
> echo "check number of samples with swfilt"
>
> -kernel_sample=$(perf record -e ibs_op/swfilt/u -o- true | perf script -i- -F misc | grep -c ^K)
> -if [ ${kernel_sample} -ne 0 ]; then
> - echo "[FAIL] unexpected kernel samples: " ${kernel_sample}
> - exit 1
> -fi
> -
> -user_sample=$(perf record -e ibs_fetch/swfilt/k -o- true | perf script -i- -F misc | grep -c ^U)
> +user_sample=$(perf record -e ibs_op/swfilt/u -o- true | perf script -i- -F misc | grep -c ^U)
I think it should count kernel samples now (with ^K) as it sets 'u'
modifier (exclude_kernel).
> if [ ${user_sample} -ne 0 ]; then
> echo "[FAIL] unexpected user samples: " ${user_sample}
So that it should not have unexpected kernel samples.
> exit 1
> fi
> +
> +if ! ParanoidAndNotRoot 1
> +then
> + kernel_sample=$(perf record -e ibs_fetch/swfilt/k -o- true | perf script -i- -F misc | grep -c ^K)
> + if [ ${kernel_sample} -ne 0 ]; then
> + echo "[FAIL] unexpected kernel samples: " ${kernel_sample}
Vice versa. It should count unexpected user samples from 'k' modifier.
Thanks,
Namhyung
> + exit 1
> + fi
> +else
> + echo "[SKIP] not root and perf_event_paranoid too high for exclude_user"
> + err=2
> +fi
> +
> +exit $err
> --
> 2.51.0.384.g4c02a37b29-goog
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v1] perf test: AMD IBS swfilt skip kernel tests if paranoia is >1
2025-09-08 23:35 ` Namhyung Kim
@ 2025-09-12 21:53 ` Arnaldo Carvalho de Melo
2025-09-12 23:37 ` Ian Rogers
0 siblings, 1 reply; 5+ messages in thread
From: Arnaldo Carvalho de Melo @ 2025-09-12 21:53 UTC (permalink / raw)
To: Namhyung Kim
Cc: Ian Rogers, Ravi Bangoria, Peter Zijlstra, Ingo Molnar,
Mark Rutland, Alexander Shishkin, Jiri Olsa, Adrian Hunter,
Kan Liang, Collin Funk, James Clark, linux-perf-users,
linux-kernel
On Mon, Sep 08, 2025 at 04:35:11PM -0700, Namhyung Kim wrote:
> Hi Ian,
>
> On Mon, Sep 08, 2025 at 03:17:27PM -0700, Ian Rogers wrote:
> > If not root and the perf_event_paranoid is set >1 swfilt will fail to
> > open the event failing the test. Add check to skip the test in that
> > case.
>
> Thanks for the fix!
I'm taking this as an Acked-by, ok?
- Arnaldo
> >
> > Some corrections to the kernel/user sample count test.
> >
> > Signed-off-by: Ian Rogers <irogers@google.com>
> > ---
> > tools/perf/tests/shell/amd-ibs-swfilt.sh | 57 +++++++++++++++++-------
> > 1 file changed, 41 insertions(+), 16 deletions(-)
> >
> > diff --git a/tools/perf/tests/shell/amd-ibs-swfilt.sh b/tools/perf/tests/shell/amd-ibs-swfilt.sh
> > index 7045ec72ba4c..80d5bf8db40c 100755
> > --- a/tools/perf/tests/shell/amd-ibs-swfilt.sh
> > +++ b/tools/perf/tests/shell/amd-ibs-swfilt.sh
> > @@ -1,6 +1,10 @@
> > #!/bin/bash
> > # AMD IBS software filtering
> >
> > +ParanoidAndNotRoot() {
> > + [ "$(id -u)" != 0 ] && [ "$(cat /proc/sys/kernel/perf_event_paranoid)" -gt $1 ]
> > +}
> > +
> > echo "check availability of IBS swfilt"
> >
> > # check if IBS PMU is available
> > @@ -16,6 +20,7 @@ if [ ! -f /sys/bus/event_source/devices/ibs_op/format/swfilt ]; then
> > fi
> >
> > echo "run perf record with modifier and swfilt"
> > +err=0
> >
> > # setting any modifiers should fail
> > perf record -B -e ibs_op//u -o /dev/null true 2> /dev/null
> > @@ -31,11 +36,17 @@ if [ $? -ne 0 ]; then
> > exit 1
> > fi
> >
> > -# setting it with swfilt=1 should be fine
> > -perf record -B -e ibs_op/swfilt=1/k -o /dev/null true
> > -if [ $? -ne 0 ]; then
> > - echo "[FAIL] IBS op PMU cannot handle swfilt for exclude_user"
> > - exit 1
> > +if ! ParanoidAndNotRoot 1
> > +then
> > + # setting it with swfilt=1 should be fine
> > + perf record -B -e ibs_op/swfilt=1/k -o /dev/null true
> > + if [ $? -ne 0 ]; then
> > + echo "[FAIL] IBS op PMU cannot handle swfilt for exclude_user"
> > + exit 1
> > + fi
> > +else
> > + echo "[SKIP] not root and perf_event_paranoid too high for exclude_user"
> > + err=2
> > fi
> >
> > # check ibs_fetch PMU as well
> > @@ -46,22 +57,36 @@ if [ $? -ne 0 ]; then
> > fi
> >
> > # check system wide recording
> > -perf record -aB --synth=no -e ibs_op/swfilt/k -o /dev/null true
> > -if [ $? -ne 0 ]; then
> > - echo "[FAIL] IBS op PMU cannot handle swfilt in system-wide mode"
> > - exit 1
> > +if ! ParanoidAndNotRoot 1
> > +then
> > + perf record -aB --synth=no -e ibs_op/swfilt/k -o /dev/null true
> > + if [ $? -ne 0 ]; then
> > + echo "[FAIL] IBS op PMU cannot handle swfilt in system-wide mode"
> > + exit 1
> > + fi
> > +else
> > + echo "[SKIP] not root and perf_event_paranoid too high for exclude_user"
> > + err=2
> > fi
> >
> > echo "check number of samples with swfilt"
> >
> > -kernel_sample=$(perf record -e ibs_op/swfilt/u -o- true | perf script -i- -F misc | grep -c ^K)
> > -if [ ${kernel_sample} -ne 0 ]; then
> > - echo "[FAIL] unexpected kernel samples: " ${kernel_sample}
> > - exit 1
> > -fi
> > -
> > -user_sample=$(perf record -e ibs_fetch/swfilt/k -o- true | perf script -i- -F misc | grep -c ^U)
> > +user_sample=$(perf record -e ibs_op/swfilt/u -o- true | perf script -i- -F misc | grep -c ^U)
>
> I think it should count kernel samples now (with ^K) as it sets 'u'
> modifier (exclude_kernel).
>
>
> > if [ ${user_sample} -ne 0 ]; then
> > echo "[FAIL] unexpected user samples: " ${user_sample}
>
> So that it should not have unexpected kernel samples.
>
>
> > exit 1
> > fi
> > +
> > +if ! ParanoidAndNotRoot 1
> > +then
> > + kernel_sample=$(perf record -e ibs_fetch/swfilt/k -o- true | perf script -i- -F misc | grep -c ^K)
> > + if [ ${kernel_sample} -ne 0 ]; then
> > + echo "[FAIL] unexpected kernel samples: " ${kernel_sample}
>
> Vice versa. It should count unexpected user samples from 'k' modifier.
>
> Thanks,
> Namhyung
>
>
> > + exit 1
> > + fi
> > +else
> > + echo "[SKIP] not root and perf_event_paranoid too high for exclude_user"
> > + err=2
> > +fi
> > +
> > +exit $err
> > --
> > 2.51.0.384.g4c02a37b29-goog
> >
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v1] perf test: AMD IBS swfilt skip kernel tests if paranoia is >1
2025-09-12 21:53 ` Arnaldo Carvalho de Melo
@ 2025-09-12 23:37 ` Ian Rogers
2025-09-16 14:30 ` Arnaldo Carvalho de Melo
0 siblings, 1 reply; 5+ messages in thread
From: Ian Rogers @ 2025-09-12 23:37 UTC (permalink / raw)
To: Arnaldo Carvalho de Melo
Cc: Namhyung Kim, Ravi Bangoria, Peter Zijlstra, Ingo Molnar,
Mark Rutland, Alexander Shishkin, Jiri Olsa, Adrian Hunter,
Kan Liang, Collin Funk, James Clark, linux-perf-users,
linux-kernel
On Fri, Sep 12, 2025 at 2:53 PM Arnaldo Carvalho de Melo
<acme@kernel.org> wrote:
>
> On Mon, Sep 08, 2025 at 04:35:11PM -0700, Namhyung Kim wrote:
> > Hi Ian,
> >
> > On Mon, Sep 08, 2025 at 03:17:27PM -0700, Ian Rogers wrote:
> > > If not root and the perf_event_paranoid is set >1 swfilt will fail to
> > > open the event failing the test. Add check to skip the test in that
> > > case.
> >
> > Thanks for the fix!
>
> I'm taking this as an Acked-by, ok?
I have a new version but I'm discovering quite a few other issues on
the way. There are 7 patches on top of this here:
https://github.com/googleprodkernel/linux-perf/commits/google_tools_master/
I'll send the new version now, but I'd been tardy as it wasn't clear I
was done with fixes yet.
Thanks,
Ian
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v1] perf test: AMD IBS swfilt skip kernel tests if paranoia is >1
2025-09-12 23:37 ` Ian Rogers
@ 2025-09-16 14:30 ` Arnaldo Carvalho de Melo
0 siblings, 0 replies; 5+ messages in thread
From: Arnaldo Carvalho de Melo @ 2025-09-16 14:30 UTC (permalink / raw)
To: Ian Rogers
Cc: Namhyung Kim, Ravi Bangoria, Peter Zijlstra, Ingo Molnar,
Mark Rutland, Alexander Shishkin, Jiri Olsa, Adrian Hunter,
Kan Liang, Collin Funk, James Clark, linux-perf-users,
linux-kernel
On Fri, Sep 12, 2025 at 04:37:59PM -0700, Ian Rogers wrote:
> On Fri, Sep 12, 2025 at 2:53 PM Arnaldo Carvalho de Melo
> <acme@kernel.org> wrote:
> >
> > On Mon, Sep 08, 2025 at 04:35:11PM -0700, Namhyung Kim wrote:
> > > Hi Ian,
> > >
> > > On Mon, Sep 08, 2025 at 03:17:27PM -0700, Ian Rogers wrote:
> > > > If not root and the perf_event_paranoid is set >1 swfilt will fail to
> > > > open the event failing the test. Add check to skip the test in that
> > > > case.
> > >
> > > Thanks for the fix!
> >
> > I'm taking this as an Acked-by, ok?
>
> I have a new version but I'm discovering quite a few other issues on
> the way. There are 7 patches on top of this here:
> https://github.com/googleprodkernel/linux-perf/commits/google_tools_master/
I just checked and b4 picked the latest version of this patch as what I
have now in perf-tools-next is the same as in:
https://github.com/googleprodkernel/linux-perf/blob/google_tools_master/tools/perf/tests/shell/amd-ibs-swfilt.sh
- Arnaldo
> I'll send the new version now, but I'd been tardy as it wasn't clear I
> was done with fixes yet.
>
> Thanks,
> Ian
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-09-16 14:30 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-08 22:17 [PATCH v1] perf test: AMD IBS swfilt skip kernel tests if paranoia is >1 Ian Rogers
2025-09-08 23:35 ` Namhyung Kim
2025-09-12 21:53 ` Arnaldo Carvalho de Melo
2025-09-12 23:37 ` Ian Rogers
2025-09-16 14:30 ` Arnaldo Carvalho de Melo
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).