![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [github.com/containerd/cgroups/v3](https://github.com/containerd/cgroups) from 3.0.2 to 3.0.3. - [Release notes](https://github.com/containerd/cgroups/releases) - [Commits](https://github.com/containerd/cgroups/compare/v3.0.2...v3.0.3) --- updated-dependencies: - dependency-name: github.com/containerd/cgroups/v3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
12 lines
519 B
Go
12 lines
519 B
Go
package internal
|
|
|
|
// EmptyBPFContext is the smallest-possible BPF input context to be used for
|
|
// invoking `Program.{Run,Benchmark,Test}`.
|
|
//
|
|
// Programs require a context input buffer of at least 15 bytes. Looking in
|
|
// net/bpf/test_run.c, bpf_test_init() requires that the input is at least
|
|
// ETH_HLEN (14) bytes. As of Linux commit fd18942 ("bpf: Don't redirect packets
|
|
// with invalid pkt_len"), it also requires the skb to be non-empty after
|
|
// removing the Layer 2 header.
|
|
var EmptyBPFContext = make([]byte, 15)
|