2022-09-14 19:06:01

by Namhyung Kim

[permalink] [raw]
Subject: [PATCH] perf test: Skip wp modify test on old kernels

It uses PERF_EVENT_IOC_MODIFY_ATTRIBUTES ioctl. The kernel would return
ENOTTY if it's not supported. Update the skip reason in that case.

Cc: Ravi Bangoria <[email protected]>
Signed-off-by: Namhyung Kim <[email protected]>
---
I'd like to add Fixes: 2e85d5979e8d tag here but it'd conlict with the
later change in e47c6ecaae1d.

tools/perf/tests/wp.c | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/tools/perf/tests/wp.c b/tools/perf/tests/wp.c
index 9d4c45184e71..99f048cd6faa 100644
--- a/tools/perf/tests/wp.c
+++ b/tools/perf/tests/wp.c
@@ -2,6 +2,7 @@
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
+#include <errno.h>
#include <sys/ioctl.h>
#include <linux/hw_breakpoint.h>
#include <linux/kernel.h>
@@ -137,8 +138,7 @@ static int test__wp_rw(struct test_suite *test __maybe_unused,
#endif
}

-static int test__wp_modify(struct test_suite *test __maybe_unused,
- int subtest __maybe_unused)
+static int test__wp_modify(struct test_suite *test, int subtest)
{
#if defined(__s390x__)
return TEST_SKIP;
@@ -160,6 +160,11 @@ static int test__wp_modify(struct test_suite *test __maybe_unused,
new_attr.disabled = 1;
ret = ioctl(fd, PERF_EVENT_IOC_MODIFY_ATTRIBUTES, &new_attr);
if (ret < 0) {
+ if (errno == ENOTTY) {
+ test->test_cases[subtest].skip_reason = "missing kernel support";
+ ret = TEST_SKIP;
+ }
+
pr_debug("ioctl(PERF_EVENT_IOC_MODIFY_ATTRIBUTES) failed\n");
close(fd);
return ret;
--
2.37.2.789.g6183377224-goog


2022-09-19 06:12:54

by Ravi Bangoria

[permalink] [raw]
Subject: Re: [PATCH] perf test: Skip wp modify test on old kernels

On 15-Sep-22 12:03 AM, Namhyung Kim wrote:
> It uses PERF_EVENT_IOC_MODIFY_ATTRIBUTES ioctl. The kernel would return
> ENOTTY if it's not supported. Update the skip reason in that case.

Reviewed-by: Ravi Bangoria <[email protected]>

> I'd like to add Fixes: 2e85d5979e8d tag here but it'd conlict with the
> later change in e47c6ecaae1d.

Is it worth to backport?

Thanks,
Ravi

2022-09-20 20:42:46

by Arnaldo Carvalho de Melo

[permalink] [raw]
Subject: Re: [PATCH] perf test: Skip wp modify test on old kernels

Em Mon, Sep 19, 2022 at 11:24:05AM +0530, Ravi Bangoria escreveu:
> On 15-Sep-22 12:03 AM, Namhyung Kim wrote:
> > It uses PERF_EVENT_IOC_MODIFY_ATTRIBUTES ioctl. The kernel would return
> > ENOTTY if it's not supported. Update the skip reason in that case.
>
> Reviewed-by: Ravi Bangoria <[email protected]>

Thanks, applied.

- Arnaldo


> > I'd like to add Fixes: 2e85d5979e8d tag here but it'd conlict with the
> > later change in e47c6ecaae1d.
>
> Is it worth to backport?
>
> Thanks,
> Ravi

--

- Arnaldo