Lines Matching refs:nest_level
665 int nest_level, err; in BPF_CALL_5() local
669 nest_level = this_cpu_inc_return(bpf_trace_nest_level); in BPF_CALL_5()
671 if (WARN_ON_ONCE(nest_level > ARRAY_SIZE(sds->sds))) { in BPF_CALL_5()
676 sd = &sds->sds[nest_level - 1]; in BPF_CALL_5()
730 int nest_level; in bpf_event_output() local
734 nest_level = this_cpu_inc_return(bpf_event_output_nest_level); in bpf_event_output()
736 if (WARN_ON_ONCE(nest_level > ARRAY_SIZE(bpf_misc_sds.sds))) { in bpf_event_output()
740 sd = this_cpu_ptr(&bpf_misc_sds.sds[nest_level - 1]); in bpf_event_output()
741 regs = this_cpu_ptr(&bpf_pt_regs.regs[nest_level - 1]); in bpf_event_output()
1828 int nest_level = this_cpu_inc_return(bpf_raw_tp_nest_level); in get_bpf_raw_tp_regs() local
1830 if (WARN_ON_ONCE(nest_level > ARRAY_SIZE(tp_regs->regs))) { in get_bpf_raw_tp_regs()
1835 return &tp_regs->regs[nest_level - 1]; in get_bpf_raw_tp_regs()