We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I was trying to load an unsupported map type and I got the following error:
The map my_task_storage is of type BPF_MAP_TYPE_TASK_STORAGE which is currently unsupported in Aya, use `allow_unsupported_maps()` to load it anyways
and my program crashes with something like:
Unsupported map type found 29
and it's OK.
Then I added allow_unsupported_maps() to BpfLoader it loads the program without crashing but prints again:
allow_unsupported_maps()
BpfLoader
The text was updated successfully, but these errors were encountered:
Yah. The message could use some tweaking, or removed, when loading an unsupported map in aya with allow_unsupported_maps specified.
allow_unsupported_maps
The parse_map() function could probably be inlined like how programs is done.
parse_map()
programs
Sorry, something went wrong.
No branches or pull requests
I was trying to load an unsupported map type and I got the following error:
The map my_task_storage is of type BPF_MAP_TYPE_TASK_STORAGE which is currently unsupported in Aya, use `allow_unsupported_maps()` to load it anyways
and my program crashes with something like:
Unsupported map type found 29
and it's OK.
Then I added
allow_unsupported_maps()
toBpfLoader
it loads the program without crashing but prints again:The map my_task_storage is of type BPF_MAP_TYPE_TASK_STORAGE which is currently unsupported in Aya, use `allow_unsupported_maps()` to load it anyways
The text was updated successfully, but these errors were encountered: