/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _PERF_PERF_H #define _PERF_PERF_H #include <time.h> #include <stdbool.h> #include <linux/types.h> #include <linux/perf_event.h> extern bool test_attr__enabled; void test_attr__ready(void); void test_attr__init(void); void test_attr__open(struct perf_event_attr *attr, pid_t pid, int cpu, int fd, int group_fd, unsigned long flags); #define HAVE_ATTR_TEST #include "perf-sys.h"
static inline unsigned long long rdclock(void) { struct timespec ts; clock_gettime(CLOCK_MONOTONIC, &ts); return ts.tv_sec * 1000000000ULL + ts.tv_nsec; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Thomas Gleixner | 34 | 100.00% | 1 | 100.00% |
Total | 34 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Jiri Olsa | 60 | 20.98% | 5 | 11.11% |
Arnaldo Carvalho de Melo | 55 | 19.23% | 8 | 17.78% |
Thomas Gleixner | 45 | 15.73% | 2 | 4.44% |
Adrian Hunter | 27 | 9.44% | 5 | 11.11% |
Namhyung Kim | 25 | 8.74% | 3 | 6.67% |
Andi Kleen | 15 | 5.24% | 5 | 11.11% |
Peter Zijlstra | 13 | 4.55% | 2 | 4.44% |
Stéphane Eranian | 10 | 3.50% | 3 | 6.67% |
Kan Liang | 7 | 2.45% | 2 | 4.44% |
Wang Nan | 6 | 2.10% | 2 | 4.44% |
Feng Tang | 6 | 2.10% | 1 | 2.22% |
Yanmin Zhang | 5 | 1.75% | 1 | 2.22% |
Andrey Vagin | 3 | 1.05% | 1 | 2.22% |
Hari Bathini | 3 | 1.05% | 1 | 2.22% |
Roberto Agostino Vitillo | 2 | 0.70% | 1 | 2.22% |
David Howells | 2 | 0.70% | 1 | 2.22% |
Greg Kroah-Hartman | 1 | 0.35% | 1 | 2.22% |
David Ahern | 1 | 0.35% | 1 | 2.22% |
Total | 286 | 100.00% | 45 | 100.00% |