1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Copyright (c) 2018 Facebook */
4 #include <bpf/bpf_helpers.h>
5 #include "bpf_legacy.h"
7 int _version
SEC("version") = 1;
14 struct bpf_map_def
SEC("maps") btf_map
= {
15 .type
= BPF_MAP_TYPE_ARRAY
,
16 .key_size
= sizeof(int),
17 .value_size
= sizeof(struct ipv_counts
),
21 BPF_ANNOTATE_KV_PAIR(btf_map
, int, struct ipv_counts
);
23 __attribute__((noinline
))
24 int test_long_fname_2(void)
26 struct ipv_counts
*counts
;
29 counts
= bpf_map_lookup_elem(&btf_map
, &key
);
38 __attribute__((noinline
))
39 int test_long_fname_1(void)
41 return test_long_fname_2();
44 SEC("dummy_tracepoint")
45 int _dummy_tracepoint(void *arg
)
47 return test_long_fname_1();
50 char _license
[] SEC("license") = "GPL";