summaryrefslogtreecommitdiffstats
path: root/testsuite/semok
diff options
context:
space:
mode:
authorDave Brolley <brolley@redhat.com>2009-05-28 12:01:15 -0400
committerDave Brolley <brolley@redhat.com>2009-05-28 12:01:15 -0400
commit2d36bab8c335ad65a4db09c556ba4e6ad1699339 (patch)
tree990b78fe819c70072d4795028837773505879f3d /testsuite/semok
parent99587ed126351da39b002a1363703b2f7749a49c (diff)
parent9b59029875a7e4d362834fe2d6017b74a044b2e6 (diff)
downloadsystemtap-steved-2d36bab8c335ad65a4db09c556ba4e6ad1699339.tar.gz
systemtap-steved-2d36bab8c335ad65a4db09c556ba4e6ad1699339.tar.xz
systemtap-steved-2d36bab8c335ad65a4db09c556ba4e6ad1699339.zip
Merge branch 'master' of git://sources.redhat.com/git/systemtap
Diffstat (limited to 'testsuite/semok')
-rwxr-xr-xtestsuite/semok/twentyeight.stp2
-rwxr-xr-xtestsuite/semok/twentyfour.stp4
2 files changed, 3 insertions, 3 deletions
diff --git a/testsuite/semok/twentyeight.stp b/testsuite/semok/twentyeight.stp
index f9854134..c4a8621f 100755
--- a/testsuite/semok/twentyeight.stp
+++ b/testsuite/semok/twentyeight.stp
@@ -1,4 +1,4 @@
#! stap -p2
# Make sure wildcards are handled
-probe kerne*.funct*("sys_read").* {}
+probe kerne*.funct*("vfs_read").* {}
diff --git a/testsuite/semok/twentyfour.stp b/testsuite/semok/twentyfour.stp
index 91dee48f..d42496bf 100755
--- a/testsuite/semok/twentyfour.stp
+++ b/testsuite/semok/twentyfour.stp
@@ -2,7 +2,7 @@
# read access to target variables should work in .return probes
-probe kernel.function("sys_read").return
+probe kernel.function("vfs_read").return
{
- printf("fd is %d\n", $fd)
+ printf("count is %d\n", $count)
}