Sign in
android-kvm
/
linux
/
241c7ed4d4815cd7d9c52c8f97bf13181e32ca29
/
.
/
tools
/
testing
/
selftests
/
net
/
sample_ret0.bpf.c
blob: 1df5ca98bb6507dbdcb180e08fb93687eadbcb2c [
file
] [
log
] [
blame
]
/* SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) */
#define
SEC
(
name
)
__attribute__
((
section
(
name
),
used
))
/* Sample program which should always load for testing control paths. */
SEC
(
"xdp"
)
int
func
()
{
return
0
;
}