Signed and unsigned less and less-then conditional jumps were not supported by the eBPF format and dump functions, add these instructions.
Signed-off-by: Marat Khalili <[email protected]> --- lib/bpf/bpf_dump.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/bpf/bpf_dump.c b/lib/bpf/bpf_dump.c index 91bc7c0a7af1..0abaeef8ae98 100644 --- a/lib/bpf/bpf_dump.c +++ b/lib/bpf/bpf_dump.c @@ -42,6 +42,8 @@ static const char *const jump_tbl[16] = { [BPF_JSET >> 4] = "jset", [EBPF_JNE >> 4] = "jne", [EBPF_JSGT >> 4] = "jsgt", [EBPF_JSGE >> 4] = "jsge", [EBPF_CALL >> 4] = "call", [EBPF_EXIT >> 4] = "exit", + [EBPF_JLT >> 4] = "jlt", [EBPF_JLE >> 4] = "jle", + [EBPF_JSLT >> 4] = "jslt", [EBPF_JSLE >> 4] = "jsle", }; static inline const char * -- 2.43.0

