* [PATCH v3] perf test: S390 does not support watchpoints in test 22
@ 2018-09-28 10:53 Thomas Richter
2018-09-28 11:13 ` Ravi Bangoria
0 siblings, 1 reply; 4+ messages in thread
From: Thomas Richter @ 2018-09-28 10:53 UTC (permalink / raw)
To: linux-kernel, linux-perf-users, acme
Cc: brueckner, schwidefsky, heiko.carstens, Thomas Richter
S390 does not support the perf_event_open system call for
attribute type PERF_TYPE_BREAKPOINT. This results in test
failure for test 22:
[root@s8360046 perf]# ./perf test 22
22: Watchpoint :
22.1: Read Only Watchpoint : FAILED!
22.2: Write Only Watchpoint : FAILED!
22.3: Read / Write Watchpoint : FAILED!
22.4: Modify Watchpoint : FAILED!
[root@s8360046 perf]#
Add s390 support to avoid these tests being executed on
s390 platform:
[root@s8360046 perf]# ./perf test 22
[root@s8360046 perf]# ./perf test -v 22
22: Watchpoint : Disabled
[root@s8360046 perf]#
Signed-off-by: Thomas Richter <tmricht@linux.ibm.com>
---
tools/perf/tests/builtin-test.c | 1 +
tools/perf/tests/tests.h | 1 +
tools/perf/tests/wp.c | 12 ++++++++++++
3 files changed, 14 insertions(+)
diff --git a/tools/perf/tests/builtin-test.c b/tools/perf/tests/builtin-test.c
index 54ca7d87236f..12c09e0ece71 100644
--- a/tools/perf/tests/builtin-test.c
+++ b/tools/perf/tests/builtin-test.c
@@ -123,6 +123,7 @@ static struct test generic_tests[] = {
{
.desc = "Watchpoint",
.func = test__wp,
+ .is_supported = test__wp_is_supported,
.subtest = {
.skip_if_fail = false,
.get_nr = test__wp_subtest_get_nr,
diff --git a/tools/perf/tests/tests.h b/tools/perf/tests/tests.h
index 8e26a4148f30..b82f55fcc294 100644
--- a/tools/perf/tests/tests.h
+++ b/tools/perf/tests/tests.h
@@ -109,6 +109,7 @@ int test__unit_number__scnprint(struct test *test, int subtest);
int test__mem2node(struct test *t, int subtest);
bool test__bp_signal_is_supported(void);
+bool test__wp_is_supported(void);
#if defined(__arm__) || defined(__aarch64__)
#ifdef HAVE_DWARF_UNWIND_SUPPORT
diff --git a/tools/perf/tests/wp.c b/tools/perf/tests/wp.c
index 017a99317f94..f89e6806557b 100644
--- a/tools/perf/tests/wp.c
+++ b/tools/perf/tests/wp.c
@@ -227,3 +227,15 @@ int test__wp(struct test *test __maybe_unused, int i)
return !wp_testcase_table[i].target_func() ? TEST_OK : TEST_FAIL;
}
+
+/* The s390 so far does not have support for
+ * instruction breakpoint using the perf_event_open() system call.
+ */
+bool test__wp_is_supported(void)
+{
+#if defined(__s390x__)
+ return false;
+#else
+ return true;
+#endif
+}
--
2.17.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v3] perf test: S390 does not support watchpoints in test 22
2018-09-28 10:53 [PATCH v3] perf test: S390 does not support watchpoints in test 22 Thomas Richter
@ 2018-09-28 11:13 ` Ravi Bangoria
2018-09-28 14:45 ` Arnaldo Carvalho de Melo
2018-09-28 14:52 ` Arnaldo Carvalho de Melo
0 siblings, 2 replies; 4+ messages in thread
From: Ravi Bangoria @ 2018-09-28 11:13 UTC (permalink / raw)
To: Thomas Richter, acme
Cc: linux-kernel, linux-perf-users, brueckner, schwidefsky,
heiko.carstens, Ravi Bangoria
On 09/28/2018 04:23 PM, Thomas Richter wrote:
> S390 does not support the perf_event_open system call for
> attribute type PERF_TYPE_BREAKPOINT. This results in test
> failure for test 22:
>
> [root@s8360046 perf]# ./perf test 22
> 22: Watchpoint :
> 22.1: Read Only Watchpoint : FAILED!
> 22.2: Write Only Watchpoint : FAILED!
> 22.3: Read / Write Watchpoint : FAILED!
> 22.4: Modify Watchpoint : FAILED!
> [root@s8360046 perf]#
>
> Add s390 support to avoid these tests being executed on
> s390 platform:
>
> [root@s8360046 perf]# ./perf test 22
> [root@s8360046 perf]# ./perf test -v 22
> 22: Watchpoint : Disabled
> [root@s8360046 perf]#
>
> Signed-off-by: Thomas Richter <tmricht@linux.ibm.com>
Acked-by: Ravi Bangoria <ravi.bangoria@linux.ibm.com>
Thanks,
Ravi
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v3] perf test: S390 does not support watchpoints in test 22
2018-09-28 11:13 ` Ravi Bangoria
@ 2018-09-28 14:45 ` Arnaldo Carvalho de Melo
2018-09-28 14:52 ` Arnaldo Carvalho de Melo
1 sibling, 0 replies; 4+ messages in thread
From: Arnaldo Carvalho de Melo @ 2018-09-28 14:45 UTC (permalink / raw)
To: Ravi Bangoria
Cc: Thomas Richter, linux-kernel, linux-perf-users, brueckner,
schwidefsky, heiko.carstens
Em Fri, Sep 28, 2018 at 04:43:06PM +0530, Ravi Bangoria escreveu:
>
>
> On 09/28/2018 04:23 PM, Thomas Richter wrote:
> > S390 does not support the perf_event_open system call for
> > attribute type PERF_TYPE_BREAKPOINT. This results in test
> > failure for test 22:
> >
> > [root@s8360046 perf]# ./perf test 22
> > 22: Watchpoint :
> > 22.1: Read Only Watchpoint : FAILED!
> > 22.2: Write Only Watchpoint : FAILED!
> > 22.3: Read / Write Watchpoint : FAILED!
> > 22.4: Modify Watchpoint : FAILED!
> > [root@s8360046 perf]#
> >
> > Add s390 support to avoid these tests being executed on
> > s390 platform:
> >
> > [root@s8360046 perf]# ./perf test 22
> > [root@s8360046 perf]# ./perf test -v 22
> > 22: Watchpoint : Disabled
> > [root@s8360046 perf]#
> >
> > Signed-off-by: Thomas Richter <tmricht@linux.ibm.com>
>
> Acked-by: Ravi Bangoria <ravi.bangoria@linux.ibm.com>
Thanks, applied.
- Arnaldo
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v3] perf test: S390 does not support watchpoints in test 22
2018-09-28 11:13 ` Ravi Bangoria
2018-09-28 14:45 ` Arnaldo Carvalho de Melo
@ 2018-09-28 14:52 ` Arnaldo Carvalho de Melo
1 sibling, 0 replies; 4+ messages in thread
From: Arnaldo Carvalho de Melo @ 2018-09-28 14:52 UTC (permalink / raw)
To: Ravi Bangoria
Cc: Thomas Richter, linux-kernel, linux-perf-users, brueckner,
schwidefsky, heiko.carstens
Em Fri, Sep 28, 2018 at 04:43:06PM +0530, Ravi Bangoria escreveu:
> On 09/28/2018 04:23 PM, Thomas Richter wrote:
> > S390 does not support the perf_event_open system call for
> > attribute type PERF_TYPE_BREAKPOINT. This results in test
> > failure for test 22:
> > [root@s8360046 perf]# ./perf test 22
> > 22: Watchpoint :
> > 22.1: Read Only Watchpoint : FAILED!
> > 22.2: Write Only Watchpoint : FAILED!
> > 22.3: Read / Write Watchpoint : FAILED!
> > 22.4: Modify Watchpoint : FAILED!
> > [root@s8360046 perf]#
> > Add s390 support to avoid these tests being executed on
> > s390 platform:
> > [root@s8360046 perf]# ./perf test 22
> > [root@s8360046 perf]# ./perf test -v 22
> > 22: Watchpoint : Disabled
> > [root@s8360046 perf]#
> > Signed-off-by: Thomas Richter <tmricht@linux.ibm.com>
> Acked-by: Ravi Bangoria <ravi.bangoria@linux.ibm.com>
Thanks, applying.
Just one nit, in cases like this I think a Reviewed-by tag fits better
than a Acked-by, as per Documentation/process/submitting-patches.rst:
--------------
Reviewed-by:, instead, indicates that the patch has been reviewed and found
acceptable according to the Reviewer's Statement:
Reviewer's statement of oversight
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
By offering my Reviewed-by: tag, I state that:
(a) I have carried out a technical review of this patch to
evaluate its appropriateness and readiness for inclusion into
the mainline kernel.
(b) Any problems, concerns, or questions relating to the patch
have been communicated back to the submitter. I am satisfied
with the submitter's response to my comments.
(c) While there may be things that could be improved with this
submission, I believe that it is, at this time, (1) a
worthwhile modification to the kernel, and (2) free of known
issues which would argue against its inclusion.
(d) While I have reviewed the patch and believe it to be sound, I
do not (unless explicitly stated elsewhere) make any
warranties or guarantees that it will achieve its stated
purpose or function properly in any given situation.
A Reviewed-by tag is a statement of opinion that the patch is an
appropriate modification of the kernel without any remaining serious
technical issues. Any interested reviewer (who has done the work) can
offer a Reviewed-by tag for a patch. This tag serves to give credit to
reviewers and to inform maintainers of the degree of review which has been
done on the patch. Reviewed-by: tags, when supplied by reviewers known to
understand the subject area and to perform thorough reviews, will normally
increase the likelihood of your patch getting into the kernel.
----------
While an Acked-by conveys just some quick look was performed, and in
this case you did what Reviewed-by signifies, I think.
I'm tentatively converting this Acked-by to a Reviewed-by, please let me
know if you disagree,
Thanks a lot!
- Arnaldo
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-09-28 14:52 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-09-28 10:53 [PATCH v3] perf test: S390 does not support watchpoints in test 22 Thomas Richter
2018-09-28 11:13 ` Ravi Bangoria
2018-09-28 14:45 ` Arnaldo Carvalho de Melo
2018-09-28 14:52 ` 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).