已合并
Defines data structures and constants related to collecting LLC statistics for performance analysis and monitoring #445
chendexi创建于 2023年7月1日
Defines data structures and constants related to collecting LLC statistics for performance analysis and monitoring #445
已合并
chendexi创建于 2023年7月1日
refs/pull/445/head合入到master
1 个文件变更+19-0
Aobservation/src/llcstat/llcstat.h+19-0
@@ -0,0 +1,19 @@
1+// SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause)
2+#ifndef __LLCSTAT_H
3+#define __LLCSTAT_H
4+ 
5+#define TASK_COMM_LEN 16
6+ 
7+struct value_info {
8+ __u64 ref;
9+ __u64 miss;
10+ char comm[TASK_COMM_LEN];
11+};
12+ 
13+struct key_info {
14+ __u32 cpu;
15+ __u32 pid;
16+ __u32 tid;
17+};
18+ 
19+#endif