eBPF Talk: 一个 ARRAY bpf map 的使用细节
创建 bpf map 时,出现了如下错误: 1 failed to load bpf: failed to create map: invalid argument 看下需要创建的 bpf map: 1 2 3 4 5 6 struct { __uint(type, BPF_MAP_TYPE_ARRAY); __type(key, __u8); __type(value, bitmap); __uint(max_entries, PROTO_MAX_ENTRIES); } acl_protocol SEC(".maps"); 想着,需要处理的 protocol 也就 TCP