Symbol: bpf_reg_types
kernel/bpf/verifier.c
7936
static const struct bpf_reg_types sock_types = {
kernel/bpf/verifier.c
7946
static const struct bpf_reg_types btf_id_sock_common_types = {
kernel/bpf/verifier.c
7959
static const struct bpf_reg_types mem_types = {
kernel/bpf/verifier.c
7974
static const struct bpf_reg_types spin_lock_types = {
kernel/bpf/verifier.c
7981
static const struct bpf_reg_types fullsock_types = { .types = { PTR_TO_SOCKET } };
kernel/bpf/verifier.c
7982
static const struct bpf_reg_types scalar_types = { .types = { SCALAR_VALUE } };
kernel/bpf/verifier.c
7983
static const struct bpf_reg_types context_types = { .types = { PTR_TO_CTX } };
kernel/bpf/verifier.c
7984
static const struct bpf_reg_types ringbuf_mem_types = { .types = { PTR_TO_MEM | MEM_RINGBUF } };
kernel/bpf/verifier.c
7985
static const struct bpf_reg_types const_map_ptr_types = { .types = { CONST_PTR_TO_MAP } };
kernel/bpf/verifier.c
7986
static const struct bpf_reg_types btf_ptr_types = {
kernel/bpf/verifier.c
7993
static const struct bpf_reg_types percpu_btf_ptr_types = {
kernel/bpf/verifier.c
8000
static const struct bpf_reg_types func_ptr_types = { .types = { PTR_TO_FUNC } };
kernel/bpf/verifier.c
8001
static const struct bpf_reg_types stack_ptr_types = { .types = { PTR_TO_STACK } };
kernel/bpf/verifier.c
8002
static const struct bpf_reg_types const_str_ptr_types = { .types = { PTR_TO_MAP_VALUE } };
kernel/bpf/verifier.c
8003
static const struct bpf_reg_types timer_types = { .types = { PTR_TO_MAP_VALUE } };
kernel/bpf/verifier.c
8004
static const struct bpf_reg_types kptr_xchg_dest_types = {
kernel/bpf/verifier.c
8012
static const struct bpf_reg_types dynptr_types = {
kernel/bpf/verifier.c
8019
static const struct bpf_reg_types *compatible_reg_types[__BPF_ARG_TYPE_MAX] = {
kernel/bpf/verifier.c
8052
const struct bpf_reg_types *compatible;