summaryrefslogtreecommitdiffstats
path: root/top-nfscalls.stp
diff options
context:
space:
mode:
authorSteve Dickson <steved@redhat.com>2008-09-10 10:49:47 -0400
committerSteve Dickson <steved@redhat.com>2008-09-10 10:49:47 -0400
commit85014ffa32c9c07487fa729d81a0795c4c3ea8c4 (patch)
tree037847509fe8f4253f8801a473a99c9292f79893 /top-nfscalls.stp
parent3fc0e545a2aa1a2a3717cb3fc652f8876a03c073 (diff)
downloadsystemtap-85014ffa32c9c07487fa729d81a0795c4c3ea8c4.tar.gz
systemtap-85014ffa32c9c07487fa729d81a0795c4c3ea8c4.tar.xz
systemtap-85014ffa32c9c07487fa729d81a0795c4c3ea8c4.zip
Cleaned up the top-* scripts
Signed-off-by: Steve Dickson <steved@redhat.com>
Diffstat (limited to 'top-nfscalls.stp')
-rwxr-xr-xtop-nfscalls.stp5
1 files changed, 3 insertions, 2 deletions
diff --git a/top-nfscalls.stp b/top-nfscalls.stp
index f3a36e3..62fe9d0 100755
--- a/top-nfscalls.stp
+++ b/top-nfscalls.stp
@@ -13,7 +13,8 @@ probe kernel.function("*@fs/nfs") ?,
}
probe end {
- foreach (name in nfscalls- limit 20)
- printf("%10d %s\n", nfscalls[name], name)
+ printf("Collating data...\n");
+ foreach (name in nfscalls- limit 20)
+ printf("%10d %s\n", nfscalls[name], name)
}