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

  /src/sys/uvm/
uvm_amap.c 152 const bool nowait = (flags & UVM_FLAG_NOWAIT) != 0; local
153 const km_flag_t kmflags = nowait ? KM_NOSLEEP : KM_SLEEP;
158 amap = pool_cache_get(&uvm_amap_cache, nowait ? PR_NOWAIT : PR_WAITOK);
216 if (nowait) {
  /src/sys/arch/m68k/m68k/
pmap_68k.c 378 EVCNT_INITIALIZER(EVCNT_TYPE_MISC, NULL, "pmap pv_alloc", "nowait");
416 EVCNT_INITIALIZER(EVCNT_TYPE_MISC, NULL, "pmap enter", "nowait");
603 pmap_page_alloc(bool nowait)
606 const int flags = nowait ? UVM_PGA_USERESERVE : 0;
609 if (nowait) {
620 pmap_ptpage_alloc(bool segtab, bool nowait)
629 const int uvm_f_nowait = nowait ? UVM_KMF_NOWAIT : 0;
632 ptp = kmem_zalloc(size, nowait ? KM_NOSLEEP : KM_SLEEP);
646 pg = pmap_page_alloc(nowait);
737 pmap_pv_alloc(bool nowait)
2600 const bool nowait = !!(flags & PMAP_CANFAIL); local
    [all...]

Completed in 15 milliseconds