Symbol: bpf_reg_types
kernel/bpf/verifier.c
9338
static const struct bpf_reg_types sock_types = {
kernel/bpf/verifier.c
9348
static const struct bpf_reg_types btf_id_sock_common_types = {
kernel/bpf/verifier.c
9361
static const struct bpf_reg_types mem_types = {
kernel/bpf/verifier.c
9375
static const struct bpf_reg_types spin_lock_types = {
kernel/bpf/verifier.c
9382
static const struct bpf_reg_types fullsock_types = { .types = { PTR_TO_SOCKET } };
kernel/bpf/verifier.c
9383
static const struct bpf_reg_types scalar_types = { .types = { SCALAR_VALUE } };
kernel/bpf/verifier.c
9384
static const struct bpf_reg_types context_types = { .types = { PTR_TO_CTX } };
kernel/bpf/verifier.c
9385
static const struct bpf_reg_types ringbuf_mem_types = { .types = { PTR_TO_MEM | MEM_RINGBUF } };
kernel/bpf/verifier.c
9386
static const struct bpf_reg_types const_map_ptr_types = { .types = { CONST_PTR_TO_MAP } };
kernel/bpf/verifier.c
9387
static const struct bpf_reg_types btf_ptr_types = {
kernel/bpf/verifier.c
9394
static const struct bpf_reg_types percpu_btf_ptr_types = {
kernel/bpf/verifier.c
9401
static const struct bpf_reg_types func_ptr_types = { .types = { PTR_TO_FUNC } };
kernel/bpf/verifier.c
9402
static const struct bpf_reg_types stack_ptr_types = { .types = { PTR_TO_STACK } };
kernel/bpf/verifier.c
9403
static const struct bpf_reg_types const_str_ptr_types = { .types = { PTR_TO_MAP_VALUE } };
kernel/bpf/verifier.c
9404
static const struct bpf_reg_types timer_types = { .types = { PTR_TO_MAP_VALUE } };
kernel/bpf/verifier.c
9405
static const struct bpf_reg_types kptr_xchg_dest_types = {
kernel/bpf/verifier.c
9411
static const struct bpf_reg_types dynptr_types = {
kernel/bpf/verifier.c
9418
static const struct bpf_reg_types *compatible_reg_types[__BPF_ARG_TYPE_MAX] = {
kernel/bpf/verifier.c
9451
const struct bpf_reg_types *compatible;