diff options
| author | Jiayuan Chen <[email protected]> | 2025-02-14 09:18:22 +0000 |
|---|---|---|
| committer | Alexei Starovoitov <[email protected]> | 2025-02-15 03:55:15 +0000 |
| commit | b38c72ab808c5657b5411a47cc6eb4912e8b4824 (patch) | |
| tree | fcc12acd2c4b94386c26076b1dc0d1568efaf6de /tools/testing/selftests/bpf/progs/bpf_misc.h | |
| parent | bpf: Fix array bounds error with may_goto (diff) | |
| download | kernel-b38c72ab808c5657b5411a47cc6eb4912e8b4824.tar.gz kernel-b38c72ab808c5657b5411a47cc6eb4912e8b4824.zip | |
selftests/bpf: Introduce __load_if_JITed annotation for tests
In some cases, the verification logic under the interpreter and JIT
differs, such as may_goto, and the test program behaves differently under
different runtime modes, requiring separate verification logic for each
result.
Introduce __load_if_JITed and __load_if_no_JITed annotation for tests.
Signed-off-by: Jiayuan Chen <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Alexei Starovoitov <[email protected]>
Diffstat (limited to 'tools/testing/selftests/bpf/progs/bpf_misc.h')
| -rw-r--r-- | tools/testing/selftests/bpf/progs/bpf_misc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/testing/selftests/bpf/progs/bpf_misc.h b/tools/testing/selftests/bpf/progs/bpf_misc.h index 02c9f7964e56..34f555da546f 100644 --- a/tools/testing/selftests/bpf/progs/bpf_misc.h +++ b/tools/testing/selftests/bpf/progs/bpf_misc.h @@ -135,6 +135,8 @@ #define __arch_arm64 __arch("ARM64") #define __arch_riscv64 __arch("RISCV64") #define __caps_unpriv(caps) __attribute__((btf_decl_tag("comment:test_caps_unpriv=" EXPAND_QUOTE(caps)))) +#define __load_if_JITed() __attribute__((btf_decl_tag("comment:load_mode=jited"))) +#define __load_if_no_JITed() __attribute__((btf_decl_tag("comment:load_mode=no_jited"))) /* Define common capabilities tested using __caps_unpriv */ #define CAP_NET_ADMIN 12 |
