Select the types of activity you want to include in your feed.
1// SPDX-License-Identifier: GPL-2.0 2/* Copyright (c) 2025 Meta */ 3#include <linux/bpf.h> 4#include <bpf/bpf_helpers.h> 5#include <bpf/bpf_tracing.h> 6 7char _license[] SEC("license") = "GPL"; 8 9SEC("fentry/bpf_fentry_test1") 10int BPF_PROG(fentry_handler, int a) 11{ 12 return 0; 13}