ebpf: This patch adds ebpf-baremetal test support 26/73726/4
authorSridhar K. N. Rao <srao@linuxfoundation.org>
Fri, 16 Dec 2022 11:54:48 +0000 (17:24 +0530)
committerSridhar K. N. Rao <srao@linuxfoundation.org>
Mon, 19 Dec 2022 15:44:08 +0000 (21:14 +0530)
commit3409364da8fa46eae8ca22a579e219dc74958079
tree83cb1cc72c3c59465d7d3be0f793a896c0ad7a21
parent34147ac299351c44d4f7d135892457fba38a132b
ebpf: This patch adds ebpf-baremetal test support

Remove object files and binaries
Suggestions in systems/Readme.
Add license headers.

Signed-off-by: Sridhar K. N. Rao <srao@linuxfoundation.org>
Change-Id: I5fd481e3ed3eb51e6b8091cbf6d1ec8e3b00cbf0
33 files changed:
src/bpfswitch/Makefile [new file with mode: 0644]
src/bpfswitch/README.md [new file with mode: 0644]
src/bpfswitch/configure [new file with mode: 0755]
src/bpfswitch/include/bpf/bpf.h [new file with mode: 0644]
src/bpfswitch/include/bpf/bpf_core_read.h [new file with mode: 0644]
src/bpfswitch/include/bpf/bpf_endian.h [new file with mode: 0644]
src/bpfswitch/include/bpf/bpf_helper_defs.h [new file with mode: 0644]
src/bpfswitch/include/bpf/bpf_helpers.h [new file with mode: 0644]
src/bpfswitch/include/bpf/bpf_tracing.h [new file with mode: 0644]
src/bpfswitch/include/bpf/btf.h [new file with mode: 0644]
src/bpfswitch/include/bpf/libbpf.h [new file with mode: 0644]
src/bpfswitch/include/bpf/libbpf_common.h [new file with mode: 0644]
src/bpfswitch/include/bpf/libbpf_util.h [new file with mode: 0644]
src/bpfswitch/include/bpf/xsk.h [new file with mode: 0644]
src/bpfswitch/include/xdp_fdb.h [new file with mode: 0644]
src/bpfswitch/ksrc/Makefile [new file with mode: 0644]
src/bpfswitch/ksrc/include/asm_goto_workaround.h [new file with mode: 0644]
src/bpfswitch/ksrc/xdp_dummy.c [new file with mode: 0644]
src/bpfswitch/ksrc/xdp_l2fwd.c [new file with mode: 0644]
src/bpfswitch/scripts/ifindex.py [new file with mode: 0755]
src/bpfswitch/scripts/l2fwd.sh [new file with mode: 0755]
src/bpfswitch/usrc/Makefile [new file with mode: 0644]
src/bpfswitch/usrc/libbpf_helpers.c [new file with mode: 0644]
src/bpfswitch/usrc/libbpf_helpers.h [new file with mode: 0644]
src/bpfswitch/usrc/str_utils.c [new file with mode: 0644]
src/bpfswitch/usrc/str_utils.h [new file with mode: 0644]
src/bpfswitch/usrc/xdp_dummy_user.c [new file with mode: 0644]
src/bpfswitch/usrc/xdp_l2fwd_user.c [new file with mode: 0644]
systems/README.md
systems/debian/build_base_machine.sh
systems/fedora/33/build_base_machine.sh
systems/fedora/36/build_base_machine.sh
systems/ubuntu/build_base_machine.sh