summaryrefslogtreecommitdiffstats
path: root/rpc.stp
diff options
context:
space:
mode:
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") }
+