summaryrefslogtreecommitdiffstats
path: root/sunrpc/auth-client.stp
blob: 289adc1bb176c90893324c883dc29c2fd29fc62b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
probe module("sunrpc").function("rpcauth_wrap_req")
{
	printf("rpcauth_wrap_req: encode %p\n", $encode);
}

probe module("auth_rpcgss").function("gss_unwrap_resp")
{
	printf("gss_unwrap_resp: task %p decode %p\n", $task, $decode);
}
probe module("auth_rpcgss").function("gss_unwrap_resp").return
{
	printf("gss_unwrap_resp: %d\n", $return);
}
*/
probe module("sunrpc").function("rpcauth_generic_bind_cred")
{
	printf("rpcauth_generic_bind_cred:\n");
	print_stack(backtrace());
}
probe module("nfs").function("nfs4_xdr_enc_create")
{
	printf("nfs4_xdr_enc_create:\n");
	print_stack(backtrace());
}
probe module("nfs").function("nfs3_xdr_createres").return
{
	if ($return)
		printf("nfs3_xdr_createres: %d\n", $return);
}
probe module("nfs").function("nfs4_xdr_dec_create").return
{
	if ($return)
		printf("nfs4_xdr_dec_create: %d\n", $return);
}
probe begin { log("starting  sunrpc auth probe") }
probe end { log("ending sunrpc auth probe") }