summaryrefslogtreecommitdiffstats
path: root/sunrpc/force_rebind.stp
blob: 2fa92c71319612bee16678e39e64096dcd667031 (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
/*
 * stap -g -I../tapset force_rebind.stp
 */
probe module("sunrpc").function("call_connect_status")
{
	terror = task_status($task);
	if (terror)
		printf("call_connect_status:%s:%s: error %d (%s)\n", 
			cl_server($task), cl_prog($task), terror, errno_str(terror));
}
probe module("sunrpc").function("call_status")
{
	terror = task_status($task);
	if (terror)
		printf("call_status:%s:%s: error %d (%s)\n", 
			cl_server($task), cl_prog($task), terror, errno_str(terror));
}
probe module("sunrpc").function("rpc_force_rebind")
{
	printf("rpc_force_rebind: clnt %p\n", $clnt);
}
probe module("sunrpc").function("call_bind_status")
{
	terror = task_status($task);
	if (terror)
		printf("call_bind_status:%s:%s: error %d (%s)\n", 
			cl_server($task), cl_prog($task), terror, errno_str(terror));
}
probe begin { log("starting rpc_force_rebind probe") }
probe end { log("ending rpc_force_rebind probe") }