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") }