blob: 72ccccb45925cd102f6413d3c8fd1adc96f9fcfd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
/* Data structures shared between BPF and tools. */
#ifndef UTIL_BPF_SKEL_SYSCALL_SUMMARY_H
#define UTIL_BPF_SKEL_SYSCALL_SUMMARY_H
enum syscall_aggr_mode {
SYSCALL_AGGR_THREAD,
SYSCALL_AGGR_CPU,
SYSCALL_AGGR_CGROUP,
};
struct syscall_key {
u64 cgroup;
int cpu_or_tid;
int nr;
};
struct syscall_stats {
u64 total_time;
u64 squared_sum;
u64 max_time;
u64 min_time;
u32 count;
u32 error;
};
#endif /* UTIL_BPF_SKEL_SYSCALL_SUMMARY_H */
|