diff options
author | Dave Brolley <brolley@redhat.com> | 2009-05-28 12:01:15 -0400 |
---|---|---|
committer | Dave Brolley <brolley@redhat.com> | 2009-05-28 12:01:15 -0400 |
commit | 2d36bab8c335ad65a4db09c556ba4e6ad1699339 (patch) | |
tree | 990b78fe819c70072d4795028837773505879f3d /testsuite/semok | |
parent | 99587ed126351da39b002a1363703b2f7749a49c (diff) | |
parent | 9b59029875a7e4d362834fe2d6017b74a044b2e6 (diff) | |
download | systemtap-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-x | testsuite/semok/twentyeight.stp | 2 | ||||
-rwxr-xr-x | testsuite/semok/twentyfour.stp | 4 |
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) } |