examples/bpf: update list of examples

Remove deleted examples and add the new map in map example.

Signed-off-by: Alexander Alemayhu <alexander@alemayhu.com>
Acked-by: Daniel Borkmann <daniel@iogearbox.net>
This commit is contained in:
Alexander Alemayhu 2017-08-09 05:39:07 +02:00 committed by Stephen Hemminger
parent 089f85694a
commit 4a340fe9b4
1 changed files with 1 additions and 6 deletions

View File

@ -1,13 +1,8 @@
eBPF toy code examples (running in kernel) to familiarize yourself
with syntax and features:
- bpf_prog.c -> Classifier examples with using maps
- 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
User space code example:
- bpf_agent.c -> Counterpart to bpf_prog.c for user
space to transfer/read out map data
- bpf_map_in_map.c -> Using map in map example