Symbol: bpf_reg_types
kernel/bpf/verifier.c
7724
static const struct bpf_reg_types sock_types = {
kernel/bpf/verifier.c
7734
static const struct bpf_reg_types btf_id_sock_common_types = {
kernel/bpf/verifier.c
7747
static const struct bpf_reg_types mem_types = {
kernel/bpf/verifier.c
7762
static const struct bpf_reg_types spin_lock_types = {
kernel/bpf/verifier.c
7769
static const struct bpf_reg_types fullsock_types = { .types = { PTR_TO_SOCKET } };
kernel/bpf/verifier.c
7770
static const struct bpf_reg_types scalar_types = { .types = { SCALAR_VALUE } };
kernel/bpf/verifier.c
7771
static const struct bpf_reg_types context_types = { .types = { PTR_TO_CTX } };
kernel/bpf/verifier.c
7772
static const struct bpf_reg_types ringbuf_mem_types = { .types = { PTR_TO_MEM | MEM_RINGBUF } };
kernel/bpf/verifier.c
7773
static const struct bpf_reg_types const_map_ptr_types = { .types = { CONST_PTR_TO_MAP } };
kernel/bpf/verifier.c
7774
static const struct bpf_reg_types btf_ptr_types = {
kernel/bpf/verifier.c
7781
static const struct bpf_reg_types percpu_btf_ptr_types = {
kernel/bpf/verifier.c
7788
static const struct bpf_reg_types func_ptr_types = { .types = { PTR_TO_FUNC } };
kernel/bpf/verifier.c
7789
static const struct bpf_reg_types stack_ptr_types = { .types = { PTR_TO_STACK } };
kernel/bpf/verifier.c
7790
static const struct bpf_reg_types const_str_ptr_types = { .types = { PTR_TO_MAP_VALUE } };
kernel/bpf/verifier.c
7791
static const struct bpf_reg_types timer_types = { .types = { PTR_TO_MAP_VALUE } };
kernel/bpf/verifier.c
7792
static const struct bpf_reg_types kptr_xchg_dest_types = {
kernel/bpf/verifier.c
7800
static const struct bpf_reg_types dynptr_types = {
kernel/bpf/verifier.c
7807
static const struct bpf_reg_types *compatible_reg_types[__BPF_ARG_TYPE_MAX] = {
kernel/bpf/verifier.c
7839
const struct bpf_reg_types *compatible;