Contributors: 11
| Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
| Ian Rogers |
186 |
82.30% |
6 |
30.00% |
| Arnaldo Carvalho de Melo |
12 |
5.31% |
4 |
20.00% |
| Jin Yao |
7 |
3.10% |
2 |
10.00% |
| Namhyung Kim |
6 |
2.65% |
1 |
5.00% |
| Frédéric Weisbecker |
5 |
2.21% |
1 |
5.00% |
| Masami Hiramatsu |
4 |
1.77% |
1 |
5.00% |
| Ingo Molnar |
2 |
0.88% |
1 |
5.00% |
| Thomas Gleixner |
1 |
0.44% |
1 |
5.00% |
| Zhengjun Xing |
1 |
0.44% |
1 |
5.00% |
| David Howells |
1 |
0.44% |
1 |
5.00% |
| Greg Kroah-Hartman |
1 |
0.44% |
1 |
5.00% |
| Total |
226 |
|
20 |
|
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __PERF_PRINT_EVENTS_H
#define __PERF_PRINT_EVENTS_H
#include <linux/perf_event.h>
#include <linux/types.h>
#include <stdbool.h>
struct event_symbol;
struct print_callbacks {
void (*print_start)(void *print_state);
void (*print_end)(void *print_state);
void (*print_event)(void *print_state, const char *topic,
const char *pmu_name, u32 pmu_type,
const char *event_name, const char *event_alias,
const char *scale_unit,
bool deprecated, const char *event_type_desc,
const char *desc, const char *long_desc,
const char *encoding_desc);
void (*print_metric)(void *print_state,
const char *group,
const char *name,
const char *desc,
const char *long_desc,
const char *expr,
const char *threshold,
const char *unit,
const char *pmu_name);
bool (*skip_duplicate_pmus)(void *print_state);
};
/** Print all events, the default when no options are specified. */
void print_events(const struct print_callbacks *print_cb, void *print_state);
void print_sdt_events(const struct print_callbacks *print_cb, void *print_state);
void metricgroup__print(const struct print_callbacks *print_cb, void *print_state);
bool is_event_supported(u8 type, u64 config);
#endif /* __PERF_PRINT_EVENTS_H */