Root/
1 | #ifndef __TRACE_STAT_H |
2 | #define __TRACE_STAT_H |
3 | |
4 | #include <linux/seq_file.h> |
5 | |
6 | /* |
7 | * If you want to provide a stat file (one-shot statistics), fill |
8 | * an iterator with stat_start/stat_next and a stat_show callbacks. |
9 | * The others callbacks are optional. |
10 | */ |
11 | struct tracer_stat { |
12 | /* The name of your stat file */ |
13 | const char *name; |
14 | /* Iteration over statistic entries */ |
15 | void *(*stat_start)(struct tracer_stat *trace); |
16 | void *(*stat_next)(void *prev, int idx); |
17 | /* Compare two entries for stats sorting */ |
18 | int (*stat_cmp)(void *p1, void *p2); |
19 | /* Print a stat entry */ |
20 | int (*stat_show)(struct seq_file *s, void *p); |
21 | /* Release an entry */ |
22 | void (*stat_release)(void *stat); |
23 | /* Print the headers of your stat entries */ |
24 | int (*stat_headers)(struct seq_file *s); |
25 | }; |
26 | |
27 | /* |
28 | * Destroy or create a stat file |
29 | */ |
30 | extern int register_stat_tracer(struct tracer_stat *trace); |
31 | extern void unregister_stat_tracer(struct tracer_stat *trace); |
32 | |
33 | #endif /* __TRACE_STAT_H */ |
34 |
Branches:
ben-wpan
ben-wpan-stefan
javiroman/ks7010
jz-2.6.34
jz-2.6.34-rc5
jz-2.6.34-rc6
jz-2.6.34-rc7
jz-2.6.35
jz-2.6.36
jz-2.6.37
jz-2.6.38
jz-2.6.39
jz-3.0
jz-3.1
jz-3.11
jz-3.12
jz-3.13
jz-3.15
jz-3.16
jz-3.18-dt
jz-3.2
jz-3.3
jz-3.4
jz-3.5
jz-3.6
jz-3.6-rc2-pwm
jz-3.9
jz-3.9-clk
jz-3.9-rc8
jz47xx
jz47xx-2.6.38
master
Tags:
od-2011-09-04
od-2011-09-18
v2.6.34-rc5
v2.6.34-rc6
v2.6.34-rc7
v3.9