]> Git Repo - J-linux.git/blob - tools/testing/selftests/bpf/progs/sockmap_tcp_msg_prog.c
Merge tag 'vfs-6.13-rc7.fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs
[J-linux.git] / tools / testing / selftests / bpf / progs / sockmap_tcp_msg_prog.c
1 #include <linux/bpf.h>
2
3 #include <bpf/bpf_helpers.h>
4 #include <bpf/bpf_endian.h>
5
6 SEC("sk_msg1")
7 int bpf_prog1(struct sk_msg_md *msg)
8 {
9         return SK_PASS;
10 }
11
12 char _license[] SEC("license") = "GPL";
This page took 0.027054 seconds and 4 git commands to generate.