HomeSort by: relevance | last modified time | path
    Searched defs:onproc (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/uvm/pmap/
pmap_synci.c 113 kcpuset_t *onproc; local in function:pmap_tlb_syncicache
114 kcpuset_create(&onproc, true);
133 kcpuset_merge(onproc, ti->ti_kcpuset);
144 onproc & page_onproc & ti->ti_cpu_mask);
148 kcpuset_intersect(onproc, page_onproc);
149 if (__predict_false(!kcpuset_iszero(onproc))) {
154 if (kcpuset_isset(onproc, cpu_index(ci))) {
161 kcpuset_clear(onproc, cpu_index(ci));
170 for (cpuid_t n = kcpuset_ffs(onproc);
172 n = kcpuset_ffs(onproc)) {
    [all...]
pmap.c 460 kcpuset_t *onproc; local in function:pmap_page_syncicache
462 kcpuset_create(&onproc, true);
463 KASSERT(onproc != NULL);
465 onproc = NULL;
478 kcpuset_merge(onproc, pv->pv_pmap->pm_onproc);
479 if (kcpuset_match(onproc, kcpuset_running)) {
484 onproc = curcpu()->ci_kcpuset;
493 pmap_md_page_syncicache(mdpg, onproc);
496 kcpuset_destroy(onproc);
1714 // This should be the last CPU with this pmap onproc
    [all...]
  /src/sys/kern/
kern_softint.c 811 struct lwp *onproc = curcpu()->ci_onproc; local in function:softint_dispatch
814 "onproc=%p => l_stat=%d l_flag=%08x l_cpu=%d\n"
817 cpu_index(curcpu()), s, s2, onproc, onproc->l_stat,
818 onproc->l_flag, cpu_index(onproc->l_cpu), curlwp,
  /src/bin/ps/
ps.c 554 int i, onproc, running, sleeping, stopped, suspended; local in function:pick_representative_lwp
568 onproc = running = sleeping = stopped = suspended = -1;
572 onproc = i;
588 if (onproc != -1)
589 return &kl[onproc];

Completed in 13 milliseconds