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 v4.3-rc1 18 lines 272 B view raw
1#include <linux/bpf.h> 2 3int main(void) 4{ 5 union bpf_attr attr; 6 7 attr.prog_type = BPF_PROG_TYPE_KPROBE; 8 attr.insn_cnt = 0; 9 attr.insns = 0; 10 attr.license = 0; 11 attr.log_buf = 0; 12 attr.log_size = 0; 13 attr.log_level = 0; 14 attr.kern_version = 0; 15 16 attr = attr; 17 return 0; 18}