1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Copyright (c) 2017 Facebook
6 #include <bpf/bpf_helpers.h>
10 __uint(type, BPF_MAP_TYPE_ARRAY);
11 __uint(max_entries, 1);
14 } test_map_id SEC(".maps");
16 SEC("raw_tp/sys_enter")
17 int test_obj_id(void *ctx)
22 value = bpf_map_lookup_elem(&test_map_id, &key);