This patchset enables mixing bpf2bpf calls with tailcalls on LoongArch. The first patch fixes JIT for function calls, like: [ 29.346981] multi-func JIT bug 105 != 103 This is because we are emiting variable instructions for 64-bit immediate moves. During the first pass of JIT, the placeholder address is just zero, emiting two instructions for it. In the extra pass, the function address is in XKVRANGE, emiting four instructions for it. This change the instruction index in JIT context. Fix it by using a fixed 4-instruction sequence. The second patch enables mixing bpf2bpf calls with tailcalls on LoongArch. Hengqi Chen (2): LoongArch: BPF: Treat function address as 64-bit value LoongArch: BPF: Support mixing bpf2bpf and tailcalls arch/loongarch/net/bpf_jit.c | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) -- 2.31.1