containerd/vendor/github.com/cilium/ebpf
Derek McGowan 3ef337ae3a
Update containerd vendors to tags
Signed-off-by: Derek McGowan <derek@mcg.dev>
2021-04-19 10:59:29 -07:00
..
asm Update containerd vendors to tags 2021-04-19 10:59:29 -07:00
internal Update containerd vendors to tags 2021-04-19 10:59:29 -07:00
link Update containerd vendors to tags 2021-04-19 10:59:29 -07:00
.clang-format update runc to v1.0.0-rc93 2021-02-04 16:13:30 +01:00
.gitignore update runc to v1.0.0-rc93 2021-02-04 16:13:30 +01:00
ARCHITECTURE.md Update containerd vendors to tags 2021-04-19 10:59:29 -07:00
CODE_OF_CONDUCT.md Go mod vendor 2020-12-01 01:41:25 +08:00
collection.go Update containerd vendors to tags 2021-04-19 10:59:29 -07:00
CONTRIBUTING.md Update containerd vendors to tags 2021-04-19 10:59:29 -07:00
doc.go update runc to v1.0.0-rc93 2021-02-04 16:13:30 +01:00
elf_reader_fuzz.go Update containerd vendors to tags 2021-04-19 10:59:29 -07:00
elf_reader.go Update containerd vendors to tags 2021-04-19 10:59:29 -07:00
go.mod Update containerd vendors to tags 2021-04-19 10:59:29 -07:00
go.sum Update containerd vendors to tags 2021-04-19 10:59:29 -07:00
info.go Update containerd vendors to tags 2021-04-19 10:59:29 -07:00
LICENSE support cgroup2 2019-12-12 02:56:51 +09:00
linker.go Update containerd vendors to tags 2021-04-19 10:59:29 -07:00
Makefile Update containerd vendors to tags 2021-04-19 10:59:29 -07:00
map.go Update containerd vendors to tags 2021-04-19 10:59:29 -07:00
marshalers.go Update containerd vendors to tags 2021-04-19 10:59:29 -07:00
pinning.go Update containerd vendors to tags 2021-04-19 10:59:29 -07:00
prog.go Update containerd vendors to tags 2021-04-19 10:59:29 -07:00
README.md Update containerd vendors to tags 2021-04-19 10:59:29 -07:00
run-tests.sh Update containerd vendors to tags 2021-04-19 10:59:29 -07:00
syscalls.go Update containerd vendors to tags 2021-04-19 10:59:29 -07:00
types_string.go update runc to v1.0.0-rc93 2021-02-04 16:13:30 +01:00
types.go Update containerd vendors to tags 2021-04-19 10:59:29 -07:00

eBPF

PkgGoDev

eBPF is a pure Go library that provides utilities for loading, compiling, and debugging eBPF programs. It has minimal external dependencies and is intended to be used in long running processes.

  • asm contains a basic assembler
  • link allows attaching eBPF to various hooks
  • perf allows reading from a PERF_EVENT_ARRAY
  • cmd/bpf2go allows embedding eBPF in Go

The library is maintained by Cloudflare and Cilium. Feel free to join the #libbpf-go channel on Slack.

Current status

The package is production ready, but the API is explicitly unstable right now. Expect to update your code if you want to follow along.

Requirements

  • A version of Go that is supported by upstream
  • Linux 4.9, 4.19 or 5.4 (versions in-between should work, but are not tested)

Useful resources

Regenerating Testdata

Run make in the root of this repository to rebuild testdata in all subpackages. This requires Docker, as it relies on a standardized build environment to keep the build output stable.

The toolchain image build files are kept in testdata/docker/.

License

MIT