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

  /src/sys/arch/hppa/hppa/
pmap.c 107 struct pool pmap_pv_pool; variable in typeref:struct:pool
696 pv = pool_get(&pmap_pv_pool, PR_NOWAIT);
709 pool_put(&pmap_pv_pool, pv);
1144 pool_init(&pmap_pv_pool, sizeof(struct pv_entry), 0, 0, 0, "pmappv",
1147 pool_setlowat(&pmap_pv_pool, pmap_pvlowat);
1148 pool_sethiwat(&pmap_pv_pool, pmap_pvlowat * 32);
  /src/sys/arch/m68k/m68k/
pmap_motorola.c 302 struct pool pmap_pv_pool; /* memory pool for pv entries */ variable in typeref:struct:pool
304 #define pmap_alloc_pv() pool_get(&pmap_pv_pool, PR_NOWAIT)
305 #define pmap_free_pv(pv) pool_put(&pmap_pv_pool, (pv))
624 pool_init(&pmap_pv_pool, sizeof(struct pv_entry), 0, 0, 0, "pvpl",
pmap_68k.c 745 static struct pool pmap_pv_pool; variable in typeref:struct:pool
752 pool_init(&pmap_pv_pool, sizeof(struct pv_entry),
765 pool_setlowat(&pmap_pv_pool, PMAP_PV_LOWAT);
803 pv = pool_get(&pmap_pv_pool, nowait ? PR_NOWAIT : 0);
813 pool_put(&pmap_pv_pool, pv);
  /src/sys/arch/hb68k/pg68k/
pmap_pgmmu.c 234 static struct pool pmap_pv_pool; variable in typeref:struct:pool
241 pool_init(&pmap_pv_pool, sizeof(struct pv_entry),
254 pool_setlowat(&pmap_pv_pool, PMAP_PV_LOWAT);
292 pv = pool_get(&pmap_pv_pool, nowait ? PR_NOWAIT : 0);
302 pool_put(&pmap_pv_pool, pv);
  /src/sys/uvm/pmap/
pmap.c 282 struct pool pmap_pv_pool; variable in typeref:struct:pool
316 #define pmap_pv_alloc() pool_get(&pmap_pv_pool, PR_NOWAIT)
317 #define pmap_pv_free(pv) pool_put(&pmap_pv_pool, (pv))
721 pool_setlowat(&pmap_pv_pool, pmap_pv_lowat);
  /src/sys/arch/arm/arm32/
pmap.c 273 static struct pool pmap_pv_pool; variable in typeref:struct:pool
2972 pool_put(&pmap_pv_pool, pv);
3128 new_pv = pool_get(&pmap_pv_pool, PR_NOWAIT);
3461 pool_put(&pmap_pv_pool, old_pv);
3464 pool_put(&pmap_pv_pool, new_pv);
3681 pool_put(&pmap_pv_pool, pv);
3866 pv = pool_get(&pmap_pv_pool, PR_NOWAIT);
3884 pool_put(&pmap_pv_pool, pv);
3947 pool_put(&pmap_pv_pool,
6553 pool_init(&pmap_pv_pool, sizeof(struct pv_entry), 0, 0, 0, "pvepl"
    [all...]

Completed in 35 milliseconds