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
staging: rtl8192u: remove redundant assignment to pointer crypt
[linux/fpc-iii.git]
/
tools
/
testing
/
selftests
/
bpf
/
progs
/
xdp_dummy.c
blob
43b0ef1001ede9c415eb43854956ade4987fa317
1
// SPDX-License-Identifier: GPL-2.0
2
3
#define KBUILD_MODNAME
"xdp_dummy"
4
#include <linux/bpf.h>
5
#include
"bpf_helpers.h"
6
7
SEC
(
"xdp_dummy"
)
8
int
xdp_dummy_prog
(
struct
xdp_md
*
ctx
)
9
{
10
return
XDP_PASS
;
11
}
12
13
char
_license
[]
SEC
(
"license"
) =
"GPL"
;