10.04 XDP
Why XDP?
HELLO XDP World
A Gentle Introduction to XDP | Datadog
#include <linux/bpf.h>
#include <bpf/bpf_helpers.h>
SEC("xdp")
int xdp_counter(struct xdp_md *ctx)
{
void *data = (void *)(long)ctx->data;
void *data_end = (void *)(long)ctx->data_end;
}
GitHub - facebookincubator/katran: A high performance layer 4 load balancer
eBPF XDP: The Basics and a Quick Tutorial | Tigera