From f3ff2ff055a175d88f364693e3cb9cfc857a784e Mon Sep 17 00:00:00 2001 From: Steve Dickson Date: Sat, 13 Jun 2009 06:32:19 -0400 Subject: added rpciod/rpciod.stp Signed-off-by: Steve Dickson --- rpciod/rpciod.stp | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 rpciod/rpciod.stp diff --git a/rpciod/rpciod.stp b/rpciod/rpciod.stp new file mode 100644 index 0000000..37e5aec --- /dev/null +++ b/rpciod/rpciod.stp @@ -0,0 +1,11 @@ +/* + * stap -g -I../tapset rpciod.stp + */ +probe module("sunrpc").function("rpc_execute") +{ + if (task_status($task)) + printf("rpc_execute: task %p\n", $task); +} +probe begin { log("starting rpciod probe") } +probe end { log("ending rpciod probe") } + -- cgit