1 /* Copyright (c) 2016 Sargun Dhillon <sargun@sargun.me>
3 * This program is free software; you can redistribute it and/or
4 * modify it under the terms of version 2 of the GNU General Public
5 * License as published by the Free Software Foundation.
9 #include <linux/version.h>
10 #include <bpf/bpf_helpers.h>
11 #include <bpf/bpf_tracing.h>
12 #include <bpf/bpf_core_read.h>
15 __uint(type
, BPF_MAP_TYPE_CGROUP_ARRAY
);
16 __uint(key_size
, sizeof(u32
));
17 __uint(value_size
, sizeof(u32
));
18 __uint(max_entries
, 1);
19 } cgroup_map
SEC(".maps");
22 __uint(type
, BPF_MAP_TYPE_ARRAY
);
25 __uint(max_entries
, 1);
26 } perf_map
SEC(".maps");
28 /* Writes the last PID that called sync to a map at index 0 */
30 int BPF_KSYSCALL(bpf_prog1
)
32 u64 pid
= bpf_get_current_pid_tgid();
35 if (!bpf_current_task_under_cgroup(&cgroup_map
, 0))
38 bpf_map_update_elem(&perf_map
, &idx
, &pid
, BPF_ANY
);
42 char _license
[] SEC("license") = "GPL";
43 u32 _version
SEC("version") = LINUX_VERSION_CODE
;