summaryrefslogtreecommitdiffstats
path: root/sunrpc/rpc_create.stp
blob: 36db8d3135e625b33485e80b18b674322f9131b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
probe module("sunrpc").function("rpc_create").return
{
	printf("rpc_create: %d(%s)\n", $return, errno_str($return));
	//print_stack(backtrace());
}
probe module("sunrpc").function("rpc_ping").return
{
	printf("rpc_ping: 0x%x\n", $return);
}
probe module("sunrpc").function("rpc_create").return
{
	printf("rpc_create: 0x%x\n", $return);
}
probe module("nfs").function("nfs_create_rpc_client").return
{
	printf("nfs_create_rpc_client: %d\n", $return);
}
probe begin { log("starting rpc_create probe") }
probe end { log("ending rpc_create probe") }