You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Its assumed that a BPF program's entrypoint is the beginning of the .text section. The entrypoint could be anywhere in the .text section and with the introduction of multi-file projects are likely to not be.
Proposed Solution
Start program execution at the entrypoint listed in the ELF header
Explicitly pass the entrypoint symbol name to LLVM when building the ELF
The text was updated successfully, but these errors were encountered:
Problem
Its assumed that a BPF program's entrypoint is the beginning of the
.text
section. The entrypoint could be anywhere in the.text
section and with the introduction of multi-file projects are likely to not be.Proposed Solution
The text was updated successfully, but these errors were encountered: