]> Git Repo - linux.git/blob - tools/testing/selftests/bpf/progs/tc_dummy.c
Linux 6.14-rc3
[linux.git] / tools / testing / selftests / bpf / progs / tc_dummy.c
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/bpf.h>
3 #include <bpf/bpf_helpers.h>
4 #include "bpf_legacy.h"
5
6 SEC("tc")
7 int entry(struct __sk_buff *skb)
8 {
9         return 1;
10 }
11
12 char __license[] SEC("license") = "GPL";
This page took 0.030269 seconds and 4 git commands to generate.