4 #include <linux/seq_file.h>
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.
12 /* The name of your stat file */
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 /* Print the headers of your stat entries */
22 int (*stat_headers
)(struct seq_file
*s
);
26 * Destroy or create a stat file
28 extern int register_stat_tracer(struct tracer_stat
*trace
);
29 extern void unregister_stat_tracer(struct tracer_stat
*trace
);
31 #endif /* __TRACE_STAT_H */