Dylan Reimerink
Dylan Reimerink
/test
/test
I think `ci-ipsec-upgrade` is stuck hitting https://github.com/cilium/cilium/issues/29987. I do not know of a way that changing the size of a map key can cause missing tail calls without verifier errors....
I have been working on this issue for a bit, [here](https://github.com/dylandreimerink/gobgp/compare/feature/bfd-support?expand=1) is what I have so far. The state as of writing this is that I have basic BFD support,...
> Having a separate BFD daemon that manages GoBGP via the gRPC APIs is simpler? Yes, for a few reasons. BFD is all about the actual forwarding, so if you...
This issue is caused by a limitation of the cilium/ebpf loader used by edb. The library [doesn't support dedicated string sections](https://github.com/cilium/ebpf/blob/f4e40e43a05277856191d356d6a1306c24cf906b/elf_reader.go#L265). When building the tracee program, the compiler places 3...
Sorry for the disappointing result. I really should mention more clearly in the readme that `edb` is still very much a work in progress. At some point I will write...
Added the `needs-backport/1.15` label so this PR gets picked up by the official process in favor of #33324
> Queues/Stack maps support the following operations. Clarification, for stacks/queues: `BPF_MAP_LOOKUP_ELEM` -> peek `BPF_MAP_LOOKUP_AND_DELETE_ELEM` -> pop `BPF_MAP_UPDATE_ELEM` -> push > On the other hand, other maps like Array and Hash...
> The peek operations only return the top of the stack / first item in the queue? And currently doing .Iterate() on a queue or stack doesn't work at all...