Contributors: 13
| Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
| Ian Rogers |
210 |
78.36% |
6 |
27.27% |
| Arnaldo Carvalho de Melo |
18 |
6.72% |
4 |
18.18% |
| Jin Yao |
7 |
2.61% |
2 |
9.09% |
| Namhyung Kim |
6 |
2.24% |
1 |
4.55% |
| Ingo Molnar |
6 |
2.24% |
1 |
4.55% |
| Jiri Olsa |
6 |
2.24% |
1 |
4.55% |
| Frédéric Weisbecker |
5 |
1.87% |
1 |
4.55% |
| Masami Hiramatsu |
4 |
1.49% |
1 |
4.55% |
| Yunlong Song |
2 |
0.75% |
1 |
4.55% |
| David Howells |
1 |
0.37% |
1 |
4.55% |
| Zhengjun Xing |
1 |
0.37% |
1 |
4.55% |
| Thomas Gleixner |
1 |
0.37% |
1 |
4.55% |
| Greg Kroah-Hartman |
1 |
0.37% |
1 |
4.55% |
| Total |
268 |
|
22 |
|
/* 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);
int print_hwcache_events(const struct print_callbacks *print_cb, void *print_state);
void print_sdt_events(const struct print_callbacks *print_cb, void *print_state);
void print_symbol_events(const struct print_callbacks *print_cb, void *print_state,
unsigned int type, const struct event_symbol *syms,
unsigned int max);
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 */