Em Sun, Jun 12, 2022 at 06:25:09PM +0200, Jiri Olsa escreveu: > On Fri, Jun 10, 2022 at 10:53:57PM +0200, Jiri Olsa wrote: > > On Fri, Jun 10, 2022 at 11:45:48AM -0700, Andrii Nakryiko wrote: > > > On Fri, Jun 10, 2022 at 11:34 AM Arnaldo Carvalho de Melo > > > > libbpf: map 'flip_table': created successfully, fd=4 > > > > libbpf: prog 'bpf_func__SyS_epoll_pwait': BPF program load failed: Invalid argument > > > > libbpf: prog 'bpf_func__SyS_epoll_pwait': -- BEGIN PROG LOAD LOG -- > > > > Invalid insn code at line_info[11].insn_off > > > Mismatched line_info. > > > Jiri, I think we need to clear func_info and line_info in > > > bpf_program__set_insns() because at that point func/line info can be > > > mismatched and won't correspond to the actual set of instructions. > so the problem is that we prepend init proglogue instructions > for each program not just for the one that needs it, so it will > mismatch later on.. the fix below makes it work for me > Arnaldo, > I squashed and pushed the change below changes to my bpf/depre > branch, could you please retest? I'll check. - Arnaldo