├── .gitmodules ├── LICENSE ├── README.md ├── src ├── .gitignore ├── Makefile ├── common.h ├── perfbuf-output.bpf.c ├── perfbuf-output.c ├── ringbuf-output.bpf.c ├── ringbuf-output.c ├── ringbuf-reserve-submit.bpf.c └── ringbuf-reserve-submit.c └── tools └── bpftool /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakryiko/bpf-ringbuf-examples/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakryiko/bpf-ringbuf-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakryiko/bpf-ringbuf-examples/HEAD/README.md -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakryiko/bpf-ringbuf-examples/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakryiko/bpf-ringbuf-examples/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakryiko/bpf-ringbuf-examples/HEAD/src/common.h -------------------------------------------------------------------------------- /src/perfbuf-output.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakryiko/bpf-ringbuf-examples/HEAD/src/perfbuf-output.bpf.c -------------------------------------------------------------------------------- /src/perfbuf-output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakryiko/bpf-ringbuf-examples/HEAD/src/perfbuf-output.c -------------------------------------------------------------------------------- /src/ringbuf-output.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakryiko/bpf-ringbuf-examples/HEAD/src/ringbuf-output.bpf.c -------------------------------------------------------------------------------- /src/ringbuf-output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakryiko/bpf-ringbuf-examples/HEAD/src/ringbuf-output.c -------------------------------------------------------------------------------- /src/ringbuf-reserve-submit.bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakryiko/bpf-ringbuf-examples/HEAD/src/ringbuf-reserve-submit.bpf.c -------------------------------------------------------------------------------- /src/ringbuf-reserve-submit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakryiko/bpf-ringbuf-examples/HEAD/src/ringbuf-reserve-submit.c -------------------------------------------------------------------------------- /tools/bpftool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anakryiko/bpf-ringbuf-examples/HEAD/tools/bpftool --------------------------------------------------------------------------------