xref: /linux/tools/testing/selftests/bpf/progs/xdp_dummy.c (revision e3b2949e3fa2fd8c19cd5fbb0424d38f70a70e9c)
1 // SPDX-License-Identifier: GPL-2.0
2 
3 #define KBUILD_MODNAME "xdp_dummy"
4 #include <linux/bpf.h>
5 #include <bpf/bpf_helpers.h>
6 
7 SEC("xdp")
8 int xdp_dummy_prog(struct xdp_md *ctx)
9 {
10 	return XDP_PASS;
11 }
12 
13 char _license[] SEC("license") = "GPL";
14