summaryrefslogtreecommitdiffstats
path: root/nfs/nfs_xdr.stp
blob: 3da97a4c2d3495955d78be29a82b69bacd3a3014 (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
38
39
probe module("nfs").function("decode_opaque_fixed").return
{
	if ($return)
		printf("decode_opaque_fixed return: %d\n", $return);
}
probe module("nfs").function("_nfs4_proc_readdir").return
{
	if ($return < 0)
		printf("_nfs4_proc_readdir return: %d\n", $return);
}
probe module("nfs").function("decode_attr_type").return
{
	if ($return < 0)
		printf("decode_attr_type return: %d\n", $return);
}
probe module("nfs").function("decode_attr_change").return
{
	if ($return < 0)
		printf("decode_attr_change return: %d\n", $return);
}
probe module("nfs").function("decode_attr_size").return
{
	if ($return < 0)
		printf("decode_attr_size return: %d\n", $return);
}
/*
probe module("nfs").statement("*@fs/nfs/nfs4xdr.c:6507")
{
	log("hellow")
}
probe module("nfs").function("decode_readdir").return
{
	if ($return)
		printf("decode_readdir return: %d\n", $return);
}
*/
probe begin { log("starting nfs_xdr probe") }
probe end { log("ending nfs_xdr probe") }