Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tracex7_kern.c « bpf « samples - github.com/torvalds/linux.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c5a92df8ac311c781cc2f89c615d28b63f2e12c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <uapi/linux/ptrace.h>
#include <uapi/linux/bpf.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;