bpf skeleton
This blog’s content is copied from: BPF skeleton and BPF app lifecycle and libbpf -bootstrap
bpf skeleton theory Here is the main libbpf concepts and phases that each BPF application goes through. BPF application consists of a set of BPF programs, either cooperating or completely independent, and BPF maps and global variables, shared between all BPF programs (allowing them to cooperate on a common set of data). BPF maps and global variables are also accessible from user-space.