summaryrefslogtreecommitdiffstats
path: root/rpc.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 /rpc.stp
downloadsystemtap-a0630d519e87f5c5d851d3127085a50592bb20b4.tar.gz
systemtap-a0630d519e87f5c5d851d3127085a50592bb20b4.tar.xz
systemtap-a0630d519e87f5c5d851d3127085a50592bb20b4.zip
Initial Commit
Diffstat (limited to 'rpc.stp')
-rw-r--r--rpc.stp16
1 files changed, 16 insertions, 0 deletions
diff --git a/rpc.stp b/rpc.stp
new file mode 100644
index 0000000..03d2bfa
--- /dev/null
+++ b/rpc.stp
@@ -0,0 +1,16 @@
+probe module("sunrpc").function("rpc_killall_tasks")
+{
+ printf("rpc_killall_tasks: clnt %p\n", $clnt);
+ //print_backtrace();
+}
+probe module("sunrpc").function("rpc_shutdown_client")
+{
+ printf("rpc_shutdown_client: clnt %p\n", $clnt);
+}
+probe module("sunrpc").function("rpc_release_calldata")
+{
+ printf("rpc_release_calldata: ops %p calldata %p\n", $ops, $calldata);
+}
+probe begin { log("starting probe") }
+probe end { log("ending probe") }
+