diff options
author | Dave Brolley <brolley@redhat.com> | 2009-11-24 14:51:46 -0500 |
---|---|---|
committer | Dave Brolley <brolley@redhat.com> | 2009-11-24 14:51:46 -0500 |
commit | 7067e1b0418eed528fe2d102654dbe12bb9236af (patch) | |
tree | 8120ae0263ef32cdc7fa3b2132e7acb3af03d3e0 /testsuite/buildok/ioblock_test.stp | |
parent | 37f1e3c413aee81f7590de431d232a474eb412ee (diff) | |
parent | 90bba7158de040705a101ba1fdf6062866b4b4e9 (diff) | |
download | systemtap-steved-7067e1b0418eed528fe2d102654dbe12bb9236af.tar.gz systemtap-steved-7067e1b0418eed528fe2d102654dbe12bb9236af.tar.xz systemtap-steved-7067e1b0418eed528fe2d102654dbe12bb9236af.zip |
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
Diffstat (limited to 'testsuite/buildok/ioblock_test.stp')
-rwxr-xr-x | testsuite/buildok/ioblock_test.stp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/testsuite/buildok/ioblock_test.stp b/testsuite/buildok/ioblock_test.stp index 4d3dadfa..21595021 100755 --- a/testsuite/buildok/ioblock_test.stp +++ b/testsuite/buildok/ioblock_test.stp @@ -25,3 +25,10 @@ probe ioblock.end { devname, sector, flags, rw, bio_rw_str(rw), vcnt, idx, phys_segments, size, bytes_done, error, ino) %) } + +probe ioblock_trace.* +{ + log(pp()) + printf("%s\t%d\t%d\t%d\t%d\t%s\t%d\t%d\t%d\t%d\t%d\t%d\t%p\t%p\t%d\n", + devname, q, sector, flags, rw, bio_rw_str(rw), vcnt, idx, phys_segments, size, bytes_done, ino, p_start_sect, bdev_contains, bdev) +} |