cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

test-libbpf-bpf_prog_load.c (230B)


      1// SPDX-License-Identifier: GPL-2.0
      2#include <bpf/bpf.h>
      3
      4int main(void)
      5{
      6	return bpf_prog_load(0 /* prog_type */, NULL /* prog_name */,
      7			     NULL /* license */, NULL /* insns */,
      8			     0 /* insn_cnt */, NULL /* opts */);
      9}