// SPDX-License-Identifier: GPL-2.0 #include #include #include #include #include struct task_struct; SEC("fentry/__set_task_comm") int BPF_PROG(prog1, struct task_struct *tsk, const char *buf, bool exec) { return 0; } SEC("fexit/__set_task_comm") int BPF_PROG(prog2, struct task_struct *tsk, const char *buf, bool exec) { return 0; } char _license[] SEC("license") = "GPL";