summaryrefslogtreecommitdiffstats
path: root/mnt.stp
diff options
context:
space:
mode:
authorSteve Dickson <steved@redhat.com>2008-01-29 15:02:30 -0500
committerSteve Dickson <steved@redhat.com>2008-01-29 15:02:30 -0500
commita0630d519e87f5c5d851d3127085a50592bb20b4 (patch)
tree589aff766c2131f715b595de40ed19b57719b0cb /mnt.stp
downloadsystemtap-a0630d519e87f5c5d851d3127085a50592bb20b4.tar.gz
systemtap-a0630d519e87f5c5d851d3127085a50592bb20b4.tar.xz
systemtap-a0630d519e87f5c5d851d3127085a50592bb20b4.zip
Initial Commit
Diffstat (limited to 'mnt.stp')
-rw-r--r--mnt.stp14
1 files changed, 14 insertions, 0 deletions
diff --git a/mnt.stp b/mnt.stp
new file mode 100644
index 0000000..7a6df87
--- /dev/null
+++ b/mnt.stp
@@ -0,0 +1,14 @@
+probe module("nfs").function("nfs_compare_mount_options")
+{
+ printf("nfs_compare_mount_options: a %p b %p\n", $a, $b);
+ printf("clnt %p/%p\n", $a->nfs_client, $b->nfs_client);
+ printf("flags %x/%x\n", $a->flags, $b->flags);
+ printf("wsize %d/%d\n", $a->wsize, $b->wsize);
+ printf("rsize %d/%d\n", $a->rsize, $b->rsize);
+ printf("acregmin %d/%d\n", $a->acregmin, $b->acregmin);
+ printf("acregmax %d/%d\n", $a->acregmax, $b->acregmax);
+ printf("acdirmin %d/%d\n", $a->acdirmin, $b->acdirmin);
+ printf("acdirmax %d/%d\n", $a->acdirmax, $b->acdirmax);
+}
+probe begin { log("starting probe") }
+probe end { log("ending probe") }