eBPF verifier error in reading map value struct with a __u64 element

Advertisements I’m trying to use an eBPF map which looks like this: struct { __uint(type, BPF_MAP_TYPE_HASH); __uint(max_entries, MAX_ENTRIES); __type(key, u32); __type(value, struct sock_info *); } lookup SEC(".maps"); and sock_info is defined as follows: struct sock_info { __u64 ctime; __u16 sport; __u16 dport; }; When I try to access the value from the map, I am… Read More eBPF verifier error in reading map value struct with a __u64 element