Files
android_kernel_samsung_sm8750/samples/bpf/tracex7.bpf.c
2025-08-12 22:16:57 +02:00

16 lines
301 B
C
Executable File

#include "vmlinux.h"
#include <linux/version.h>
#include <bpf/bpf_helpers.h>
SEC("kprobe/open_ctree")
int bpf_prog1(struct pt_regs *ctx)
{
unsigned long rc = -12;
bpf_override_return(ctx, rc);
return 0;
}
char _license[] SEC("license") = "GPL";
u32 _version SEC("version") = LINUX_VERSION_CODE;