Home
last modified time | relevance | path

Searched refs:_bpf_cmp (Results 1 – 1 of 1) sorted by relevance

/linux-6.12.1/tools/testing/selftests/bpf/
Dbpf_experimental.h305 #define _bpf_cmp(LHS, OP, RHS, UNLIKELY) \ macro
330 #define bpf_cmp_unlikely(LHS, OP, RHS) _bpf_cmp(LHS, OP, RHS, true)
338 ret = _bpf_cmp(LHS, !=, RHS, false); \
340 ret = _bpf_cmp(LHS, ==, RHS, false); \
342 ret = _bpf_cmp(LHS, >, RHS, false); \
344 ret = _bpf_cmp(LHS, >=, RHS, false); \
346 ret = _bpf_cmp(LHS, <=, RHS, false); \
348 ret = _bpf_cmp(LHS, <, RHS, false); \