#include "vmlinux.h" #include #include SEC("xdp") int hello(struct xdp_md *ctx) { bpf_printk("Hello, World! %ud \n", ctx->data); return XDP_PASS; } char LICENSE[] SEC("license") = "GPL";