Up to higher level directory | |||
Name | Date | Size | |
---|---|---|---|
bpf_agent.c | 21-Oct-2016 | 6K | |
bpf_cyclic.c | 21-Oct-2016 | 669 | |
bpf_graft.c | 21-Oct-2016 | 1.8K | |
bpf_prog.c | 21-Oct-2016 | 14.7K | |
bpf_shared.c | 21-Oct-2016 | 1.3K | |
bpf_shared.h | 21-Oct-2016 | 341 | |
bpf_sys.h | 21-Oct-2016 | 462 | |
bpf_tailcall.c | 21-Oct-2016 | 2.5K | |
README | 21-Oct-2016 | 492 |
1 eBPF toy code examples (running in kernel) to familiarize yourself 2 with syntax and features: 3 4 - bpf_prog.c -> Classifier examples with using maps 5 - bpf_shared.c -> Ingress/egress map sharing example 6 - bpf_tailcall.c -> Using tail call chains 7 - bpf_cyclic.c -> Simple cycle as tail calls 8 - bpf_graft.c -> Demo on altering runtime behaviour 9 10 User space code example: 11 12 - bpf_agent.c -> Counterpart to bpf_prog.c for user 13 space to transfer/read out map data 14