diff options
author | Ananth N Mavinakayanahalli <ananth@in.ibm.com> | 2009-04-30 17:00:38 +0530 |
---|---|---|
committer | Ananth N Mavinakayanahalli <ananth@in.ibm.com> | 2009-04-30 17:00:38 +0530 |
commit | ea7d087ab3866eb99c19444b237c9586e8dc9b17 (patch) | |
tree | 9a3831d5a2ac2d5da1e69b86fff043fabc4e3a01 /testsuite/semko/fortyone.stp | |
parent | 06cc786840951d8467553a60c0e603a5086fc488 (diff) | |
download | systemtap-steved-ea7d087ab3866eb99c19444b237c9586e8dc9b17.tar.gz systemtap-steved-ea7d087ab3866eb99c19444b237c9586e8dc9b17.tar.xz systemtap-steved-ea7d087ab3866eb99c19444b237c9586e8dc9b17.zip |
PR10007: Avoid probing syscall entry points in the testsuite.
While there, fix minor issues with the s390x syscall tapset.
Diffstat (limited to 'testsuite/semko/fortyone.stp')
-rwxr-xr-x | testsuite/semko/fortyone.stp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/semko/fortyone.stp b/testsuite/semko/fortyone.stp index e9b986df..d3ba6205 100755 --- a/testsuite/semko/fortyone.stp +++ b/testsuite/semko/fortyone.stp @@ -1,3 +1,3 @@ #! stap -p2 -probe kernel.function("sys_open") if (x > 1) { } # not a global +probe kernel.function("vfs_read") if (x > 1) { } # not a global |