Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 13 lines 271 B view raw
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}