]> git.ipfire.org Git - thirdparty/iproute2.git/commitdiff
examples/bpf: update list of examples
authorAlexander Alemayhu <alexander@alemayhu.com>
Wed, 9 Aug 2017 03:39:07 +0000 (05:39 +0200)
committerStephen Hemminger <stephen@networkplumber.org>
Wed, 9 Aug 2017 15:34:13 +0000 (08:34 -0700)
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>
examples/bpf/README

index 4247257850eb0e073656cc902271e7c50eeb6f41..1bbdda3f8dc19d0120f1cf5fb1f4b2fc92f1d2f6 100644 (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