You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aya/test/integration-ebpf
Michal Rostecki e283ee2002 aya: Ensure that truncated map names are NUL terminated
Limit of map names in eBPF is 16 bytes and they have to be NUL
terminated.

Before this change, long names were truncated to 16 bytes.
`MAP_WITH_LOOOONG_NAAAAAAAAME` would become `MAP_WITH_LOOOONG`, which
doesn't contain the NUL byte.

This change fixes that by truncating the name to 15 bytes, ensuring
that the 16th byte is NUL. `MAP_WITH_LOOOONG_NAAAAAAAAME` is truncated
to `MAP_WITH_LOOOON\0`.
1 month ago
..
src aya: Ensure that truncated map names are NUL terminated 1 month ago
Cargo.toml introduce workspace lints, warn on unused crates 1 month ago
build.rs Appease clippy 7 months ago