repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
of: MSI: Simplify irqdomain lookup
[linux/fpc-iii.git]
/
tools
/
build
/
feature
/
test-bpf.c
blob
062bac811af962433fb75786cdffe708ad8c6bd6
1
#include <linux/bpf.h>
2
3
int
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
}