diff options
Diffstat (limited to 'testsuite/systemtap.examples/io/traceio.stp')
-rwxr-xr-x | testsuite/systemtap.examples/io/traceio.stp | 4 |
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 } |