summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.examples/io/traceio.stp
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/systemtap.examples/io/traceio.stp')
-rwxr-xr-xtestsuite/systemtap.examples/io/traceio.stp4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/systemtap.examples/io/traceio.stp b/testsuite/systemtap.examples/io/traceio.stp
index cb667be5..4ca4dd4c 100755
--- a/testsuite/systemtap.examples/io/traceio.stp
+++ b/testsuite/systemtap.examples/io/traceio.stp
@@ -9,11 +9,11 @@
global reads, writes, total_io
-probe kernel.function("vfs_read").return {
+probe vfs.read.return {
reads[execname()] += $return
}
-probe kernel.function("vfs_write").return {
+probe vfs.write.return {
writes[execname()] += $return
}