Re: [dpdk-dev] [PATCH] bpf: fix pseudo calls for BPF programs loaded from ELF

2019-06-05 Thread Thomas Monjalon
17/05/2019 16:09, Konstantin Ananyev: > clang 6.0 and onwards, for the external function call generates > BPF_PSEUDO_CALL instruction: > call pseudo +-off -> call another bpf function. > More details about that change: https://lwn.net/Articles/741773/ > DPDK BPF implementation right now doesn't sup

[dpdk-dev] [PATCH] bpf: fix pseudo calls for BPF programs loaded from ELF

2019-05-17 Thread Konstantin Ananyev
clang 6.0 and onwards, for the external function call generates BPF_PSEUDO_CALL instruction: call pseudo +-off -> call another bpf function. More details about that change: https://lwn.net/Articles/741773/ DPDK BPF implementation right now doesn't support multiple BPF functions per module. To overc