-
Notifications
You must be signed in to change notification settings - Fork 302
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Convert BPF maps to using enums #386
Comments
@dave-tucker You can assign me here :) |
I've started this in https://github.com/astoycos/aya/tree/refactor-map Still have some to go but I'll keep updating with status here |
This is a follow up to #75 |
Merged
Work Items
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Following what we currenlty do for EBPF Programs convert aya's notion of bpf maps to be an Enum rather than having concrete types (HashMap, PerfEventArray etc) for every BPF map type.
Maps were initially designed like this to allow users to implement their own maps, however now since we implement most of the ebpf API it makes more sense to switch to enums and simply support it all.
The text was updated successfully, but these errors were encountered: