cregit-Linux how code gets into the kernel

Release 4.16 samples/bpf/tracex7_kern.c

Directory: samples/bpf
#include <uapi/linux/ptrace.h>
#include <uapi/linux/bpf.h>
#include <linux/version.h>
#include "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; }

Contributors

PersonTokensPropCommitsCommitProp
Josef Bacik27100.00%1100.00%
Total27100.00%1100.00%

char _license[] SEC("license") = "GPL"; u32 _version SEC("version") = LINUX_VERSION_CODE;

Overall Contributors

PersonTokensPropCommitsCommitProp
Josef Bacik62100.00%1100.00%
Total62100.00%1100.00%
Directory: samples/bpf
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.