Symbol: ci_biglock_count
sys/arch/aarch64/aarch64/db_machdep.c
369
&ci->ci_biglock_count, cpuidx, cpuinfobuf.ci_biglock_count);
sys/arch/arm/pic/pic.c
365
const u_int ci_blcnt __diagused = curcpu()->ci_biglock_count;
sys/arch/arm/pic/pic.c
370
KASSERT(ci_blcnt == curcpu()->ci_biglock_count);
sys/arch/evbmips/evbmips/interrupt.c
57
const u_int biglock_count = ci->ci_biglock_count;
sys/arch/evbmips/evbmips/interrupt.c
96
KASSERT(biglock_count == ci->ci_biglock_count);
sys/arch/mips/mips/syscall.c
375
KASSERT(curcpu()->ci_biglock_count == 0);
sys/arch/riscv/riscv/syscall.c
275
KASSERT(curcpu()->ci_biglock_count == 0);
sys/arch/x86/x86/intr.c
679
locks = curcpu()->ci_biglock_count;
sys/arch/x86/x86/intr.c
686
KASSERTMSG(locks == curcpu()->ci_biglock_count,
sys/arch/x86/x86/intr.c
688
ih->ih_xname, ih->ih_realfun, locks, curcpu()->ci_biglock_count);
sys/kern/kern_lock.c
280
ci->ci_biglock_count, (long)ci->ci_biglock_wanted);
sys/kern/kern_lock.c
306
if (ci->ci_biglock_count != 0) {
sys/kern/kern_lock.c
309
ci->ci_biglock_count += nlocks;
sys/kern/kern_lock.c
322
ci->ci_biglock_count = nlocks;
sys/kern/kern_lock.c
377
ci->ci_biglock_count = nlocks;
sys/kern/kern_lock.c
443
_KERNEL_LOCK_ASSERT(ci->ci_biglock_count >= l->l_blcnt);
sys/kern/kern_lock.c
444
if (ci->ci_biglock_count == nlocks) {
sys/kern/kern_lock.c
447
ci->ci_biglock_count = 0;
sys/kern/kern_lock.c
454
ci->ci_biglock_count -= nlocks;
sys/kern/kern_lwp.c
1096
KASSERTMSG(curcpu()->ci_biglock_count == 0, "kernel_lock leaked");
sys/kern/sys_syscall.c
53
KASSERTMSG(curcpu()->ci_biglock_count == 0,
sys/kern/sys_syscall.c
55
(long)code, p->p_emul->e_name, curcpu()->ci_biglock_count);
sys/sys/userret.h
54
KASSERTMSG(l->l_cpu->ci_biglock_count == 0, "kernel_lock leaked");