Steven Rostedt (VMware) | bb730b5 | 2018-08-16 11:26:55 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Frederic Weisbecker | 002bb86 | 2009-01-10 11:34:13 -0800 | [diff] [blame] | 2 | #ifndef __TRACE_STAT_H |
| 3 | #define __TRACE_STAT_H |
| 4 | |
| 5 | #include <linux/seq_file.h> |
| 6 | |
| 7 | /* |
| 8 | * If you want to provide a stat file (one-shot statistics), fill |
| 9 | * an iterator with stat_start/stat_next and a stat_show callbacks. |
| 10 | * The others callbacks are optional. |
| 11 | */ |
| 12 | struct tracer_stat { |
| 13 | /* The name of your stat file */ |
| 14 | const char *name; |
| 15 | /* Iteration over statistic entries */ |
Steven Rostedt | 4254800 | 2009-03-24 13:38:36 -0400 | [diff] [blame] | 16 | void *(*stat_start)(struct tracer_stat *trace); |
Frederic Weisbecker | 002bb86 | 2009-01-10 11:34:13 -0800 | [diff] [blame] | 17 | void *(*stat_next)(void *prev, int idx); |
| 18 | /* Compare two entries for stats sorting */ |
Andy Shevchenko | 80042c8 | 2019-10-07 16:56:56 +0300 | [diff] [blame] | 19 | cmp_func_t stat_cmp; |
Frederic Weisbecker | 002bb86 | 2009-01-10 11:34:13 -0800 | [diff] [blame] | 20 | /* Print a stat entry */ |
| 21 | int (*stat_show)(struct seq_file *s, void *p); |
Lai Jiangshan | d8ea37d | 2009-07-06 16:10:18 +0800 | [diff] [blame] | 22 | /* Release an entry */ |
| 23 | void (*stat_release)(void *stat); |
Frederic Weisbecker | 002bb86 | 2009-01-10 11:34:13 -0800 | [diff] [blame] | 24 | /* Print the headers of your stat entries */ |
| 25 | int (*stat_headers)(struct seq_file *s); |
| 26 | }; |
| 27 | |
| 28 | /* |
| 29 | * Destroy or create a stat file |
| 30 | */ |
| 31 | extern int register_stat_tracer(struct tracer_stat *trace); |
| 32 | extern void unregister_stat_tracer(struct tracer_stat *trace); |
| 33 | |
| 34 | #endif /* __TRACE_STAT_H */ |