From ace9429bb58fd418f0c81d4c2835699bddf6bde6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Thu, 11 Apr 2024 10:27:49 +0200 Subject: Adding upstream version 6.6.15. Signed-off-by: Daniel Baumann --- samples/bpf/tracex7.bpf.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 samples/bpf/tracex7.bpf.c (limited to 'samples/bpf/tracex7.bpf.c') diff --git a/samples/bpf/tracex7.bpf.c b/samples/bpf/tracex7.bpf.c new file mode 100644 index 0000000000..ab8d6704a5 --- /dev/null +++ b/samples/bpf/tracex7.bpf.c @@ -0,0 +1,15 @@ +#include "vmlinux.h" +#include +#include + +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; -- cgit v1.2.3