WIP FPC-III support
[linux/fpc-iii.git] / tools / testing / selftests / bpf / progs / metadata_unused.c
blob672a0d19f8d0c76bacc5245ca0601f7338853961
1 // SPDX-License-Identifier: GPL-2.0-only
3 #include <linux/bpf.h>
4 #include <bpf/bpf_helpers.h>
6 volatile const char bpf_metadata_a[] SEC(".rodata") = "foo";
7 volatile const int bpf_metadata_b SEC(".rodata") = 1;
9 SEC("cgroup_skb/egress")
10 int prog(struct xdp_md *ctx)
12 return 0;
15 char _license[] SEC("license") = "GPL";