The Wayback Machine - https://web.archive.org/web/20220427092936/https://github.com/topics/bpf
Skip to content
#

bpf

Here are 199 public repositories matching this topic...

danobi
danobi commented May 9, 2020

Seems we have some language features not fully documented (like bitshift operators in #1322).

Would be good to go through language grammar and make sure everything is in the reference guide.

good first issue docs
itaysk
itaysk commented Dec 28, 2021

Currently we have just one type of docs which are "reference" documentation. We should add a "how-to/tutorials" section with goal-driven content. We can start by drawing already available content:

https://blog.aquasec.com/kubernetes-runtime-security-ebpf
https://blog.aquasec.com/tracee-runtime-malware-alerts-aqua-postee
https://blog.aquasec.com/runtime-security-tracee-rules
https://github.co

mauriciovasquezbernal
mauriciovasquezbernal commented Jun 30, 2021

kinvolk/inspektor-gadget#163 introduced support for a new hook mode based on NRI (Node Resource Interface). Currently this mode only works if the user explicitly pass the --hook-mode=nri option and it's not considered when --hook-mode=auto is used.

Inspektor Gadget should detect if containerd v1.5+ is used as runtime and set HOOK_MODE="podinformer" in the followin

LucasSte
LucasSte commented Apr 20, 2022

When we declare a constant variable that has an initializer, e.g. bool x constant = 0 < 2, we evaluate the actual constant value in compiler time. Currently, there is no support to evaluate constants in comparisons, so the aforementioned example is evaluated in run time.

We need to calculate comparisons with constants during compilation. The eval_const_number function should become `eval_co

good first issue

Improve this page

Add a description, image, and links to the bpf topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the bpf topic, visit your repo's landing page and select "manage topics."

Learn more