HomeSort by: relevance | last modified time | path
    Searched refs:ci_mtx_count (Results 1 - 25 of 31) sorted by relevancy

1 2

  /src/sys/arch/mips/mips/
mips_softint.c 117 KASSERTMSG(ci->ci_mtx_count == 0,
118 "%s: cpu%u (%p): ci_mtx_count (%d) != 0",
119 __func__, cpu_index(ci), ci, ci->ci_mtx_count);
143 KASSERT(ci->ci_mtx_count == 0);
  /src/sys/arch/evbmips/evbmips/
interrupt.c 56 const int mtx_count = ci->ci_mtx_count;
98 KASSERT(mtx_count == ci->ci_mtx_count);
  /src/sys/arch/usermode/include/
cpu.h 59 volatile int ci_mtx_count; member in struct:cpu_info
  /src/sys/arch/or1k/include/
cpu.h 61 int ci_mtx_count; member in struct:cpu_info
  /src/sys/sys/
mutex.h 183 #define MUTEX_NO_SPIN_ACTIVE_P(ci) ((ci)->ci_mtx_count == 0)
  /src/sys/arch/ia64/include/
cpu.h 97 volatile int ci_mtx_count; /* Negative count of spin mutexes */ member in struct:cpu_info
  /src/sys/arch/alpha/include/
cpu.h 113 volatile int ci_mtx_count; /* [MI] neg count of spin mutexes */ member in struct:cpu_info
  /src/sys/arch/m68k/include/
cpu.h 140 int ci_mtx_count; member in struct:cpu_info
  /src/sys/arch/powerpc/powerpc/
softint_machdep.c 74 KASSERT(ci->ci_mtx_count == 0);
  /src/sys/arch/sh3/include/
cpu.h 59 int ci_mtx_count; member in struct:cpu_info
  /src/sys/arch/aarch64/include/
cpu.h 144 int ci_mtx_count; member in struct:cpu_info
  /src/sys/arch/mips/include/
cpu.h 104 int ci_mtx_count; /* negative count of held mutexes */ member in struct:cpu_info
  /src/sys/arch/riscv/include/
cpu.h 68 int ci_mtx_count; member in struct:cpu_info
  /src/sys/arch/vax/include/
cpu.h 124 int ci_mtx_count; /* negative count of mutexes */ member in struct:cpu_info
  /src/sys/arch/aarch64/aarch64/
cpu_machdep.c 312 KASSERT(curcpu()->ci_mtx_count == 0);
325 KASSERT(curcpu()->ci_mtx_count == 0);
  /src/sys/kern/
kern_synch.c 762 KASSERTMSG(ci->ci_mtx_count == -1,
763 "%s: cpu%u: ci_mtx_count (%d) != -1 "
765 __func__, cpu_index(ci), ci->ci_mtx_count);
767 ci->ci_mtx_count = -2;
820 KASSERT(ci->ci_mtx_count == -2);
862 KASSERT(ci->ci_mtx_count == -1);
863 ci->ci_mtx_count = 0;
kern_mutex.c 153 const int x__cnt = x__ci->ci_mtx_count--; \
164 if (++(x__ci->ci_mtx_count) == 0) \
kern_softint.c 611 KASSERTMSG(curcpu()->ci_mtx_count == 0,
612 "%s: ci_mtx_count (%d) != 0, sh_func %p\n",
613 __func__, curcpu()->ci_mtx_count, sh->sh_func);
  /src/sys/arch/arm/include/
cpu.h 233 int32_t ci_mtx_count; member in struct:cpu_info
  /src/sys/arch/hppa/include/
cpu.h 296 int ci_mtx_count; member in struct:cpu_info
  /src/sys/arch/sparc/include/
cpu.h 245 int ci_mtx_count; member in struct:cpu_info
  /src/sys/arch/sparc64/include/
cpu.h 136 int ci_mtx_count; member in struct:cpu_info
  /src/sys/arch/powerpc/include/
cpu.h 122 int ci_mtx_count; member in struct:cpu_info
  /src/sys/arch/riscv/riscv/
cpu_subr.c 407 ci, ci->ci_cpl, ci->ci_intr_depth, ci->ci_mtx_count,
  /src/sys/arch/x86/include/
cpu.h 142 volatile int ci_mtx_count; /* Negative count of spin mutexes */ member in struct:cpu_info

Completed in 26 milliseconds

1 2