Contributors: 13
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Jin Yao |
28 |
26.67% |
3 |
13.64% |
Jiri Olsa |
19 |
18.10% |
4 |
18.18% |
Arnaldo Carvalho de Melo |
12 |
11.43% |
4 |
18.18% |
Ian Rogers |
12 |
11.43% |
2 |
9.09% |
Andi Kleen |
10 |
9.52% |
1 |
4.55% |
Lin Ming |
8 |
7.62% |
1 |
4.55% |
Wang Nan |
5 |
4.76% |
1 |
4.55% |
Robert Richter |
3 |
2.86% |
1 |
4.55% |
Masami Hiramatsu |
3 |
2.86% |
1 |
4.55% |
Frédéric Weisbecker |
2 |
1.90% |
1 |
4.55% |
Borislav Petkov |
1 |
0.95% |
1 |
4.55% |
David Howells |
1 |
0.95% |
1 |
4.55% |
Greg Kroah-Hartman |
1 |
0.95% |
1 |
4.55% |
Total |
105 |
|
22 |
|
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __PERF_PARSE_EVENTS_HYBRID_H
#define __PERF_PARSE_EVENTS_HYBRID_H
#include <linux/list.h>
#include <stdbool.h>
#include <linux/types.h>
#include <linux/perf_event.h>
#include <string.h>
int parse_events__add_numeric_hybrid(struct parse_events_state *parse_state,
struct list_head *list,
struct perf_event_attr *attr,
const char *name, const char *metric_id,
struct list_head *config_terms,
bool *hybrid);
int parse_events__add_cache_hybrid(struct list_head *list, int *idx,
struct perf_event_attr *attr,
const char *name, const char *metric_id,
struct list_head *config_terms,
bool *hybrid,
struct parse_events_state *parse_state);
#endif /* __PERF_PARSE_EVENTS_HYBRID_H */