加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pagefaultsnoop.h 546 Bytes
一键复制 编辑 原始数据 按行查看 历史
/* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */
#ifndef __PAGEFAULTSNOOP_H
#define __PAGEFAULTSNOOP_H
#define TASK_COMM_LEN 16
#define MAX_SLOTS 32
typedef enum {
PF_TYPE_FILE,
PF_TYPE_ANON,
PF_TYPE_SWAP,
PF_TYPE_NUMA,
PF_TYPE_WRITE,
PF_TYPE_MAX,
} pf_type_enum;
struct pagefault_event {
__u64 ts_us;
__u32 pid;
union {
int ret;
__u32 vm_fault;
};
pf_type_enum pf_type;
char task[TASK_COMM_LEN];
unsigned long address;
__s64 delta;
};
struct hist {
__u32 slots[MAX_SLOTS];
};
#endif /* __PAGEFAULTSNOOP_H */
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化