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

xdp_dummy.c (238B)


      1// SPDX-License-Identifier: GPL-2.0
      2
      3#define KBUILD_MODNAME "xdp_dummy"
      4#include <linux/bpf.h>
      5#include <bpf/bpf_helpers.h>
      6
      7SEC("xdp")
      8int xdp_dummy_prog(struct xdp_md *ctx)
      9{
     10	return XDP_PASS;
     11}
     12
     13char _license[] SEC("license") = "GPL";