summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.base/system_func.stp
diff options
context:
space:
mode:
authorAnanth N Mavinakayanahalli <ananth@in.ibm.com>2009-04-30 17:00:38 +0530
committerAnanth N Mavinakayanahalli <ananth@in.ibm.com>2009-04-30 17:00:38 +0530
commitea7d087ab3866eb99c19444b237c9586e8dc9b17 (patch)
tree9a3831d5a2ac2d5da1e69b86fff043fabc4e3a01 /testsuite/systemtap.base/system_func.stp
parent06cc786840951d8467553a60c0e603a5086fc488 (diff)
downloadsystemtap-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/systemtap.base/system_func.stp')
-rw-r--r--testsuite/systemtap.base/system_func.stp4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/systemtap.base/system_func.stp b/testsuite/systemtap.base/system_func.stp
index d14fb25b..6a6bb04a 100644
--- a/testsuite/systemtap.base/system_func.stp
+++ b/testsuite/systemtap.base/system_func.stp
@@ -4,10 +4,10 @@
global saw_echo, did_cat
-probe kernel.function("sys_open") {
+probe kernel.function("do_sys_open") {
if (!saw_echo) {
# very inefficient. Testing only. DO NOT DO THIS
- msg="echo sys_open"
+ msg="echo do_sys_open"
system(msg)
saw_echo = 1
}