iproute2/examples/bpf
Stephen Hemminger 6054c1ebf7 SPDX license identifiers
For all files in iproute2 which do not have an obvious license
identification, mark them with SPDK GPL-2

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
2017-11-24 12:21:35 -08:00
..
bpf_cyclic.c tc, bpf: add support for map pre/allocation 2016-04-11 21:54:47 +00:00
bpf_graft.c tc, bpf: add support for map pre/allocation 2016-04-11 21:54:47 +00:00
bpf_map_in_map.c bpf: support loading map in map from obj 2017-07-18 17:20:45 -07:00
bpf_shared.c tc, bpf: add support for map pre/allocation 2016-04-11 21:54:47 +00:00
bpf_tailcall.c SPDX license identifiers 2017-11-24 12:21:35 -08:00
README examples/bpf: update list of examples 2017-08-09 08:34:13 -07:00

eBPF toy code examples (running in kernel) to familiarize yourself
with syntax and features:

 - bpf_shared.c		-> Ingress/egress map sharing example
 - bpf_tailcall.c	-> Using tail call chains
 - bpf_cyclic.c		-> Simple cycle as tail calls
 - bpf_graft.c		-> Demo on altering runtime behaviour
 - bpf_map_in_map.c     -> Using map in map example