Home
last modified time | relevance | path

Searched refs:rqh (Results 1 – 1 of 1) sorted by relevance

/linux/kernel/bpf/
H A Drqspinlock.c101 struct rqspinlock_held *rqh = this_cpu_ptr(&rqspinlock_held_locks); in check_deadlock_AA() local
102 int cnt = min(RES_NR_HELD, rqh->cnt); in check_deadlock_AA()
109 if (rqh->locks[i] == lock) in check_deadlock_AA()
122 struct rqspinlock_held *rqh = this_cpu_ptr(&rqspinlock_held_locks); in check_deadlock_ABBA() local
123 int rqh_cnt = min(RES_NR_HELD, rqh->cnt); in check_deadlock_ABBA()
187 if (rqh->locks[i] == remote_lock) in check_deadlock_ABBA()
675 struct rqspinlock_held *rqh = this_cpu_ptr(&rqspinlock_held_locks); in bpf_prog_report_rqspinlock_violation() local
685 bpf_stream_printk(ss, "Total held locks = %d\n", rqh->cnt); in bpf_prog_report_rqspinlock_violation()
686 for (int i = 0; i < min(RES_NR_HELD, rqh->cnt); i++) in bpf_prog_report_rqspinlock_violation()
687 bpf_stream_printk(ss, "Held lock[%2d] = 0x%px\n", i, rqh->locks[i]); in bpf_prog_report_rqspinlock_violation()