| A D | bpf_experimental.h | 257 #define __bpf_assert(LHS, op, cons, RHS, VAL) \ argument 261 : : [lhs] "r"(LHS), [rhs] cons(RHS), [value] "ri"(VAL) : ); \ 264 #define __bpf_assert_op_sign(LHS, op, cons, RHS, VAL, supp_sign) \ argument 268 __bpf_assert(LHS, "s" #op, cons, RHS, VAL); \ 270 __bpf_assert(LHS, #op, cons, RHS, VAL); \ 273 #define __bpf_assert_op(LHS, op, RHS, VAL, supp_sign) \ argument 277 __bpf_assert_op_sign(LHS, op, "r", rhs_var, VAL, supp_sign); \ 279 __bpf_assert_op_sign(LHS, op, "i", RHS, VAL, supp_sign); \
|