Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.11-rc3 13 lines 238 B view raw
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";