summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Dickson <steved@redhat.com>2011-09-06 14:53:56 -0400
committerSteve Dickson <steved@redhat.com>2011-09-06 14:53:56 -0400
commitc65778b45aec63b542fa3aa84a4da0b605e65790 (patch)
tree70cf97e961d774abbae90f03ac0347c6481d55ed
parent20e4d14ce447c5765864e9044f3687981c234440 (diff)
downloadsystemtap-c65778b45aec63b542fa3aa84a4da0b605e65790.tar.gz
systemtap-c65778b45aec63b542fa3aa84a4da0b605e65790.tar.xz
systemtap-c65778b45aec63b542fa3aa84a4da0b605e65790.zip
Made top look at all .c files under fs/nfs
Signed-off-by: Steve Dickson <steved@redhat.com>
-rwxr-xr-xtop-nfscalls.stp4
1 files changed, 2 insertions, 2 deletions
diff --git a/top-nfscalls.stp b/top-nfscalls.stp
index 90586e0..ebd3eaf 100755
--- a/top-nfscalls.stp
+++ b/top-nfscalls.stp
@@ -6,8 +6,8 @@ probe begin {
printf("Collecting top NFS procs...\n")
}
-probe kernel.function("*@fs/nfs/*proc.c") ?,
- module("nfs").function("*@fs/nfs/*proc.c") ?
+probe kernel.function("*@fs/nfs/*.c") ?,
+ module("nfs").function("*@fs/nfs/*.c") ?
{
nfscalls[probefunc()]++
}