summaryrefslogtreecommitdiffstats
path: root/sunrpc
diff options
context:
space:
mode:
authorSteve Dickson <steved@redhat.com>2009-12-22 13:51:40 -0500
committerSteve Dickson <steved@redhat.com>2009-12-22 13:51:40 -0500
commit2549149b4588b19c2cbca5b38c7876febb3e0e57 (patch)
tree9dc224442043641fe6b784fe3c45a005bd8348a3 /sunrpc
parentcb79a3f04253b9cbda91241abadfc59ad8af38cf (diff)
downloadsystemtap-2549149b4588b19c2cbca5b38c7876febb3e0e57.tar.gz
systemtap-2549149b4588b19c2cbca5b38c7876febb3e0e57.tar.xz
systemtap-2549149b4588b19c2cbca5b38c7876febb3e0e57.zip
Added hexdump()
Signed-off-by: Steve Dickson <steved@redhat.com>
Diffstat (limited to 'sunrpc')
-rw-r--r--sunrpc/auth.stp10
1 files changed, 6 insertions, 4 deletions
diff --git a/sunrpc/auth.stp b/sunrpc/auth.stp
index e5330af..4f08f57 100644
--- a/sunrpc/auth.stp
+++ b/sunrpc/auth.stp
@@ -1,8 +1,7 @@
global rqstp
probe module("sunrpc").function("svcauth_unix_accept")
{
- printf("svcauth_unix_accept: rqstp %p authp %p\n",
- $rqstp, $authp);
+ printf("svcauth_unix_accept: rqstp %s\n", svc_rqst($rqstp));
rqstp = $rqstp;
}
probe module("sunrpc").function("svcauth_unix_accept").return
@@ -15,8 +14,7 @@ probe module("sunrpc").function("svcauth_unix_accept").return
}
probe module("auth_rpcgss").function("svcauth_gss_accept")
{
- printf("svcauth_gss_accept: rqstp %p authp %p\n",
- $rqstp, $authp);
+ printf("svcauth_gss_accept: rqstp %s\n", svc_rqst($rqstp));
rqstp = $rqstp;
}
probe module("auth_rpcgss").function("svcauth_gss_accept").return
@@ -27,6 +25,10 @@ probe module("auth_rpcgss").function("svcauth_gss_accept").return
printf("svcauth_gss_accept: %s\n", svcerror($return));
}
}
+probe module("auth_rpcgss").function("gss_verify_mic").return
+{
+ printf(" gss_verify_mic: %s\n", svcerror($return));
+}
probe begin { log("starting sunrpc auth probe") }
probe end { log("ending sunrpc auth probe") }