summaryrefslogtreecommitdiffstats
path: root/tracepoints
diff options
context:
space:
mode:
authorSteve Dickson <steved@redhat.com>2010-07-25 14:30:43 -0400
committerSteve Dickson <steved@redhat.com>2010-07-25 14:30:43 -0400
commit9135439c59faaff1018e486beb3b03ee48127b92 (patch)
treecb74539d0d7e5d4327e6344c8e6c4f42cae76206 /tracepoints
parent7c2fe2a9d4b9f3f91f3ec24e78bc5471ab2a78d1 (diff)
downloadsystemtap-9135439c59faaff1018e486beb3b03ee48127b92.tar.gz
systemtap-9135439c59faaff1018e486beb3b03ee48127b92.tar.xz
systemtap-9135439c59faaff1018e486beb3b03ee48127b92.zip
a number of updates an new files
Signed-off-by: Steve Dickson <steved@redhat.com>
Diffstat (limited to 'tracepoints')
-rw-r--r--tracepoints/rpc_call_status.stp7
1 files changed, 2 insertions, 5 deletions
diff --git a/tracepoints/rpc_call_status.stp b/tracepoints/rpc_call_status.stp
index 37ac5e2..06fa3b3 100644
--- a/tracepoints/rpc_call_status.stp
+++ b/tracepoints/rpc_call_status.stp
@@ -1,11 +1,6 @@
/*
* stap -g -I ../tapset rpc_call_status.stp
*/
-%{
-#include <linux/sunrpc/svc.h>
-#include <linux/sunrpc/sched.h>
-#include <linux/sunrpc/clnt.h>
-%}
probe kernel.trace("rpc_bind_status")
{
@@ -15,6 +10,7 @@ probe kernel.trace("rpc_bind_status")
execname(), pid(), cl_server($task), cl_prog($task),
terror, errno_str(terror));
}
+/*
probe kernel.trace("rpc_connect_status")
{
terror = task_status($task);
@@ -23,6 +19,7 @@ probe kernel.trace("rpc_connect_status")
execname(), pid(), cl_server($task), cl_prog($task),
terror, errno_str(terror));
}
+*/
probe kernel.trace("rpc_call_status")
{
terror = task_status($task);