Merge branch 'pm-tools'
[deliverable/linux.git] / tools / build / feature / test-bpf.c
CommitLineData
1b76c13e
WN
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}
This page took 0.044942 seconds and 5 git commands to generate.