WIP FPC-III support
[linux/fpc-iii.git] / tools / testing / selftests / bpf / progs / test_cgroup_link.c
blob77e47b9e44469b99fc1fa5435e92529a25baaac6
1 // SPDX-License-Identifier: GPL-2.0
2 // Copyright (c) 2020 Facebook
3 #include <linux/bpf.h>
4 #include <bpf/bpf_helpers.h>
6 int calls = 0;
7 int alt_calls = 0;
9 SEC("cgroup_skb/egress1")
10 int egress(struct __sk_buff *skb)
12 __sync_fetch_and_add(&calls, 1);
13 return 1;
16 SEC("cgroup_skb/egress2")
17 int egress_alt(struct __sk_buff *skb)
19 __sync_fetch_and_add(&alt_calls, 1);
20 return 1;
23 char _license[] SEC("license") = "GPL";