pub type BpfInstruction = u64;Expand description
Each BPF instruction is 8 bytes long and 4 byte aligned. This alignment needs to be satisfied in order for a BPF code to be accepted by the syscalls. Using u64 here is is safe as it has same size and even bigger alignment.